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

Fix assignment for multiple experiments.

parent df38a05a
No related merge requests found
......@@ -320,7 +320,7 @@ experimentRows = experimentPoolObjs
.collect()
.splitCsv(sep:'\t', header: true)
.flatten()
.map { row -> [ row.sample_id, row.tag_align, row.xcor, row.experiment_id, row.biosample, row.factor, row.treatment, row.replicate, row.control_id, row.control_tag_align] }
.map { row -> [ row[0], row[1], row[2], row[3], row[4], row[5], row[6], row[7], row[8], row[8]] }
// Call Peaks using MACS
process callPeaksMACS {
......
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