From b8564cfe196813adea95c0416989f641579d1f13 Mon Sep 17 00:00:00 2001 From: Venkat Malladi <venkat.malladi@utsouthwestern.edu> Date: Wed, 25 Jul 2018 06:52:01 -0500 Subject: [PATCH] Fix syntax --- workflow/main.nf | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/workflow/main.nf b/workflow/main.nf index 188d643..d227d57 100644 --- a/workflow/main.nf +++ b/workflow/main.nf @@ -405,7 +405,8 @@ process peakAnnotation { } // Define channel to find number of unique experiments -peaksDesign = uniqueExperiments.size() +peaksDesign = uniqueExperiments.readLines().each { println it } + // Calculate Differential Binding Activity process diffPeaks { -- GitLab