We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a996285 commit e29d42fCopy full SHA for e29d42f
resources/tools/vcfnorm.sh
@@ -32,10 +32,10 @@ cat "${REFERENCE_GENOME_FASTA_FILE}" | sed 's/>chrM/>MT/g' | sed 's/>chr/>/g' >
32
vt index "${VCF_INPUT_FILE}"
33
34
# Decompose multiallelic variants into biallelic variants
35
-vt decompose -s "${VCF_INPUT_FILE}" -o decomposed.vcf
+vt decompose -s -o decomposed.vcf "${VCF_INPUT_FILE}"
36
37
# Normalize variants (https://academic.oup.com/bioinformatics/article/31/13/2202/196142)
38
-vt normalize decomposed.vcf -m -r genome.fa -o "${VCF_OUTPUT_NAME}.vcf"
+vt normalize -m -r genome.fa -o "${VCF_OUTPUT_NAME}.vcf" decomposed.vcf
39
40
# Remove temporary file
41
rm -f decomposed.vcf
0 commit comments