Skip to content

Commit

Permalink
Bugfix: added missing refrence parameter
Browse files Browse the repository at this point in the history
  • Loading branch information
gipohl committed Feb 6, 2024
1 parent 00ff6ab commit 6daa929
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion main.nf
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ workflow {
}
if (params.algorithm == "aln" && !params.inception) {
BWA_ALN(trimmed_fastqs,params.reference)
BWA_SAMSE(BWA_ALN.out.alignment_output)
BWA_SAMSE(BWA_ALN.out.alignment_output,params.reference)
output_bams = BWA_SAMSE.out.bams
}
else if (params.algorithm == "mem") {
Expand Down

0 comments on commit 6daa929

Please sign in to comment.