Skip to content

Commit

Permalink
Fixing optional arg.
Browse files Browse the repository at this point in the history
  • Loading branch information
jonn-smith committed Dec 10, 2024
1 parent 552c1c9 commit 135f872
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion wdl/tasks/Utility/SRUtils.wdl
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ task BamToFq {
RuntimeAttr? runtime_attr_override
}
String ref_arg = if defined(reference_fasta) then " --reference " + select_first([reference_fasta]) else ""
String ref_arg = if defined(reference_fasta) then " --reference ~{reference_fasta}" else ""
Int disk_size = 1 + 4*ceil(size(bam, "GB"))
Expand Down

0 comments on commit 135f872

Please sign in to comment.