Skip to content
Snippets Groups Projects
Commit 561414d2 authored by Moustakas's avatar Moustakas
Browse files

Fix output directory

parent 20eaeedf
No related branches found
No related tags found
2 merge requests!39Macs2,!38Macs2
......@@ -12,13 +12,13 @@ task PeakCalling {
${preCommand}
macs2 callpeak \
--treatment ${sep = ' ' bamFiles} \
--outdir ${outDir} \
--outdir ${outDir} + "/macs2/" \
--name ${sampleName} \
${true='--nomodel' false='' nomodel}
}
output {
File peakFile = outDir + "/" + sampleName + "/macs2/" + sampleName + "_peaks.narrowPeak"
File peakFile = outDir + "/macs2/" + sampleName + "_peaks.narrowPeak"
}
runtime {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment