Skip to content

Commit

Permalink
Don't wrap diamond_args in quotes on WDL expansion when run locally
Browse files Browse the repository at this point in the history
  • Loading branch information
lvreynoso committed May 3, 2024
1 parent ca8e5ae commit ffb4a0f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion workflows/long-read-mngs/run.wdl
Original file line number Diff line number Diff line change
Expand Up @@ -612,7 +612,7 @@ task RunNRAlignment {
if [[ "~{run_locally}" == true ]]; then
diamond makedb --in "~{local_diamond_index}" -d reference
diamond blastx -d reference -q "~{assembled_reads_fa}" -o "diamond.m8" "~{diamond_args}"
diamond blastx -d reference -q "~{assembled_reads_fa}" -o "diamond.m8" ~{diamond_args}
else
python3 <<CODE
import os
Expand Down

0 comments on commit ffb4a0f

Please sign in to comment.