diff --git a/public/java/src/org/broadinstitute/sting/gatk/walkers/variantrecalibration/ApplyRecalibration.java b/public/java/src/org/broadinstitute/sting/gatk/walkers/variantrecalibration/ApplyRecalibration.java index 1d5493daf..af7e6e991 100755 --- a/public/java/src/org/broadinstitute/sting/gatk/walkers/variantrecalibration/ApplyRecalibration.java +++ b/public/java/src/org/broadinstitute/sting/gatk/walkers/variantrecalibration/ApplyRecalibration.java @@ -57,8 +57,7 @@ import java.util.*; * slightly lower quality level. * *
- * See the GATK wiki for a tutorial and example recalibration accuracy plots. - * http://www.broadinstitute.org/gsa/wiki/index.php/Variant_quality_score_recalibration + * See the GATK wiki for a tutorial and example recalibration accuracy plots. * *
@@ -77,7 +76,7 @@ import java.util.*; * java -Xmx3g -jar GenomeAnalysisTK.jar \ * -T ApplyRecalibration \ * -R reference/human_g1k_v37.fasta \ - * -input NA12878.HiSeq.WGS.bwa.cleaned.raw.hg19.subset.vcf \ + * -input NA12878.HiSeq.WGS.bwa.cleaned.raw.b37.subset.vcf \ * --ts_filter_level 99.0 \ * -tranchesFile path/to/output.tranches \ * -recalFile path/to/output.recal \ diff --git a/public/java/src/org/broadinstitute/sting/gatk/walkers/variantrecalibration/VariantRecalibrator.java b/public/java/src/org/broadinstitute/sting/gatk/walkers/variantrecalibration/VariantRecalibrator.java index f60a94a22..21e96b4a1 100755 --- a/public/java/src/org/broadinstitute/sting/gatk/walkers/variantrecalibration/VariantRecalibrator.java +++ b/public/java/src/org/broadinstitute/sting/gatk/walkers/variantrecalibration/VariantRecalibrator.java @@ -66,12 +66,14 @@ import java.util.*; * the log odds ratio of being a true variant versus being false under the trained Gaussian mixture model. * *
+ * NOTE: Please see our best practices wiki page for our recommendations on which annotations to use for specific project designs. + * + *
* NOTE: In order to create the model reporting plots Rscript needs to be in your environment PATH (this is the scripting version of R, not the interactive version). * See http://www.r-project.org for more info on how to download and install R. * *
- * See the GATK wiki for a tutorial and example recalibration accuracy plots. - * http://www.broadinstitute.org/gsa/wiki/index.php/Variant_quality_score_recalibration + * See the GATK wiki for a tutorial and example recalibration accuracy plots. * *
@@ -83,18 +85,18 @@ import java.util.*; *
* A recalibration table file in CSV format that is used by the ApplyRecalibration walker. *
- * A tranches file which shows various metrics of the recalibration callset as a function of making several slices through the data. + * A tranches file which shows various metrics of the recalibration callset as a function of making several slices through the data. * *
* java -Xmx4g -jar GenomeAnalysisTK.jar \ * -T VariantRecalibrator \ * -R reference/human_g1k_v37.fasta \ - * -input NA12878.HiSeq.WGS.bwa.cleaned.raw.hg19.subset.vcf \ + * -input NA12878.HiSeq.WGS.bwa.cleaned.raw.b37.subset.vcf \ * -resource:hapmap,known=false,training=true,truth=true,prior=15.0 hapmap_3.3.b37.sites.vcf \ * -resource:omni,known=false,training=true,truth=false,prior=12.0 1000G_omni2.5.b37.sites.vcf \ * -resource:dbsnp,known=true,training=false,truth=false,prior=8.0 dbsnp_132.b37.vcf \ - * -an QD -an HaplotypeScore -an MQRankSum -an ReadPosRankSum -an FS -an MQ \ + * -an QD -an HaplotypeScore -an MQRankSum -an ReadPosRankSum -an MQ \ * -recalFile path/to/output.recal \ * -tranchesFile path/to/output.tranches \ * -rscriptFile path/to/output.plots.R