Skip to content

Commit

Permalink
fix(wdl): Enable SAM output for minimap2
Browse files Browse the repository at this point in the history
  • Loading branch information
lrvdijk committed Jan 9, 2025
1 parent f0278e2 commit 1252566
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion wdl/tasks/alignment/minimap2.wdl
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ task Minimap2WithIx {
command <<<
set -euxo pipefail
minimap2 -t ~{num_cpu - 1} ~{extra_params} -d ~{ref_mmi} ~{query_fasta} \
minimap2 -t ~{num_cpu - 1} ~{extra_params} -a -d ~{ref_mmi} ~{query_fasta} \
| samtools sort -Obam -o ~{out_prefix}.bam
>>>
Expand Down

0 comments on commit 1252566

Please sign in to comment.