From cc713f2769a5247163d39ed3d4a237ed7ed01553 Mon Sep 17 00:00:00 2001 From: rpoplin Date: Wed, 6 Apr 2011 00:29:13 +0000 Subject: [PATCH] fixing exception text git-svn-id: file:///humgen/gsa-scr1/gsa-engineering/svn_contents/trunk@5581 348d0f76-0448-11de-a6fe-93d51630548a --- .../sting/gatk/walkers/genotyper/UnifiedGenotyperEngine.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/java/src/org/broadinstitute/sting/gatk/walkers/genotyper/UnifiedGenotyperEngine.java b/java/src/org/broadinstitute/sting/gatk/walkers/genotyper/UnifiedGenotyperEngine.java index 563327b33..10d2dcb4d 100755 --- a/java/src/org/broadinstitute/sting/gatk/walkers/genotyper/UnifiedGenotyperEngine.java +++ b/java/src/org/broadinstitute/sting/gatk/walkers/genotyper/UnifiedGenotyperEngine.java @@ -718,7 +718,7 @@ public class UnifiedGenotyperEngine { case GRID_SEARCH: afcm = new GridSearchAFEstimation(UAC, N, logger, verboseWriter); break; - default: throw new IllegalArgumentException("Unexpected GenotypeCalculationModel " + UAC.GLmodel); + default: throw new IllegalArgumentException("Unexpected AlleleFrequencyCalculationModel " + UAC.AFmodel); } return afcm;