GATK Haplotype Caller error
1
0
Entering edit mode
6.4 years ago

While ruuning GATK Haplotype caller for human,

java -jar /biobank/seq/kirti/new/NA12878/GATK/GenomeAnalysisTK.jar -T HaplotypeCaller -R /biobank/seq/kirti/new/NA12878/reference/hg19_new.fa -I /biobank/seq/kirti/new/NA12878/nature_paper/"$a"/"$a"sorted2_bwa_aligned.bam --dbsnp /biobank/seq/kirti/new/NA12878/nature_paper/Homo_sapiens.vcf --sample_name "$a" -ploidy 2 -o /biobank/seq/kirti/new/NA12878/nature_paper/"$a"/"$a"bwa_GATK.vcf

I got this error message .Please help to solve it--Thanks in Advance--

<h5>ERROR MESSAGE: The provided VCF file is malformed at approximately line number 30824751: unparsable vcf record with allele W</h5>
next-gen genome sequencing GAtk • 1.5k views
ADD COMMENT
2
Entering edit mode
6.4 years ago

the message is clear:

The provided VCF file is malformed at approximately line number 30824751: unparsable vcf record with allele W

there is an error in the REF or ALT column of your VCF, it should be an [ATGC] string but you have a 'W' allele.

thrown here: https://github.com/samtools/htsjdk/blob/912c28bec415c430b43515652ccaf13222b07e7b/src/main/java/htsjdk/variant/vcf/AbstractVCFCodec.java#L589

because of this line:

https://github.com/samtools/htsjdk/blob/912c28bec415c430b43515652ccaf13222b07e7b/src/main/java/htsjdk/variant/variantcontext/Allele.java#L338

ADD COMMENT

Login before adding your answer.

Traffic: 1973 users visited in the last hour
Help About
FAQ
Access RSS
API
Stats

Use of this site constitutes acceptance of our User Agreement and Privacy Policy.

Powered by the version 2.3.6