Skip to content

Commit

Permalink
Add BAI placeholder in read processing out channel
Browse files Browse the repository at this point in the history
  • Loading branch information
scwatts committed Jun 6, 2024
1 parent 67275f5 commit e85c081
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 e85c081

Please sign in to comment.