bio-workflows-atacseq-pipeline
End-to-end ATAC-seq workflow from FASTQ files to differential accessibility and TF footprinting. Covers alignment, peak calling with MACS3, QC metrics, and optional TOBIAS footprinting. Use when running end-to-end ATAC-seq analysis from FASTQ to differential accessibility.
What this skill does
## Version Compatibility
Reference examples tested with: Bowtie2 2.5.3+, MACS3 3.0+, bedtools 2.31+, deepTools 3.5+, fastp 0.23+, samtools 1.19+
Before using code patterns, verify installed versions match. If versions differ:
- R: `packageVersion('<pkg>')` then `?function_name` to verify parameters
- CLI: `<tool> --version` then `<tool> --help` to confirm flags
If code throws ImportError, AttributeError, or TypeError, introspect the installed
package and adapt the example to match the actual API rather than retrying.
# ATAC-seq Pipeline
**"Run end-to-end ATAC-seq analysis from FASTQ to differential accessibility"** -> Orchestrate QC, Bowtie2 alignment, MACS3 peak calling, FRiP/TSS enrichment QC, differential accessibility, and optional TOBIAS footprinting.
Complete workflow from raw ATAC-seq FASTQ files to accessibility peaks, differential analysis, and TF footprinting.
## Workflow Overview
```
FASTQ files
|
v
[1. QC & Trimming] -----> fastp (Nextera adapters)
|
v
[2. Alignment] ---------> Bowtie2
|
v
[3. BAM Processing] ----> filter, shift, dedup
|
v
[4. Peak Calling] ------> MACS3
|
v
[5. QC] ----------------> TSS enrichment, FRiP, fragment size
|
v
[6. Differential] ------> DiffBind (optional)
|
v
[7. Footprinting] ------> TOBIAS (optional)
|
v
Accessibility peaks + TF activity
```
## Primary Path: Bowtie2 + MACS3
### Step 1: Quality Control with fastp
```bash
# ATAC-seq uses Nextera adapters
NEXTERA_R1="CTGTCTCTTATACACATCT"
NEXTERA_R2="CTGTCTCTTATACACATCT"
for sample in sample1 sample2 sample3; do
fastp -i ${sample}_R1.fastq.gz -I ${sample}_R2.fastq.gz \
-o trimmed/${sample}_R1.fq.gz -O trimmed/${sample}_R2.fq.gz \
--adapter_sequence ${NEXTERA_R1} \
--adapter_sequence_r2 ${NEXTERA_R2} \
--qualified_quality_phred 20 \
--length_required 25 \
--html qc/${sample}_fastp.html
done
```
### Step 2: Alignment with Bowtie2
```bash
# Build index (once)
bowtie2-build genome.fa bt2_index/genome
# Align with ATAC-seq specific settings
for sample in sample1 sample2 sample3; do
bowtie2 -p 8 -x bt2_index/genome \
-1 trimmed/${sample}_R1.fq.gz \
-2 trimmed/${sample}_R2.fq.gz \
--very-sensitive \
--no-mixed --no-discordant \
-X 2000 \
2> aligned/${sample}.log | \
samtools view -@ 4 -bS -q 30 -f 2 - | \
samtools sort -@ 4 -o aligned/${sample}.bam
done
```
### Step 3: BAM Processing
ATAC-seq requires special processing: removing mitochondrial reads, shifting reads for Tn5 insertion, and removing duplicates.
```bash
for sample in sample1 sample2 sample3; do
# Remove mitochondrial reads
samtools view -h aligned/${sample}.bam | \
grep -v chrM | \
samtools view -b - > aligned/${sample}.noMT.bam
# Mark and remove duplicates
samtools fixmate -m aligned/${sample}.noMT.bam - | \
samtools sort - | \
samtools markdup -r - aligned/${sample}.dedup.bam
samtools index aligned/${sample}.dedup.bam
# Shift reads for Tn5 (+ strand +4bp, - strand -5bp)
alignmentSieve -b aligned/${sample}.dedup.bam \
-o aligned/${sample}.shifted.bam \
--ATACshift \
-p 8
samtools index aligned/${sample}.shifted.bam
done
```
Alternative manual Tn5 shift with bedtools:
```bash
# Convert to BED and shift
bedtools bamtobed -i aligned/${sample}.dedup.bam | \
awk 'BEGIN{OFS="\t"} {if($6=="+"){$2=$2+4} else if($6=="-"){$3=$3-5} print}' | \
sort -k1,1 -k2,2n > aligned/${sample}.shifted.bed
```
### Step 4: Peak Calling with MACS3
`-f BAMPE` mode silently IGNORES `--shift/--extsize`; use `-f BAM` for the ENCODE-style shift-extend pattern, or omit `--shift/--extsize` when using BAMPE. See atac-seq/atac-peak-calling for the full ENCODE 4 IDR + pseudoreplicate pipeline.
```bash
# ENCODE 4 pattern: shift-extend on single-end-ified reads (-f BAM)
macs3 callpeak \
-t aligned/sample1.shifted.bam \
-f BAM \
-g hs \
-n sample1 \
--outdir peaks \
--nomodel --shift -75 --extsize 150 \
--keep-dup all \
-p 0.01
# For calling on all samples together (pooled)
macs3 callpeak \
-t aligned/*.shifted.bam \
-f BAM \
-g hs \
-n consensus \
--outdir peaks \
--nomodel --shift -75 --extsize 150 \
--keep-dup all \
-p 0.01
```
For consensus peakset construction (Corces 2018 iterative overlap, 501 bp fixed-width), see atac-seq/consensus-peakset.
### Step 5: ATAC-seq QC
```bash
# TSS enrichment (using deepTools)
computeMatrix reference-point \
-S bigwig/sample1.bw \
-R genes.bed \
--referencePoint TSS \
-a 2000 -b 2000 \
-o tss_matrix.gz
plotProfile -m tss_matrix.gz -o qc/tss_enrichment.pdf
# Fragment size distribution
samtools view aligned/sample1.dedup.bam | \
awk '{print sqrt($9^2)}' | \
sort | uniq -c | \
awk '{print $2"\t"$1}' > qc/fragment_sizes.txt
# FRiP calculation
total=$(samtools view -c aligned/sample1.shifted.bam)
in_peaks=$(bedtools intersect -a aligned/sample1.shifted.bam \
-b peaks/sample1_peaks.narrowPeak -u | samtools view -c)
echo "FRiP: $(echo "scale=4; $in_peaks/$total" | bc)"
```
**QC Checkpoint:** Assess ATAC quality
- TSS enrichment score >5 (ideally >10)
- FRiP >20%
- Nucleosome-free (<100bp) and mono/di-nucleosome peaks visible
### Step 6: Differential Accessibility with DiffBind
```r
library(DiffBind)
# Create sample sheet
samples <- data.frame(
SampleID = c('control_1', 'control_2', 'treated_1', 'treated_2'),
Condition = c('control', 'control', 'treated', 'treated'),
Replicate = c(1, 2, 1, 2),
bamReads = c('aligned/control_1.shifted.bam', 'aligned/control_2.shifted.bam',
'aligned/treated_1.shifted.bam', 'aligned/treated_2.shifted.bam'),
Peaks = c('peaks/control_1_peaks.narrowPeak', 'peaks/control_2_peaks.narrowPeak',
'peaks/treated_1_peaks.narrowPeak', 'peaks/treated_2_peaks.narrowPeak')
)
# Create DBA object
dba <- dba(sampleSheet = samples)
# Count reads in peaks
dba <- dba.count(dba)
# Normalize
dba <- dba.normalize(dba)
# Contrast
dba <- dba.contrast(dba, categories = DBA_CONDITION)
# Differential analysis
dba <- dba.analyze(dba)
# Report
report <- dba.report(dba)
write.csv(as.data.frame(report), 'differential_peaks.csv')
# Visualization
dba.plotMA(dba)
dba.plotVolcano(dba)
```
### Step 7: TF Footprinting with TOBIAS
```bash
# Correct Tn5 bias
TOBIAS ATACorrect \
-b aligned/sample1.shifted.bam \
-g genome.fa \
-p peaks/consensus_peaks.narrowPeak \
--outdir footprinting \
--cores 8
# Score footprints
TOBIAS ScoreBigwig \
--signal footprinting/sample1_corrected.bw \
--regions peaks/consensus_peaks.narrowPeak \
--output footprinting/sample1_footprints.bw \
--cores 8
# Bind detection
TOBIAS BINDetect \
--motifs motifs.jaspar \
--signals footprinting/sample1_footprints.bw \
--genome genome.fa \
--peaks peaks/consensus_peaks.narrowPeak \
--outdir footprinting/bindetect \
--cores 8
# Differential footprinting (two conditions)
TOBIAS BINDetect \
--motifs motifs.jaspar \
--signals footprinting/control_footprints.bw footprinting/treated_footprints.bw \
--genome genome.fa \
--peaks peaks/consensus_peaks.narrowPeak \
--outdir footprinting/differential \
--cores 8
```
## Parameter Recommendations
| Step | Parameter | Value |
|------|-----------|-------|
| fastp | adapter | Nextera (CTGTCTCTTATACACATCT) |
| Bowtie2 | -X | 2000 (max insert size) |
| samtools | -q | 30 (MAPQ filter) |
| MACS3 | --shift | -75 (for Tn5 shift) |
| MACS3 | --extsize | 150 |
| MACS3 | -q | 0.01-0.05 |
## Troubleshooting
| Issue | Likely Cause | Solution |
|-------|--------------|----------|
| High mitochondrial | Normal for ATAC | Filter chrM reads |
| Low TSS enrichment | Poor library, overdigestion | Check Tn5 concentration |
| Many small peaks | Tn5 insertion noise | Increase -q threshold |
| No nuclRelated in General
modeling-omnistudio-epc-catalog
IncludedSalesforce Industries CME EPC product-modeling skill for Product2-based catalog creation. Use when creating EPC products, configuring product attributes, building offer bundles with Product Child Items, or reviewing EPC DataPack JSON metadata for product catalog changes. TRIGGER when: user creates or updates Product2 EPC records, AttributeAssignment payloads, AttributeMetadata/AttributeDefaultValues, Offer bundles, or ProductChildItem relationships. DO NOT TRIGGER when: designing OmniScripts/FlexCards/Integration Procedures (use building-omnistudio-omniscript, building-omnistudio-flexcard, or building-omnistudio-integration-procedure), implementing Apex business logic (use generating-apex), or troubleshooting deployment pipelines (use deploying-metadata).
relationship-science-coach
IncludedUse this skill for direct, practical adult relationship coaching: couples conflict, repair, trust, marriage, dating, flirting, attachment patterns, emotional connection, sex, desire differences, eroticism, kink negotiation, affection, love languages, breakups, and long-term passion. Draw on Gottman, EFT and Hold Me Tight, attachment science, modern sex research, Perel, Nagoski, Kerner, Schnarch, Love and Stosny, and flexible love-language tools. Be concrete and low-hedge. Redirect only for imminent danger, abuse, coercive control, minors, non-consent, self-harm, stalking, or medical/legal/psychiatric decisions.
building-sf-integrations
IncludedSalesforce integration architecture and runtime plumbing with 120-point scoring. Use this skill to set up Named Credentials, External Credentials, External Services, REST/SOAP callout patterns, Platform Events, and Change Data Capture. TRIGGER when: user sets up Named Credentials, External Services, REST/SOAP callouts, Platform Events, CDC, or touches .namedCredential-meta.xml files. DO NOT TRIGGER when: Connected App/OAuth config (use configuring-connected-apps), Apex-only logic (use generating-apex), or data import/export (use handling-sf-data).
venue-templates
IncludedAccess comprehensive LaTeX templates, formatting requirements, and submission guidelines for major scientific publication venues (Nature, Science, PLOS, IEEE, ACM), academic conferences (NeurIPS, ICML, CVPR, CHI), research posters, and grant proposals (NSF, NIH, DOE, DARPA). This skill should be used when preparing manuscripts for journal submission, conference papers, research posters, or grant proposals and need venue-specific formatting requirements and templates.
let-fate-decide
IncludedDraws the 12 Houses of the Zodiac Tarot spread to inject entropy into planning when prompts are vague, ambiguous, or casually delegated. Interprets the spread to guide next steps. Use when the user says 'let fate decide', 'YOLO', 'whatever', 'idk', or other nonchalant phrases, makes Yu-Gi-Oh references, or when you are about to arbitrarily pick between multiple reasonable approaches. Prefer over ask-questions-if-underspecified when the user's tone is casual or playful rather than precision-seeking.
net-ops
IncludedCross-platform network troubleshooting (Windows, macOS, Linux) via local or remote shell. Use for: DNS broken, can't resolve hostnames, nslookup/dig works but apps fail, NRPT, WFP, scutil, /etc/resolver, systemd-resolved, /etc/resolv.conf, NetworkManager, VPN DNS leak residue (ProtonVPN/Mullvad/WireGuard/AnyConnect), AV/firewall blocking DNS or DoH, Tailscale DNS interaction, intermittent connectivity, remote diagnostics over SSH.