Permalink
Browse files

Merge pull request #654 from SHuang-Broad/sh_GATK3_issue_1413

Number tag in header line for GENOTYPE_FILTER
  • Loading branch information...
2 parents 2cb67cb + 6edf1a2 commit ee05a20ccbe01eed17bfa899cfd2d267f033502e @lbergelson lbergelson committed on GitHub Jul 7, 2016
Showing with 1 addition and 1 deletion.
  1. +1 −1 src/main/java/htsjdk/variant/vcf/VCFStandardHeaderLines.java
@@ -184,7 +184,7 @@ private static void registerStandard(final VCFInfoHeaderLine line) {
registerStandard(new VCFFormatHeaderLine(VCFConstants.DEPTH_KEY, 1, VCFHeaderLineType.Integer, "Approximate read depth (reads with MQ=255 or with bad mates are filtered)"));
registerStandard(new VCFFormatHeaderLine(VCFConstants.GENOTYPE_PL_KEY, VCFHeaderLineCount.G, VCFHeaderLineType.Integer, "Normalized, Phred-scaled likelihoods for genotypes as defined in the VCF specification"));
registerStandard(new VCFFormatHeaderLine(VCFConstants.GENOTYPE_ALLELE_DEPTHS, VCFHeaderLineCount.R, VCFHeaderLineType.Integer, "Allelic depths for the ref and alt alleles in the order listed"));
- registerStandard(new VCFFormatHeaderLine(VCFConstants.GENOTYPE_FILTER_KEY, 1, VCFHeaderLineType.String, "Genotype-level filter"));
+ registerStandard(new VCFFormatHeaderLine(VCFConstants.GENOTYPE_FILTER_KEY, VCFHeaderLineCount.UNBOUNDED, VCFHeaderLineType.String, "Genotype-level filter"));
registerStandard(new VCFFormatHeaderLine(VCFConstants.PHASE_QUALITY_KEY, 1, VCFHeaderLineType.Float, "Read-backed phasing quality"));
// INFO lines

0 comments on commit ee05a20

Please sign in to comment.