Switched arguments from short name to long name.

git-svn-id: file:///humgen/gsa-scr1/gsa-engineering/svn_contents/trunk@5873 348d0f76-0448-11de-a6fe-93d51630548a
This commit is contained in:
kshakir 2011-05-25 17:24:56 +00:00
parent 6ec3dd0f8c
commit 9d8c963fcc
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.KEEP_IF_ANY_UNFILTERED
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.KEEP_IF_ANY_UNFILTERED
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"