From 6f2abd76df30a2b90f6f90bf538cc45c715ef3dd Mon Sep 17 00:00:00 2001 From: Mauricio Carneiro Date: Mon, 9 Jan 2012 15:31:18 -0500 Subject: [PATCH] Updating the MDCP with the new indel gold standard from Ryan. --- .../queue/qscripts/MethodsDevelopmentCallingPipeline.scala | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/public/scala/qscript/org/broadinstitute/sting/queue/qscripts/MethodsDevelopmentCallingPipeline.scala b/public/scala/qscript/org/broadinstitute/sting/queue/qscripts/MethodsDevelopmentCallingPipeline.scala index 67cafe99f..b50bf3d67 100755 --- a/public/scala/qscript/org/broadinstitute/sting/queue/qscripts/MethodsDevelopmentCallingPipeline.scala +++ b/public/scala/qscript/org/broadinstitute/sting/queue/qscripts/MethodsDevelopmentCallingPipeline.scala @@ -92,7 +92,7 @@ class MethodsDevelopmentCallingPipeline extends QScript { val training_1000G = "/humgen/1kg/processing/official_release/phase1/projectConsensus/phase1.wgs.projectConsensus.v2b.recal.highQuality.vcf" val badSites_1000G = "/humgen/1kg/processing/official_release/phase1/projectConsensus/phase1.wgs.projectConsensus.v2b.recal.terrible.vcf" val projectConsensus_1000G = "/humgen/1kg/processing/official_release/phase1/projectConsensus/ALL.wgs.projectConsensus_v2b.20101123.snps.sites.vcf" - val millsDevine_b37 = "/humgen/gsa-hpprojects/GATK/bundle/current/b37/Mills_Devine_2hit.indels.b37.sites.vcf" + val indelGoldStandardCallset = "/humgen/gsa-hpprojects/GATK/data/Comparisons/Unvalidated/GoldStandardIndel/gold.standard.indel.MillsAnd1000G.b37.vcf" val lowPass: Boolean = true val exome: Boolean = true @@ -300,7 +300,7 @@ class MethodsDevelopmentCallingPipeline extends QScript { class indelRecal(t: Target) extends VQSRBase(t) with UNIVERSAL_GATK_ARGS { this.input :+= t.rawIndelVCF - this.resource :+= new TaggedFile( millsDevine_b37, "known=true,training=true,truth=true,prior=12.0" ) + this.resource :+= new TaggedFile( indelGoldStandardCallset, "known=true,training=true,truth=true,prior=12.0" ) this.use_annotation ++= List("QD", "HaplotypeScore", "ReadPosRankSum", "FS") if(t.nSamples >= 10) this.use_annotation ++= List("InbreedingCoeff") // InbreedingCoeff is a population-wide statistic that requires at least 10 samples to calculate @@ -365,7 +365,7 @@ class MethodsDevelopmentCallingPipeline extends QScript { // 5b.) Indel Evaluation (OPTIONAL) class indelEvaluation(t: Target) extends EvalBase(t) { this.eval :+= t.recalibratedIndelVCF - this.comp :+= new TaggedFile(millsDevine_b37, "mills" ) + this.comp :+= new TaggedFile(indelGoldStandardCallset, "indelGS" ) this.noEV = true this.evalModule = List("CompOverlap", "CountVariants", "TiTvVariantEvaluator", "ValidationReport", "IndelStatistics") this.out = t.evalIndelFile