Skip to content

Commit

Permalink
[refs #119] Makes normal optional; var name change
Browse files Browse the repository at this point in the history
removed naming with "bam" since CRAM can also be input to this tool
  • Loading branch information
mark-welsh committed Sep 20, 2019
1 parent 50f8e7f commit 1dafd27
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions strelka/strelka2.wdl
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,10 @@ task Strelka2 {
File ? python
String strelka2

File tumor_bam
File tumor_bam_idx
File normal_bam
File normal_bam_idx
File tumor_input
File tumor_input_idx
File ? normal_input
File ? normal_input_idx

File bed_file_bgzip
File bed_file_idx
Expand All @@ -40,8 +40,8 @@ task Strelka2 {
done;

~{default="python" python} ~{strelka2} \
--normalBam ~{normal_bam} \
--tumorBam ~{tumor_bam} \
~{"--normalBam " + normal_input} \
--tumorBam ~{tumor_input} \
--referenceFasta ~{reference} \
--callRegions ~{bed_file_bgzip} \
~{userString} \
Expand Down

0 comments on commit 1dafd27

Please sign in to comment.