Skip to content

Commit

Permalink
fix: bwa-mem options usage
Browse files Browse the repository at this point in the history
  • Loading branch information
kelly-sovacool committed Oct 24, 2023
1 parent 432ebfc commit ca4f84b
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion modules/CCBR/bwa/mem/main.nf
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,11 @@ process BWA_MEM {
INDEX=`find -L ./ -name "*.amb" | sed 's/\\.amb\$//'`
bwa mem -t ${task.cpus} \$INDEX ${fastq} -o \$TMP/align.bam
bwa mem \\
-t ${task.cpus} \\
-o \$TMP/align.bam \\
\$INDEX \\
${fastq}
samtools sort \\
-@ ${task.cpus} \\
Expand Down

0 comments on commit ca4f84b

Please sign in to comment.