Skip to content

Commit

Permalink
small error
Browse files Browse the repository at this point in the history
  • Loading branch information
DOH-JDJ0303 committed Feb 6, 2024
1 parent 05aa846 commit 25e3da1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion subworkflows/local/classify.nf
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ workflow CLASSIFY {
.ref_list
.splitCsv(header: false, elem: 1)
.map{ meta, ref -> [ meta, file(ref.get(0)).baseName ] }
.join(ch_refs.map{ meta, ref -> [ meta.id, params.mode == "accurate" ? file(ref.get(0)).baseName : meta.id, ref] }, by: 1)
.combine(ch_refs.map{ meta, ref -> [ meta.id, params.mode == "accurate" ? file(ref).baseName : meta.id, ref ] }, by: 1)
.map{ index, meta, ref_id, ref -> [ meta, ref_id, ref ] }
.set{ ch_ref_list }

Expand Down

0 comments on commit 25e3da1

Please sign in to comment.