Skip to content

Commit

Permalink
Fix string interpolation for short read alignment run locally
Browse files Browse the repository at this point in the history
  • Loading branch information
lvreynoso committed May 8, 2024
1 parent 72ca008 commit 4b64746
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion workflows/short-read-mngs/non_host_alignment.wdl
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ task RunAlignment_diamond_out {
set -euxo pipefail
if [[ "~{run_locally}" == true ]]; then
diamond makedb --in "~{local_diamond_index}" -d reference
diamond blastx -d reference -q "~{sep=' ' fastas}" -o "rapsearch2.m8" "--~{diamond_args}"
diamond blastx -d reference -q "~{sep=' ' fastas}" -o "rapsearch2.m8" "~{diamond_args}"
else
python3 <<CODE
import os
Expand Down

0 comments on commit 4b64746

Please sign in to comment.