From 57f32e5972338a5393c978b651349a4fbd3052eb Mon Sep 17 00:00:00 2001 From: Jonathan Manning Date: Wed, 18 Oct 2023 08:57:12 +0100 Subject: [PATCH] Don't use contrasts directly from the input channel --- workflows/differentialabundance.nf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/workflows/differentialabundance.nf b/workflows/differentialabundance.nf index 72bccf88..10e5fb2d 100644 --- a/workflows/differentialabundance.nf +++ b/workflows/differentialabundance.nf @@ -515,7 +515,7 @@ workflow DIFFERENTIALABUNDANCE { ch_report_input_files = ch_all_matrices .map{ it.tail() } .map{it.flatten()} - .combine(ch_contrasts_file.map{it.tail()}) + .combine(VALIDATOR.out.contrasts.map{it.tail()}) .combine(CUSTOM_DUMPSOFTWAREVERSIONS.out.yml) .combine(ch_logo_file) .combine(ch_css_file)