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

Test for new unique experiment determination.

parent 92096435
1 merge request!18Resolve "Add in current chip-analysis functionality."
Pipeline #2722 failed with stages
in 10 hours, 1 minute, and 44 seconds
......@@ -429,7 +429,12 @@ process motifSearch {
}
// Define channel to find number of unique experiments
noUniqueExperiments = uniqueExperiments.splitCsv(sep: '\t', header: true).toList()
noUniqueExperiments = uniqueExperiments
.splitCsv(sep: '\t', header: true)
.toList()
.count()
println noUniqueExperiments
// Calculate Differential Binding Activity
process diffPeaks {
......@@ -448,7 +453,7 @@ process diffPeaks {
file 'normcount_peaksets.txt' into normCountPeaks
when:
noUniqueExperiments.size() > 1
noUniqueExperiments > 1
script:
......
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