Skip to content

Commit

Permalink
split MNPs in M2 pon WDL (#5706)
Browse files Browse the repository at this point in the history
  • Loading branch information
davidbenjamin authored Feb 22, 2019
1 parent 1894de3 commit 226f6d7
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion scripts/mutect2_wdl/mutect2_pon.wdl
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@
# normal_bams: arrays of normal bams
# scatter_count: number of parallel jobs when scattering over intervals
# pon_name: the resulting panel of normals is {pon_name}.vcf
# m2_extra_args: additional command line parameters for Mutect2. This should not involve --max-mnp-distance,
# which the wdl hard-codes to 0 because GenpmicsDBImport can't handle MNPs
import "mutect2_nio.wdl" as m2
workflow Mutect2_Panel {
Expand Down Expand Up @@ -44,7 +46,7 @@ workflow Mutect2_Panel {
tumor_bam = normal_bam.left,
tumor_bai = normal_bam.right,
scatter_count = scatter_count,
m2_extra_args = m2_extra_args,
m2_extra_args = select_first([m2_extra_args, ""]) + "--max-mnp-distance 0",
gatk_override = gatk_override,
gatk_docker = gatk_docker,
preemptible_attempts = preemptible_attempts,
Expand Down

0 comments on commit 226f6d7

Please sign in to comment.