Skip to content

Commit

Permalink
Specify optional input in create_index_file
Browse files Browse the repository at this point in the history
Otherwise, it shows up in the Terra interface even if it's not an
input to the workflow itself, just the task.
  • Loading branch information
amstilp committed Nov 20, 2024
1 parent 0bcd03f commit c423794
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion bcftools_merge.wdl
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,8 @@ workflow bcftools_merge {

scatter (vcf_file in pair.left) {
call create_index_file {
input: vcf_file = vcf_file
input: vcf_file = vcf_file,
output_prefix = "index"
}
}

Expand Down

0 comments on commit c423794

Please sign in to comment.