bio-workflows-cnv-pipeline
End-to-end copy number variant detection workflow from BAM files. Covers CNVkit analysis for exome/targeted sequencing with visualization and annotation. Use when detecting copy number alterations from sequencing data.
What this skill does
## Version Compatibility
Reference examples tested with: CNVkit 0.9+, GATK 4.5+
Before using code patterns, verify installed versions match. If versions differ:
- 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.
# CNV Pipeline
**"Detect copy number variants from my sequencing data"** -> Orchestrate CNVkit coverage analysis, segmentation, calling, visualization, and annotation for exome or targeted sequencing panels.
Complete workflow for detecting copy number variants from exome or targeted sequencing data.
## Workflow Overview
```
BAM files (tumor/normal or germline)
|
v
[1. Target Preparation] --> Create/access target BED
|
v
[2. Coverage Calculation] --> Read depth per target
|
v
[3. Reference Creation] --> Pool of normals
|
v
[4. CNV Calling] --------> Log2 ratios, segmentation
|
v
[5. Visualization] ------> Scatter plots, heatmaps
|
v
[6. Annotation] ---------> Gene-level CNVs
|
v
CNV calls with gene annotations
```
## Primary Path: CNVkit
### Step 1: Prepare Target Regions
```bash
# If using exome capture kit BED
cnvkit.py target capture_targets.bed \
--annotate refFlat.txt \
--split \
-o targets.bed
# Access regions (off-target for WGS-like sensitivity)
cnvkit.py access genome.fa \
-o access.bed
cnvkit.py antitarget targets.bed \
--access access.bed \
-o antitargets.bed
```
### Step 2: Calculate Coverage
```bash
# 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
```
### Step 3: Create Reference (Pool of Normals)
```bash
# From normal samples
cnvkit.py reference \
coverage/normal*.targetcoverage.cnn \
coverage/normal*.antitargetcoverage.cnn \
--fasta genome.fa \
-o reference.cnn
# Or flat reference (no normals available)
cnvkit.py reference \
--fasta genome.fa \
--targets targets.bed \
--antitargets antitargets.bed \
-o flat_reference.cnn
```
### Step 4: Call CNVs
```bash
for bam in tumor*.bam; do
sample=$(basename $bam .bam)
# Fix and segment
cnvkit.py fix \
coverage/${sample}.targetcoverage.cnn \
coverage/${sample}.antitargetcoverage.cnn \
reference.cnn \
-o cnv/${sample}.cnr
# Segment
cnvkit.py segment cnv/${sample}.cnr \
-o cnv/${sample}.cns
# Call integer copy numbers
cnvkit.py call cnv/${sample}.cns \
-o cnv/${sample}.call.cns
done
```
### Step 5: Visualization
```bash
# Scatter plot for single sample
cnvkit.py scatter cnv/tumor1.cnr \
-s cnv/tumor1.cns \
-o plots/tumor1_scatter.pdf
# Chromosome-specific
cnvkit.py scatter cnv/tumor1.cnr \
-s cnv/tumor1.cns \
-c chr17 \
-o plots/tumor1_chr17.pdf
# Diagram (chromosome ideogram)
cnvkit.py diagram cnv/tumor1.cnr \
-s cnv/tumor1.cns \
-o plots/tumor1_diagram.pdf
# Heatmap for multiple samples
cnvkit.py heatmap cnv/*.cns \
-o plots/cohort_heatmap.pdf
```
### Step 6: Export and Annotation
```bash
# Export to various formats
cnvkit.py export seg cnv/*.cns -o cnv/cohort.seg
cnvkit.py export vcf cnv/tumor1.call.cns -o cnv/tumor1.vcf
# Gene-level summary
cnvkit.py genemetrics cnv/tumor1.cnr \
-s cnv/tumor1.cns \
--threshold 0.2 \
-o cnv/tumor1_genes.tsv
# Filter for significant CNVs
awk '$6 < -0.4 || $6 > 0.3' cnv/tumor1_genes.tsv > cnv/tumor1_significant_genes.tsv
```
## Batch Processing Script
```bash
#!/bin/bash
set -e
TARGETS="targets.bed"
REFERENCE="reference.cnn"
OUTDIR="cnv_results"
mkdir -p ${OUTDIR}/{coverage,cnv,plots}
# Process all tumor samples
for bam in tumor*.bam; do
sample=$(basename $bam .bam)
echo "Processing ${sample}..."
# Coverage
cnvkit.py coverage $bam ${TARGETS} \
-o ${OUTDIR}/coverage/${sample}.targetcoverage.cnn
# Fix
cnvkit.py fix \
${OUTDIR}/coverage/${sample}.targetcoverage.cnn \
${OUTDIR}/coverage/${sample}.antitargetcoverage.cnn \
${REFERENCE} \
-o ${OUTDIR}/cnv/${sample}.cnr
# Segment
cnvkit.py segment ${OUTDIR}/cnv/${sample}.cnr \
-o ${OUTDIR}/cnv/${sample}.cns
# Call
cnvkit.py call ${OUTDIR}/cnv/${sample}.cns \
-o ${OUTDIR}/cnv/${sample}.call.cns
# Plot
cnvkit.py scatter ${OUTDIR}/cnv/${sample}.cnr \
-s ${OUTDIR}/cnv/${sample}.cns \
-o ${OUTDIR}/plots/${sample}.pdf
done
# Cohort heatmap
cnvkit.py heatmap ${OUTDIR}/cnv/*.cns -o ${OUTDIR}/plots/heatmap.pdf
```
## Germline CNV Calling
```bash
# For germline analysis (no tumor-normal)
cnvkit.py batch sample*.bam \
--normal normal*.bam \
--targets targets.bed \
--fasta genome.fa \
--output-reference reference.cnn \
--output-dir cnv_output \
--scatter --diagram
# Or use flat reference
cnvkit.py batch sample.bam \
--method hybrid \
--targets targets.bed \
--fasta genome.fa \
--output-dir cnv_output
```
## Parameter Recommendations
| Step | Parameter | Value |
|------|-----------|-------|
| target | --split | Yes (for WES) |
| segment | --method | cbs (default) |
| call | --ploidy | 2 (adjust if known) |
| call | --purity | Estimate if tumor |
| genemetrics | --threshold | 0.2 |
## Troubleshooting
| Issue | Likely Cause | Solution |
|-------|--------------|----------|
| Noisy signal | Low coverage | Increase sequencing depth |
| No CNVs | Flat reference, normal sample | Check reference creation |
| Many small CNVs | Over-segmentation | Increase segment min size |
| Batch effects | Different capture kits | Match samples to correct reference |
## Complete Pipeline Script
```bash
#!/bin/bash
set -e
GENOME="genome.fa"
TARGETS="capture_targets.bed"
REFFLAT="refFlat.txt"
NORMAL_BAMS="normal*.bam"
TUMOR_BAMS="tumor*.bam"
OUTDIR="cnv_results"
mkdir -p ${OUTDIR}/{coverage,cnv,plots,annotation}
# Step 1: Prepare targets
cnvkit.py target ${TARGETS} --annotate ${REFFLAT} --split -o ${OUTDIR}/targets.bed
cnvkit.py access ${GENOME} -o ${OUTDIR}/access.bed
cnvkit.py antitarget ${OUTDIR}/targets.bed --access ${OUTDIR}/access.bed -o ${OUTDIR}/antitargets.bed
# Step 2: Coverage (normals)
for bam in ${NORMAL_BAMS}; do
sample=$(basename $bam .bam)
cnvkit.py coverage $bam ${OUTDIR}/targets.bed -o ${OUTDIR}/coverage/${sample}.targetcoverage.cnn
cnvkit.py coverage $bam ${OUTDIR}/antitargets.bed -o ${OUTDIR}/coverage/${sample}.antitargetcoverage.cnn
done
# Step 3: Reference
cnvkit.py reference ${OUTDIR}/coverage/normal*.cnn --fasta ${GENOME} -o ${OUTDIR}/reference.cnn
# Step 4-5: Process tumors
for bam in ${TUMOR_BAMS}; do
sample=$(basename $bam .bam)
cnvkit.py coverage $bam ${OUTDIR}/targets.bed -o ${OUTDIR}/coverage/${sample}.targetcoverage.cnn
cnvkit.py coverage $bam ${OUTDIR}/antitargets.bed -o ${OUTDIR}/coverage/${sample}.antitargetcoverage.cnn
cnvkit.py fix ${OUTDIR}/coverage/${sample}.targetcoverage.cnn \
${OUTDIR}/coverage/${sample}.antitargetcoverage.cnn \
${OUTDIR}/reference.cnn -o ${OUTDIR}/cnv/${sample}.cnr
cnvkit.py segment ${OUTDIR}/cnv/${sample}.cnr -o ${OUTDIR}/cnv/${sample}.cns
cnvkit.py call ${OUTDIR}/cnv/${sample}.cns -o ${OUTDIR}/cnv/${sample}.call.cns
cnvkit.py scatter ${OUTDIR}/cnv/${sample}.cnr -s ${OUTDIR}/cnv/${sample}.cns -o ${OUTDIR}/plots/${sample}.pdf
cnvkit.py genemetrics ${OUTDIR}/cnv/${sample}.cnr -s ${OUTDIR}/cnv/${sample}.cns -o ${OUTDIR}/annotation/${sample}_genes.tsv
done
echo "Pipeline complete. Results in ${OUTDIR}/"
```
## Related Skills
- copy-number/cnvkit-analysis - CNVkit details
- copy-number/cnv-visualization - Plotting options
- copy-number/cnv-annotation - Gene annoRelated in Writing & Docs
jax-development
IncludedUse this skill when the user is writing, debugging, profiling, refactoring, reviewing, benchmarking, parallelising, exporting, or explaining JAX code, or when they mention JAX, jax.numpy, jit, grad, value_and_grad, vmap, scan, lax, random keys, pytrees, jax.Array, sharding, Mesh, PartitionSpec, NamedSharding, pmap, shard_map, Pallas, XLA, StableHLO, checkify, profiler, or the JAX repo. It helps turn NumPy or PyTorch-style code into pure functional JAX, fix tracer/control-flow/shape/PRNG bugs, remove recompiles and host-device syncs, choose transforms and sharding strategies, inspect jaxpr/lowering/IR, and benchmark compiled code correctly.
nature-article-writer
IncludedDrafts, rewrites, diagnostically critiques, and style-calibrates primary research manuscripts for Nature and Nature Portfolio journals. Use when the user wants a Nature-style title, summary paragraph or abstract, introduction, results, discussion, methods, figure legends, presubmission enquiry, cover letter, reviewer response, or when a scientific draft sounds generic, jargon-heavy, structurally weak, or AI-ish and needs precise, broad-reader-friendly prose without inventing data, analyses, or references. Best for primary research articles and letters rather than reviews or press releases unless explicitly adapting one.
deckrd
IncludedDocument-driven framework that derives requirements, specifications, implementation plans, and executable tasks from goals through structured AI dialogue. Use when user says "write requirements", "create spec", "plan implementation", "derive tasks", "structure this feature", "break down into tasks", or "document this module". Also use for reverse engineering existing code into docs (/deckrd rev). Do NOT use for direct code writing — use /deckrd-coder after tasks are generated. Do NOT use when the user only wants to run or fix existing code without planning.
clinical-decision-support
IncludedGenerate professional clinical decision support (CDS) documents for pharmaceutical and clinical research settings, including patient cohort analyses (biomarker-stratified with outcomes) and treatment recommendation reports (evidence-based guidelines with decision algorithms). Supports GRADE evidence grading, statistical analysis (hazard ratios, survival curves, waterfall plots), biomarker integration, and regulatory compliance. Outputs publication-ready LaTeX/PDF format optimized for drug development, clinical research, and evidence synthesis.
handling-sf-data
IncludedSalesforce data operations with 130-point scoring. Use this skill to create, update, delete, bulk import/export, generate test data, and clean up org records using sf CLI and anonymous Apex. TRIGGER when: user creates test data, performs bulk import/export, uses sf data CLI commands, needs data factory patterns for Apex tests, or needs to seed/clean records in a Salesforce org. DO NOT TRIGGER when: SOQL query writing only (use querying-soql), Apex test execution (use running-apex-tests), or metadata deployment (use deploying-metadata).
accelint-ac-to-playwright
IncludedConvert and validate acceptance criteria for Playwright test automation. Use when user asks to (1) review/evaluate/check if AC are ready for automation, (2) assess if AC can be converted as-is, (3) validate AC quality for Playwright, (4) turn AC into tests, (5) generate tests from acceptance criteria, (6) convert .md bullets or .feature Gherkin files to Playwright specs, (7) create test automation from requirements. Handles both bullet-style markdown and Gherkin syntax with JSON test plan generation and validation.