Data & ReproBioinformatics & GenomicsFreedomIntelligence/OpenClaw-Medical-SkillsData & Reproduction
BI

bio-workflows-chipseq-pipeline

Maintainer FreedomIntelligence · Last updated April 1, 2026

ChIP-seq: alignment → peak calling → motif analysis → annotation.

OpenClawNanoClawAnalysisReproductionbio-workflows-chipseq-pipeline🧠 bioos extended suitebioos extended bioinformatics suitechip

Original source

FreedomIntelligence/OpenClaw-Medical-Skills

https://github.com/FreedomIntelligence/OpenClaw-Medical-Skills/tree/main/skills/bio-workflows-chipseq-pipeline

Maintainer
FreedomIntelligence
License
MIT
Last updated
April 1, 2026

Skill Snapshot

Key Details From SKILL.md

2 min

Key Notes

  • Complete workflow from raw ChIP-seq FASTQ files to annotated peaks.
  • for sample in IP_rep1 IP_rep2 Input_rep1 Input_rep2; do fastp -i ${sample}_R1.fastq.gz -I ${sample}_R2.fastq.gz \ -o trimmed/${sample}_R1.fq.gz -O trimmed/${sample}_R2.fq.gz \ --detect_adapter_for_pe \ --qualified_quality_phred 20 \ --length_required 25 \ --html qc/${sample}_fastp.html done.

Source Doc

Excerpt From SKILL.md

Build index (once)

bowtie2-build genome.fa bt2_index/genome

Align

for sample in IP_rep1 IP_rep2 Input_rep1 Input_rep2; do bowtie2 -p 8 -x bt2_index/genome
-1 trimmed/${sample}_R1.fq.gz
-2 trimmed/${sample}_R2.fq.gz
--no-mixed --no-discordant
--maxins 1000
2> aligned/${sample}.log |
samtools view -@ 4 -bS -q 30 - |
samtools sort -@ 4 -o aligned/${sample}.bam done


**QC Checkpoint:** Check alignment rate
- Overall alignment >80%
- Unique mapping >70%

## Narrow peaks (TFs, sharp histone marks like H3K4me3)

macs3 callpeak \
    -t aligned/IP_rep1.final.bam aligned/IP_rep2.final.bam \
    -c aligned/Input_rep1.final.bam aligned/Input_rep2.final.bam \
    -f BAMPE \
    -g hs \
    -n experiment \
    --outdir peaks \
    -q 0.01

Use cases

  • Use bio-workflows-chipseq-pipeline for genomics and bioinformatics workflows.
  • Apply bio-workflows-chipseq-pipeline to sequencing, variant, or omics analysis tasks.

Not for

  • Do not rely on this catalog entry alone for installation or maintenance details.

Upstream Related Skills

  • chip-seq/peak-calling - MACS3 parameters and options
  • chip-seq/peak-annotation - ChIPseeker annotation details
  • chip-seq/differential-binding - Compare conditions with DiffBind
  • chip-seq/chipseq-qc - Comprehensive QC metrics
  • chip-seq/motif-analysis - Find enriched motifs in peaks

Related skills

Related skills

Back to directory
AG
Data & ReproBioinformatics & Genomics

agent-browser

Browse the web for any task — research topics, read articles, interact with web apps, fill forms, take screenshots, extract data, and test w…

OpenClawNanoClawAnalysis
FreedomIntelligence/OpenClaw-Medical-SkillsView
AL
Data & ReproBioinformatics & Genomics

alpha-vantage

Access 20+ years of global financial data: equities, options, forex, crypto, commodities, economic indicators, and 50+ technical indicators.

Claude CodeAnalysis
K-Dense-AI/claude-scientific-skillsView
BI
Data & ReproBioinformatics & Genomics

bio-alignment-filtering

Filter alignments by flag, quality, region, or paired status.

OpenClawNanoClawAnalysis
FreedomIntelligence/OpenClaw-Medical-SkillsView
BI
Data & ReproBioinformatics & Genomics

bio-alignment-indexing

Index BAM/CRAM files with samtools index for random access.

OpenClawNanoClawAnalysis
FreedomIntelligence/OpenClaw-Medical-SkillsView