Detects large DNA changes (>50bp) that DeepVariant misses: deletions, duplications, inversions, translocations, and insertions.
Structural variants cause ~25% of all genetic disease but are invisible to standard SNP/indel callers.
quay.io/biocontainers/manta:1.6.0--h9ee0642_2
SAMPLE=your_sample
GENOME_DIR=/path/to/your/data
# Step 1: Configure Manta
docker run --rm \
--cpus 8 --memory 16g \
-v ${GENOME_DIR}:/genome \
quay.io/biocontainers/manta:1.6.0--h9ee0642_2 \
configManta.py \
--bam /genome/${SAMPLE}/aligned/${SAMPLE}_sorted.bam \
--referenceFasta /genome/reference/Homo_sapiens_assembly38.fasta \
--runDir /genome/${SAMPLE}/manta
# Step 2: Run Manta
docker run --rm \
--cpus 8 --memory 16g \
-v ${GENOME_DIR}:/genome \
quay.io/biocontainers/manta:1.6.0--h9ee0642_2 \
/genome/${SAMPLE}/manta/runWorkflow.py -j 8
# Output: diploidSV.vcf.gz (~7-9K structural variants)
results/variants/diploidSV.vcf.gz — main output (all SV calls)results/variants/candidateSV.vcf.gz — unfiltered candidatesresults/variants/candidateSmallIndels.vcf.gz — small indels