Updated standard deviation parameter in VQSR to our current recommended value

This commit is contained in:
Ryan Poplin 2011-08-04 14:06:26 -04:00
parent 21dc9a5543
commit 98a96f07c1
2 changed files with 4 additions and 4 deletions

View File

@ -50,7 +50,7 @@ public class VariantRecalibratorArgumentCollection {
@Argument(fullName="numKMeans", shortName="nKM", doc="The number of k-means iterations to perform in order to initialize the means of the Gaussians in the Gaussian mixture model.", required=false)
public int NUM_KMEANS_ITERATIONS = 30;
@Argument(fullName="stdThreshold", shortName="std", doc="If a variant has annotations more than -std standard deviations away from mean then don't use it for building the Gaussian mixture model.", required=false)
public double STD_THRESHOLD = 8.0;
public double STD_THRESHOLD = 14.0;
@Argument(fullName="qualThreshold", shortName="qual", doc="If a known variant has raw QUAL value less than -qual then don't use it for building the Gaussian mixture model.", required=false)
public double QUAL_THRESHOLD = 80.0;
@Argument(fullName="shrinkage", shortName="shrinkage", doc="The shrinkage parameter in variational Bayes algorithm.", required=false)

View File

@ -26,9 +26,9 @@ public class VariantRecalibrationWalkersIntegrationTest extends WalkerTest {
}
VRTest lowPass = new VRTest("phase1.projectConsensus.chr20.raw.snps.vcf",
"d33212a84368e821cbedecd4f59756d6", // tranches
"4652dca41222bebdf9d9fda343b2a835", // recal file
"243a397a33a935fcaccd5deb6d16f0c0"); // cut VCF
"0ddd1e0e483d2eaf56004615cea23ec7", // tranches
"58780f63182e139fdbe17f6c18b5b774", // recal file
"f67d844b6252a55452cf4167b77530b1"); // cut VCF
@DataProvider(name = "VRTest")
public Object[][] createData1() {