Skip to content
Snippets Groups Projects
Verified Commit b7ed141a authored by Laurent Modolo's avatar Laurent Modolo
Browse files

danpos: rm pattern selection for publishDir

parent 55687f39
No related branches found
No related tags found
No related merge requests found
......@@ -13,7 +13,7 @@ process dpos_bam {
label "big_mem_mono_cpus"
tag "$file_id"
if (params.dpos_out != "") {
publishDir "results/${params.dpos_out}", mode: 'copy', pattern: "*/*"
publishDir "results/${params.dpos_out}", mode: 'copy'
}
input:
......@@ -67,7 +67,7 @@ process dpos_wig {
label "big_mem_mono_cpus"
tag "$file_id"
if (params.dpos_out != "") {
publishDir "results/${params.dpos_out}", mode: 'copy', pattern: "*/*"
publishDir "results/${params.dpos_out}", mode: 'copy'
}
input:
......@@ -126,7 +126,7 @@ process dpos_wigvswig {
label "big_mem_mono_cpus"
tag "$file_id"
if (params.dpos_out != "") {
publishDir "results/${params.dpos_out}", mode: 'copy', pattern: "*/*"
publishDir "results/${params.dpos_out}", mode: 'copy'
}
input:
......@@ -172,8 +172,8 @@ process dpeak_bam {
container = "${container_url}"
label "big_mem_mono_cpus"
tag "$file_id"
if (params.dpeak_out != "") {
publishDir "results/${params.dpeak_out}", mode: 'copy', pattern: "*/*"
if (params.dpeak_out != "") {:
publishDir "results/${params.dpeak_out}", mode: 'copy'
}
input:
......@@ -228,7 +228,7 @@ process dpeak_wig {
label "big_mem_mono_cpus"
tag "$file_id"
if (params.dpeak_out != "") {
publishDir "results/${params.dpeak_out}", mode: 'copy', pattern: "*/*"
publishDir "results/${params.dpeak_out}", mode: 'copy'
}
input:
......@@ -288,7 +288,7 @@ process dpeak_wigvswig {
label "big_mem_mono_cpus"
tag "$file_id"
if (params.dpeak_out != "") {
publishDir "results/${params.dpeak_out}", mode: 'copy', pattern: "*/*"
publishDir "results/${params.dpeak_out}", mode: 'copy'
}
input:
......
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