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

Fix output directory. #28.

parent 4bf3f4ac
Branches
Tags
No related merge requests found
...@@ -395,7 +395,7 @@ process consensusPeaks { ...@@ -395,7 +395,7 @@ process consensusPeaks {
// Annotate Peaks // Annotate Peaks
process peakAnnotation { process peakAnnotation {
publishDir "$baseDir/output/${task.process}", mode: 'copy' publishDir "$outDir/${task.process}", mode: 'copy'
input: input:
...@@ -416,7 +416,7 @@ process peakAnnotation { ...@@ -416,7 +416,7 @@ process peakAnnotation {
// Motif Search Peaks // Motif Search Peaks
process motifSearch { process motifSearch {
publishDir "$baseDir/output/${task.process}", mode: 'copy' publishDir "$outDir/${task.process}", mode: 'copy'
input: input:
...@@ -441,7 +441,7 @@ uniqueExperimentsList = uniqueExperiments ...@@ -441,7 +441,7 @@ uniqueExperimentsList = uniqueExperiments
// Calculate Differential Binding Activity // Calculate Differential Binding Activity
process diffPeaks { process diffPeaks {
publishDir "$baseDir/output/${task.process}", mode: 'copy' publishDir "$outDir/${task.process}", mode: 'copy'
input: input:
......
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