Skip to content

Commit

Permalink
Merge pull request #56 from nf-core/fix-read-processing-optional-channel
Browse files Browse the repository at this point in the history
Correct read processing subworkflow optional output channel
  • Loading branch information
scwatts authored Jun 6, 2024
2 parents 67275f5 + e85c081 commit c9fa9de
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions workflows/targeted.nf
Original file line number Diff line number Diff line change
Expand Up @@ -170,8 +170,8 @@ workflow TARGETED {

} else {

ch_process_dna_tumor_out = ch_inputs.map { meta -> [meta, []] }
ch_process_dna_normal_out = ch_inputs.map { meta -> [meta, []] }
ch_process_dna_tumor_out = ch_inputs.map { meta -> [meta, [], []] }
ch_process_dna_normal_out = ch_inputs.map { meta -> [meta, [], []] }

}

Expand Down
4 changes: 2 additions & 2 deletions workflows/wgts.nf
Original file line number Diff line number Diff line change
Expand Up @@ -176,8 +176,8 @@ workflow WGTS {

} else {

ch_process_dna_tumor_out = ch_inputs.map { meta -> [meta, []] }
ch_process_dna_normal_out = ch_inputs.map { meta -> [meta, []] }
ch_process_dna_tumor_out = ch_inputs.map { meta -> [meta, [], []] }
ch_process_dna_normal_out = ch_inputs.map { meta -> [meta, [], []] }

}

Expand Down

0 comments on commit c9fa9de

Please sign in to comment.