From f4e07f44dea7c459ba251c077865193d2ddbfd7f Mon Sep 17 00:00:00 2001 From: Venkat Malladi <venkat.malladi@utsouthwestern.edu> Date: Wed, 25 Jul 2018 06:32:38 -0500 Subject: [PATCH] Fix readlines. --- workflow/main.nf | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/workflow/main.nf b/workflow/main.nf index a48c2f1..e29b7ef 100644 --- a/workflow/main.nf +++ b/workflow/main.nf @@ -405,7 +405,8 @@ process peakAnnotation { } // Define channel to find number of unique experiments -peaksDesign = Channel from(uniqueExperiments.readLines()) +peaksDesign = Channel + .from(uniqueExperiments.readLines()) .count() // Calculate Differential Binding Activity -- GitLab