agent-browser
Browse the web for any task — research topics, read articles, interact with web apps, fill forms, take screenshots, extr…
维护者 FreedomIntelligence · 最近更新 2026年4月1日
ATAC-seq: trimming → alignment → peak calling → differential.
原始来源
https://github.com/FreedomIntelligence/OpenClaw-Medical-Skills/tree/main/skills/bio-workflows-atacseq-pipeline
技能摘要
原始文档
bowtie2-build genome.fa bt2_index/genome
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.
Alternative manual Tn5 shift with bedtools:
```bash
相关技能
Browse the web for any task — research topics, read articles, interact with web apps, fill forms, take screenshots, extr…
Access 20+ years of global financial data: equities, options, forex, crypto, commodities, economic indicators, and 50+ t…
Filter alignments by flag, quality, region, or paired status.
Index BAM/CRAM files with samtools index for random access.