From e85c08176a137ae49a19095aa52fe0a1316f8a60 Mon Sep 17 00:00:00 2001 From: Stephen Watts Date: Thu, 6 Jun 2024 13:58:31 +1000 Subject: [PATCH] Add BAI placeholder in read processing out channel --- workflows/targeted.nf | 4 ++-- workflows/wgts.nf | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/workflows/targeted.nf b/workflows/targeted.nf index c6193c2f..6c056ab2 100644 --- a/workflows/targeted.nf +++ b/workflows/targeted.nf @@ -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, [], []] } } diff --git a/workflows/wgts.nf b/workflows/wgts.nf index 188ff68c..27e729ce 100644 --- a/workflows/wgts.nf +++ b/workflows/wgts.nf @@ -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, [], []] } }