Skip to content
Snippets Groups Projects
Commit f0d25e3c authored by Gervaise Henry's avatar Gervaise Henry :cowboy:
Browse files

Remove sub-folders from logsDir

parent c56354c1
Branches
Tags
3 merge requests!37v0.0.1,!13Develop,!12Resolve "Make scripts input files for processes"
Pipeline #5719 passed with stages
......@@ -29,7 +29,7 @@ derivaConfig = Channel.fromPath("${baseDir}/conf/replicate_export_config.json")
process getBag {
executor 'local'
tag "${repRID}"
publishDir "${logsDir}/getBag", mode: 'copy', pattern: "${repRID}.getBag.err"
publishDir "${logsDir}", mode: 'copy', pattern: "${repRID}.getBag.err"
input:
path credential, stageAs: 'credential.json' from deriva
......@@ -55,7 +55,7 @@ process getBag {
*/
process getData {
tag "${repRID}"
publishDir "${logsDir}/getData", mode: 'copy', pattern: "${repRID}.getData.err"
publishDir "${logsDir}", mode: 'copy', pattern: "${repRID}.getData.err"
input:
executor 'local'
......@@ -91,7 +91,7 @@ process getData {
*/
process trimData {
tag "${repRID}"
publishDir "${logsDir}/trimData", mode: 'copy', pattern: "\${repRID}.trimData.*"
publishDir "${logsDir}", mode: 'copy', pattern: "\${repRID}.trimData.*"
input:
file(fastq) from fastqs
......
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