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

Set publishData mode to copy

parent 850b8d68
Branches
Tags
3 merge requests!37v0.0.1,!13Develop,!12Resolve "Make scripts input files for processes"
Pipeline #5718 passed with stages
in 27 minutes and 6 seconds
......@@ -15,7 +15,6 @@ deriva = Channel
bdbag = Channel
.fromPath(params.bdbag)
.ifEmpty { exit 1, "deriva cookie file for bdbag not found: ${params.bdbag}" }
repRID = params.repRID
outDir = params.outDir
......@@ -30,7 +29,7 @@ derivaConfig = Channel.fromPath("${baseDir}/conf/replicate_export_config.json")
process getBag {
executor 'local'
tag "${repRID}"
publishDir "${logsDir}/getBag", mode: 'symlink', pattern: "${repRID}.getBag.err"
publishDir "${logsDir}/getBag", mode: 'copy', pattern: "${repRID}.getBag.err"
input:
path credential, stageAs: 'credential.json' from deriva
......@@ -56,7 +55,7 @@ process getBag {
*/
process getData {
tag "${repRID}"
publishDir "${logsDir}/getData", mode: 'symlink', pattern: "${repRID}.getData.err"
publishDir "${logsDir}/getData", mode: 'copy', pattern: "${repRID}.getData.err"
input:
executor 'local'
......@@ -92,7 +91,7 @@ process getData {
*/
process trimData {
tag "${repRID}"
publishDir "${logsDir}/trimData", mode: 'symlink', pattern: "\${repRID}.trimData.*"
publishDir "${logsDir}/trimData", 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