Skip to content
Snippets Groups Projects
Commit f4e07f44 authored by Venkat Malladi's avatar Venkat Malladi
Browse files

Fix readlines.

parent 2ede9219
Branches
Tags
No related merge requests found
......@@ -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
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment