This commit is contained in:
Ryan Poplin 2013-01-28 22:18:58 -05:00
parent 1f254d29df
commit e9c3a0acdf
1 changed files with 1 additions and 1 deletions

View File

@ -241,7 +241,7 @@ public class GATKArgumentCollection {
@Argument(fullName = "preserve_qscores_less_than", shortName = "preserveQ", doc = "Bases with quality scores less than this threshold won't be recalibrated (with -BQSR)", required = false)
public int PRESERVE_QSCORES_LESS_THAN = QualityUtils.MIN_USABLE_Q_SCORE;
@Argument(fullName = "qlobalQScorePrior", shortName = "qlobalQScorePrior", doc = "The global Qscore Bayesian prior to use in the BQSR. If specified, this value will be used as the prior for all mismatch quality scores instead of the actual reported quality score", required = false)
@Argument(fullName = "globalQScorePrior", shortName = "globalQScorePrior", doc = "The global Qscore Bayesian prior to use in the BQSR. If specified, this value will be used as the prior for all mismatch quality scores instead of the actual reported quality score", required = false)
public double globalQScorePrior = -1.0;
// --------------------------------------------------------------------------------------------------------------