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

Fix channel.

parent e3a0a043
Branches
Tags
No related merge requests found
......@@ -384,6 +384,11 @@ process consensusPeaks {
}
// Define channel to find number of unique experiments
noUniqueExperiments = Channel
.from(uniqueExperiments.readLines())
.size()
// Annotate Peaks
process peakAnnotation {
......@@ -405,9 +410,6 @@ process peakAnnotation {
}
// Define channel to find number of unique experiments
noUniqueExperiments = uniqueExperiments
.readLines().size()
// Calculate Differential Binding Activity
process diffPeaks {
......
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