Mark DePristo 2012-10-26 16:34:07 -04:00
parent fa9b2a91d0
commit ac5e58a265
1 changed files with 1 additions and 1 deletions

View File

@ -159,6 +159,7 @@ public class VCFHeader {
*/
public void addMetaDataLine(VCFHeaderLine headerLine) {
mMetaData.add(headerLine);
loadMetaDataMaps();
}
/**
@ -236,7 +237,6 @@ public class VCFHeader {
+ VCFConstants.GENOTYPE_PL_KEY + " field. As the GATK now only manages PL fields internally"
+ " automatically adding a corresponding PL field to your VCF header");
addMetaDataLine(new VCFFormatHeaderLine(VCFConstants.GENOTYPE_PL_KEY, VCFHeaderLineCount.G, VCFHeaderLineType.Integer, "Normalized, Phred-scaled likelihoods for genotypes as defined in the VCF specification"));
loadMetaDataMaps();
}
}