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…
Maintainer FreedomIntelligence · Last updated April 1, 2026
Copy number variant detection: WGS/WES CNV calling and annotation.
Original source
https://github.com/FreedomIntelligence/OpenClaw-Medical-Skills/tree/main/skills/bio-workflows-cnv-pipeline
Skill Snapshot
Source Doc
cnvkit.py access genome.fa
-o access.bed
cnvkit.py antitarget targets.bed
--access access.bed
-o antitargets.bed
## For each sample
for bam in *.bam; do
sample=$(basename $bam .bam)
# Target coverage
cnvkit.py coverage $bam targets.bed \
-o coverage/${sample}.targetcoverage.cnn
# Antitarget coverage
cnvkit.py coverage $bam antitargets.bed \
-o coverage/${sample}.antitargetcoverage.cnn
done
cnvkit.py reference
coverage/normal*.targetcoverage.cnn
coverage/normal*.antitargetcoverage.cnn
--fasta genome.fa
-o reference.cnn
Related skills
Browse the web for any task — research topics, read articles, interact with web apps, fill forms, take screenshots, extract data, and test w…
Access 20+ years of global financial data: equities, options, forex, crypto, commodities, economic indicators, and 50+ technical indicators.
Filter alignments by flag, quality, region, or paired status.
Index BAM/CRAM files with samtools index for random access.