diff --git a/java/src/org/broadinstitute/sting/gatk/walkers/annotator/QualByDepth.java b/java/src/org/broadinstitute/sting/gatk/walkers/annotator/QualByDepth.java index 04ccac374..3a397216e 100755 --- a/java/src/org/broadinstitute/sting/gatk/walkers/annotator/QualByDepth.java +++ b/java/src/org/broadinstitute/sting/gatk/walkers/annotator/QualByDepth.java @@ -34,7 +34,7 @@ public class QualByDepth extends StandardVariantAnnotation { public String getKeyName() { return "QD"; } - public VCFInfoHeaderLine getDescription() { return new VCFInfoHeaderLine(getKeyName(), 1, VCFInfoHeaderLine.INFO_TYPE.Float, "Genotype Quality by Depth"); } + public VCFInfoHeaderLine getDescription() { return new VCFInfoHeaderLine(getKeyName(), 1, VCFInfoHeaderLine.INFO_TYPE.Float, "Variant Confidence/Quality by Depth"); } private int variationQualByDepth(char ref, final List genotypes, Map stratifiedContexts) { int depth = 0; diff --git a/java/src/org/broadinstitute/sting/gatk/walkers/genotyper/UnifiedGenotyper.java b/java/src/org/broadinstitute/sting/gatk/walkers/genotyper/UnifiedGenotyper.java index cae055340..7fe501b68 100755 --- a/java/src/org/broadinstitute/sting/gatk/walkers/genotyper/UnifiedGenotyper.java +++ b/java/src/org/broadinstitute/sting/gatk/walkers/genotyper/UnifiedGenotyper.java @@ -141,10 +141,8 @@ public class UnifiedGenotyper extends LocusWalker e = new HashMap(); - e.put( "-genotype", "cad3a34b66c0c95210a3c554410f8a38" ); - e.put( "-all_bases", "83a1baa9807b367f3437748627d3fec6" ); - e.put( "--min_base_quality_score 26", "46589944cdd7162e24db9bdac22842eb" ); - e.put( "--min_mapping_quality_score 26", "db18b1336fc1351d8bc95b677873e75f" ); - e.put( "--max_mismatches_in_40bp_window 5", "374e23d647d309ff1df1653aea83aa83" ); + e.put( "-genotype", "e5d4287d27aa7734f0d57a8213f549ef" ); + e.put( "-all_bases", "3a291bb06764e3615230f467cc501096" ); + e.put( "--min_base_quality_score 26", "fb00499f249973c156ca64e30e7b2d91" ); + e.put( "--min_mapping_quality_score 26", "315c7951a783655445933ed9d83db2c2" ); + e.put( "--max_mismatches_in_40bp_window 5", "bca61f8afce9f64763a1225e9c614d38" ); for ( Map.Entry entry : e.entrySet() ) { WalkerTest.WalkerTestSpec spec = new WalkerTest.WalkerTestSpec( @@ -116,7 +116,7 @@ public class UnifiedGenotyperIntegrationTest extends WalkerTest { public void testConfidence() { WalkerTest.WalkerTestSpec spec = new WalkerTest.WalkerTestSpec( "-T UnifiedGenotyper -R " + oneKGLocation + "reference/human_b36_both.fasta -I " + validationDataLocation + "NA12878.1kg.p2.chr1_10mb_11_mb.SLX.bam -varout %s -L 1:10,000,000-10,010,000 -bm empirical -gm JOINT_ESTIMATE -confidence 10 ", 1, - Arrays.asList("5c420264fa1661259170b0f98be5439a")); + Arrays.asList("c7427818f57cc3bf11e9ee98461c1a65")); executeTest("testConfidence", spec); } @@ -212,7 +212,7 @@ public class UnifiedGenotyperIntegrationTest extends WalkerTest { // -------------------------------------------------------------------------------------------------------------- @Test public void testOtherOutput() { - String[] md5s = {"a5dce541f00d3fe364d110f1cae53538", "cea954546a304aa98fc3a18d4305090a"}; + String[] md5s = {"a5dce541f00d3fe364d110f1cae53538", "0147670a1b62bb3d218d5ed3f9fc4656"}; WalkerTest.WalkerTestSpec spec = new WalkerTest.WalkerTestSpec( "-T UnifiedGenotyper" + " -R " + oneKGLocation + "reference/human_b36_both.fasta" +