Permalink
Browse files

Number tag in header line for GENOTYPE_FILTER

This is to fix [this bug](broadinstitute/gsa-unstable#1413)
  • Loading branch information...
1 parent d683012 commit 6edf1a27616155cf10dd2cfd020339bc980738b2 @SHuang-Broad SHuang-Broad committed on GitHub Jun 30, 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 6edf1a2

Please sign in to comment.