diff --git a/scala/qscript/playground/HybridSelectionPipeline.scala b/scala/qscript/playground/HybridSelectionPipeline.scala index 9fce689e5..6bb9b4eb7 100755 --- a/scala/qscript/playground/HybridSelectionPipeline.scala +++ b/scala/qscript/playground/HybridSelectionPipeline.scala @@ -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.variantmergeoption = org.broadinstitute.sting.gatk.contexts.variantcontext.VariantContextUtils.VariantMergeType.UNION + combineSNPsIndels.filteredRecordsMergeType = org.broadinstitute.sting.gatk.contexts.variantcontext.VariantContextUtils.FilteredRecordMergeType.UNION combineSNPsIndels.assumeIdenticalSamples = true combineSNPsIndels.out = projectBase + ".unannotated.vcf" combineSNPsIndels.jobOutputFile = combineSNPsIndels.out + ".out" diff --git a/scala/qscript/playground/WholeGenomePipeline.scala b/scala/qscript/playground/WholeGenomePipeline.scala index 8227150df..0d0ebbf60 100644 --- a/scala/qscript/playground/WholeGenomePipeline.scala +++ b/scala/qscript/playground/WholeGenomePipeline.scala @@ -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.variantmergeoption = org.broadinstitute.sting.gatk.contexts.variantcontext.VariantContextUtils.VariantMergeType.UNION + combineChunks.filteredRecordsMergeType = org.broadinstitute.sting.gatk.contexts.variantcontext.VariantContextUtils.FilteredRecordMergeType.UNION combineChunks.assumeIdenticalSamples = true combineChunks.out = projectBase + ".unfiltered.vcf" combineChunks.jobOutputFile = combineChunks.out + ".out"