I just analyzed a VCF file created with GATK 3.8 pipeline and got the following error:
terminate called after throwing an instance of 'VcfFileException'
what(): # values = ./.:0,0,0:.:.:0|1:18576120_T_C do not match with # fields in FORMAT field = 7 at sampleIndex = 7 See line 47626.
verifyBamID 1.0.0 -- verify identity and purity of sequence data
It turned out that this error occurs because GATK CombineGVCFs drops trailing fields per sample if they are empty. Apparently, this is allowed by the VCF format specification: https://gatkforums.broadinstitute.org/gatk/discussion/4149/format-fields-and-sample-entries-in-vcf-files#latest
Is there a parameter to ignore incomplete sample information?
I just analyzed a VCF file created with GATK 3.8 pipeline and got the following error:
It turned out that this error occurs because GATK CombineGVCFs drops trailing fields per sample if they are empty. Apparently, this is allowed by the VCF format specification: https://gatkforums.broadinstitute.org/gatk/discussion/4149/format-fields-and-sample-entries-in-vcf-files#latest
Is there a parameter to ignore incomplete sample information?