Actually use the right parameter

git-svn-id: file:///humgen/gsa-scr1/gsa-engineering/svn_contents/trunk@5864 348d0f76-0448-11de-a6fe-93d51630548a
This commit is contained in:
depristo 2011-05-24 12:09:01 +00:00
parent 06486c134a
commit 0448ef28d3
2 changed files with 2 additions and 2 deletions

View File

@ -134,7 +134,7 @@ class HybridSelectionPipeline extends QScript {
combineSNPsIndels.rodBind :+= RodBind("indels", "VCF", filterIndels.out)
combineSNPsIndels.rodBind :+= RodBind("snps", "VCF", filterSNPs.out)
combineSNPsIndels.rod_priority_list = "indels,snps"
combineSNPsIndels.filteredRecordsMergeType = org.broadinstitute.sting.gatk.contexts.variantcontext.VariantContextUtils.FilteredRecordMergeType.UNION
combineSNPsIndels.filteredRecordsMergeType = org.broadinstitute.sting.gatk.contexts.variantcontext.VariantContextUtils.FilteredRecordMergeType.KEEP_IF_ANY_UNFILTERED
combineSNPsIndels.assumeIdenticalSamples = true
combineSNPsIndels.out = projectBase + ".unannotated.vcf"
combineSNPsIndels.jobOutputFile = combineSNPsIndels.out + ".out"

View File

@ -158,7 +158,7 @@ class WholeGenomePipeline extends QScript {
val combineChunks = new CombineVariants with CommandLineGATKArgs
combineChunks.rodBind = chunkVcfs.zipWithIndex.map { case (vcf, index) => RodBind("input"+index, "VCF", vcf) }
combineChunks.rod_priority_list = chunkVcfs.zipWithIndex.map { case (vcf, index) => "input"+index }.mkString(",")
combineChunks.filteredRecordsMergeType = org.broadinstitute.sting.gatk.contexts.variantcontext.VariantContextUtils.FilteredRecordMergeType.UNION
combineChunks.filteredRecordsMergeType = org.broadinstitute.sting.gatk.contexts.variantcontext.VariantContextUtils.FilteredRecordMergeType.KEEP_IF_ANY_UNFILTERED
combineChunks.assumeIdenticalSamples = true
combineChunks.out = projectBase + ".unfiltered.vcf"
combineChunks.jobOutputFile = combineChunks.out + ".out"