From d09b8d55841c7308d33c82beaa55a0ff6ed6ca67 Mon Sep 17 00:00:00 2001 From: Eric Banks Date: Wed, 30 May 2012 13:24:08 -0400 Subject: [PATCH] Fixing docs --- .../gatk/walkers/genotyper/UnifiedArgumentCollection.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/public/java/src/org/broadinstitute/sting/gatk/walkers/genotyper/UnifiedArgumentCollection.java b/public/java/src/org/broadinstitute/sting/gatk/walkers/genotyper/UnifiedArgumentCollection.java index 89b659ef8..ca59ae452 100755 --- a/public/java/src/org/broadinstitute/sting/gatk/walkers/genotyper/UnifiedArgumentCollection.java +++ b/public/java/src/org/broadinstitute/sting/gatk/walkers/genotyper/UnifiedArgumentCollection.java @@ -37,7 +37,8 @@ public class UnifiedArgumentCollection { /** * Controls the model used to calculate the probability that a site is variant plus the various sample genotypes in the data at a given locus. */ - @Argument(fullName = "p_nonref_model", shortName = "pnrm", doc = "Non-reference probability calculation model to employ -- EXACT is the default option, while GRID_SEARCH is also available.", required = false) + @Advanced + @Argument(fullName = "p_nonref_model", shortName = "pnrm", doc = "Non-reference probability calculation model to employ", required = false) protected AlleleFrequencyCalculationModel.Model AFmodel = AlleleFrequencyCalculationModel.Model.EXACT; /**