diff --git a/java/src/org/broadinstitute/sting/gatk/refdata/features/vcf4/VCF4Codec.java b/java/src/org/broadinstitute/sting/gatk/refdata/features/vcf4/VCF4Codec.java index 11d5908f5..9dba4601d 100644 --- a/java/src/org/broadinstitute/sting/gatk/refdata/features/vcf4/VCF4Codec.java +++ b/java/src/org/broadinstitute/sting/gatk/refdata/features/vcf4/VCF4Codec.java @@ -448,7 +448,7 @@ public class VCF4Codec implements FeatureCodec, NameAwareCodec { throw new VCFParserException("Too few keys for compared to the value string " + sampleName + ", keys = " + parts[8] + " values = " + parts[genotypeOffset]); int genotypeAlleleLocation = -1; - if (nGTKeys > 1) { + if (nGTKeys >= 1) { gtAttributes = new HashMap(nGTKeys - 1); for (int i = 0; i < nGTKeys; i++) { if (i >= GTValueSplitSize)