Skip to content

Commit

Permalink
Fix addition of id
Browse files Browse the repository at this point in the history
  • Loading branch information
apeltzer committed Apr 17, 2024
1 parent bb96ff1 commit accc707
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion subworkflows/local/mirtrace.nf
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ workflow MIRTRACE {
ch_mirtrace_config =
reads.map { adapter, ids, reads -> [ids,reads]}
.transpose()
.collectFile { id, path -> "./${path.getFileName().toString()}",id,,"${params.phred_offset}\n" } // operations need a channel, so, should be outside the module
.collectFile { id, path -> "./${path.getFileName().toString()},${id},,${params.phred_offset}\n" } // operations need a channel, so, should be outside the module

MIRTRACE_RUN (
reads,
Expand Down

0 comments on commit accc707

Please sign in to comment.