ワンクリックで
atac-seq
// ATAC-seq processing with assay QC, MACS3 peak calling, consensus peak matrices, differential accessibility, and motif or footprint follow-up.
// ATAC-seq processing with assay QC, MACS3 peak calling, consensus peak matrices, differential accessibility, and motif or footprint follow-up.
Publication-quality PDF report generation using Typst templates. Produces professional scientific reports with colored section bands, styled tables, figure captions, callout boxes, and page headers/footers.
SEC (size-exclusion chromatography) analysis with peak detection, oligomer classification, and publication-quality PDF report generation via Typst templates. Triggers on "SEC", "size exclusion", "chromatography", "oligomer analysis", "protein assembly", "SEC report".
Browse and install community skills from the BioClaw Skills Hub. Use when a user's task is not covered by built-in skills, or when the user asks about available skills, advanced workflows, or specialized analysis pipelines. Triggers on "skills hub", "more skills", "install skill", "community skills", "find a skill for".
Audit or refresh a curated pack of eight high-signal omics runtime skills in a BioClaw installation. Use when the user wants stronger built-in guidance for common omics analyses inside agent containers without changing BioClaw source code. Ensures the eight runtime skill folders exist under `container/skills/` with the expected flat file layout.
Automated and marker-guided single-cell cell type annotation using CellTypist, marker review, reference transfer, and confidence-aware label curation.
ChIP-seq peak calling and downstream interpretation with MACS3, signal track export, annotation, motif analysis, and differential binding review.
| name | atac-seq |
| description | ATAC-seq processing with assay QC, MACS3 peak calling, consensus peak matrices, differential accessibility, and motif or footprint follow-up. |
| tool_type | mixed |
| primary_tool | MACS3 |
Reference examples assume:
macs3 3.0+samtools 1.18+deepTools 3.5+Verify the runtime first:
macs3 --version, samtools --version, bamCoverage --versionUse this skill when the user needs:
BAMPE| Check | Guidance |
|---|---|
| uniquely mapped reads | >= 20M preferred for strong bulk ATAC |
| TSS enrichment | > 7 acceptable, > 10 strong |
| FRiP | > 0.2 often strong for good bulk ATAC |
results/peaks/sample_peaks.narrowPeakresults/matrix/consensus_peak_counts.tsvresults/diff_accessibility.tsvfigures/tss_enrichment.pdffigures/fragment_size_distribution.pdfmacs3 callpeak \
-t atac.bam \
-f BAMPE \
-g hs \
-n sample \
--nomodel \
--shift -100 \
--extsize 200 \
-q 0.01 \
--outdir results/peaks
| Parameter | Typical value | Notes |
|---|---|---|
-f | BAMPE | paired-end ATAC should use fragment-aware mode |
--nomodel | on | standard for ATAC |
--shift | -100 | common Tn5 offset convention |
--extsize | 200 | common first-pass extension |
-q | 0.01 | starting FDR threshold |
Review:
Use fragment-aware paired-end mode and Tn5-aware shifting or equivalent settings.
Merge peaks across samples, count fragments into consensus intervals, then produce a peak-by-sample matrix.
Use replicate-aware statistics and report both effect size and adjusted significance.
Only after peak quality and read depth support it.
results/
├── peaks/
│ ├── sample_peaks.narrowPeak
│ └── sample_summits.bed
├── matrix/
│ └── consensus_peak_counts.tsv
└── diff_accessibility.tsv
qc/
├── tss_enrichment.tsv
└── fragment_metrics.tsv
figures/
├── tss_enrichment.pdf
└── fragment_size_distribution.pdf
7 should trigger caution.0.1 is usually weak and needs scrutiny.deeptoolspysam