From b924e9ebb43d4944fa2ac494997d6f8decdb7eb6 Mon Sep 17 00:00:00 2001 From: Mark DePristo Date: Thu, 4 Oct 2012 22:10:28 -0700 Subject: [PATCH] Add OptimizedDiploidExactAF to PerformanceTesting framework --- .../genotyper/ExactAFCalculationPerformanceTest.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/protected/java/src/org/broadinstitute/sting/gatk/walkers/genotyper/ExactAFCalculationPerformanceTest.java b/protected/java/src/org/broadinstitute/sting/gatk/walkers/genotyper/ExactAFCalculationPerformanceTest.java index 5e18715c4..73088f8d1 100644 --- a/protected/java/src/org/broadinstitute/sting/gatk/walkers/genotyper/ExactAFCalculationPerformanceTest.java +++ b/protected/java/src/org/broadinstitute/sting/gatk/walkers/genotyper/ExactAFCalculationPerformanceTest.java @@ -175,14 +175,14 @@ public class ExactAFCalculationPerformanceTest { final boolean USE_GENERAL = false; final List modelTypes = USE_GENERAL ? Arrays.asList(ExactAFCalculationTestBuilder.ModelType.values()) - : Arrays.asList(ExactAFCalculationTestBuilder.ModelType.DiploidExact); + : Arrays.asList(ExactAFCalculationTestBuilder.ModelType.DiploidExact, ExactAFCalculationTestBuilder.ModelType.OptimizedDiploidExact); final boolean ONLY_HUMAN_PRIORS = false; final List priorTypes = ONLY_HUMAN_PRIORS ? Arrays.asList(ExactAFCalculationTestBuilder.PriorType.values()) : Arrays.asList(ExactAFCalculationTestBuilder.PriorType.human); - final int MAX_N_SAMPLES_FOR_MULTI_ALLELIC = 100; + final int MAX_N_SAMPLES_FOR_MULTI_ALLELIC = 200; final List analyzes = new ArrayList(); analyzes.add(new AnalyzeByACAndPL(coreColumns)); @@ -191,7 +191,7 @@ public class ExactAFCalculationPerformanceTest { for ( int iteration = 0; iteration < 1; iteration++ ) { for ( final int nAltAlleles : Arrays.asList(1, 2) ) { - for ( final int nSamples : Arrays.asList(1, 10, 100, 1000, 10000) ) { + for ( final int nSamples : Arrays.asList(1, 10, 100, 200) ) { if ( nSamples > MAX_N_SAMPLES_FOR_MULTI_ALLELIC && nAltAlleles > 1 ) continue; // skip things that will take forever!