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 { ...@@ -13,7 +13,7 @@ process dpos_bam {
label "big_mem_mono_cpus" label "big_mem_mono_cpus"
tag "$file_id" tag "$file_id"
if (params.dpos_out != "") { if (params.dpos_out != "") {
publishDir "results/${params.dpos_out}", mode: 'copy', pattern: "*/*" publishDir "results/${params.dpos_out}", mode: 'copy'
} }
input: input:
...@@ -67,7 +67,7 @@ process dpos_wig { ...@@ -67,7 +67,7 @@ process dpos_wig {
label "big_mem_mono_cpus" label "big_mem_mono_cpus"
tag "$file_id" tag "$file_id"
if (params.dpos_out != "") { if (params.dpos_out != "") {
publishDir "results/${params.dpos_out}", mode: 'copy', pattern: "*/*" publishDir "results/${params.dpos_out}", mode: 'copy'
} }
input: input:
...@@ -126,7 +126,7 @@ process dpos_wigvswig { ...@@ -126,7 +126,7 @@ process dpos_wigvswig {
label "big_mem_mono_cpus" label "big_mem_mono_cpus"
tag "$file_id" tag "$file_id"
if (params.dpos_out != "") { if (params.dpos_out != "") {
publishDir "results/${params.dpos_out}", mode: 'copy', pattern: "*/*" publishDir "results/${params.dpos_out}", mode: 'copy'
} }
input: input:
...@@ -172,8 +172,8 @@ process dpeak_bam { ...@@ -172,8 +172,8 @@ process dpeak_bam {
container = "${container_url}" container = "${container_url}"
label "big_mem_mono_cpus" label "big_mem_mono_cpus"
tag "$file_id" tag "$file_id"
if (params.dpeak_out != "") { if (params.dpeak_out != "") {:
publishDir "results/${params.dpeak_out}", mode: 'copy', pattern: "*/*" publishDir "results/${params.dpeak_out}", mode: 'copy'
} }
input: input:
...@@ -228,7 +228,7 @@ process dpeak_wig { ...@@ -228,7 +228,7 @@ process dpeak_wig {
label "big_mem_mono_cpus" label "big_mem_mono_cpus"
tag "$file_id" tag "$file_id"
if (params.dpeak_out != "") { if (params.dpeak_out != "") {
publishDir "results/${params.dpeak_out}", mode: 'copy', pattern: "*/*" publishDir "results/${params.dpeak_out}", mode: 'copy'
} }
input: input:
...@@ -288,7 +288,7 @@ process dpeak_wigvswig { ...@@ -288,7 +288,7 @@ process dpeak_wigvswig {
label "big_mem_mono_cpus" label "big_mem_mono_cpus"
tag "$file_id" tag "$file_id"
if (params.dpeak_out != "") { if (params.dpeak_out != "") {
publishDir "results/${params.dpeak_out}", mode: 'copy', pattern: "*/*" publishDir "results/${params.dpeak_out}", mode: 'copy'
} }
input: input:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment