Skip to content

Commit

Permalink
fix: error in collectFile
Browse files Browse the repository at this point in the history
  • Loading branch information
kelly-sovacool committed Dec 6, 2023
1 parent 9a9d696 commit c8c384a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion subworkflows/local/diff/main.nf
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ workflow DIFF {
ch_peaks_contrasts | PREP_DIFFBIND
PREP_DIFFBIND.out.csv
.collectFile(storeDir: "${params.outdir}/diffbind/contrasts") { meta, row ->
[ "${meta.contrast}.${meta.tool}.csv", row + '\n' ]
[ "${meta.contrast}.${meta.tool}.csv", row ]
}
emit:
diff_peaks = bam_peaks
Expand Down

0 comments on commit c8c384a

Please sign in to comment.