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
1 merge request!20Resolve "Use SampleIds/ Experiment Id as file names throughtout pipeline"
......@@ -395,7 +395,7 @@ process consensusPeaks {
// Annotate Peaks
process peakAnnotation {
publishDir "$baseDir/output/${task.process}", mode: 'copy'
publishDir "$outDir/${task.process}", mode: 'copy'
input:
......@@ -416,7 +416,7 @@ process peakAnnotation {
// Motif Search Peaks
process motifSearch {
publishDir "$baseDir/output/${task.process}", mode: 'copy'
publishDir "$outDir/${task.process}", mode: 'copy'
input:
......@@ -441,7 +441,7 @@ uniqueExperimentsList = uniqueExperiments
// Calculate Differential Binding Activity
process diffPeaks {
publishDir "$baseDir/output/${task.process}", mode: 'copy'
publishDir "$outDir/${task.process}", mode: 'copy'
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