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

add publishDir

parent 786e69de
Branches
Tags
No related merge requests found
...@@ -21,6 +21,7 @@ Channel ...@@ -21,6 +21,7 @@ Channel
process trimming { process trimming {
tag "$pair_id" tag "$pair_id"
cpus 4 cpus 4
publishDir "results/fastq/trimming/", mode: 'copy'
input: input:
set pair_id, file(reads) from fastq_files set pair_id, file(reads) from fastq_files
...@@ -53,6 +54,7 @@ Channel ...@@ -53,6 +54,7 @@ Channel
process trimming { process trimming {
tag "$reads.baseName" tag "$reads.baseName"
cpus 4 cpus 4
publishDir "results/fastq/trimming/", mode: 'copy'
input: input:
file reads from fastq_files file reads from fastq_files
......
...@@ -21,6 +21,7 @@ Channel ...@@ -21,6 +21,7 @@ Channel
process adaptor_removal { process adaptor_removal {
tag "$pair_id" tag "$pair_id"
publishDir "results/fastq/adaptor_removal/", mode: 'copy'
input: input:
set pair_id, file(reads) from fastq_files set pair_id, file(reads) from fastq_files
...@@ -51,6 +52,7 @@ Channel ...@@ -51,6 +52,7 @@ Channel
process adaptor_removal { process adaptor_removal {
tag "$reads.baseName" tag "$reads.baseName"
publishDir "results/fastq/adaptor_removal/", mode: 'copy'
input: input:
file reads from fastq_files file reads from fastq_files
...@@ -83,6 +85,7 @@ Channel ...@@ -83,6 +85,7 @@ Channel
process trimming { process trimming {
tag "$pair_id" tag "$pair_id"
publishDir "results/fastq/trimming/", mode: 'copy'
input: input:
set pair_id, file(reads) from fastq_files set pair_id, file(reads) from fastq_files
...@@ -113,6 +116,7 @@ Channel ...@@ -113,6 +116,7 @@ Channel
process trimming { process trimming {
tag "$reads.baseName" tag "$reads.baseName"
publishDir "results/fastq/trimming/", mode: 'copy'
input: input:
file reads from fastq_files file reads from fastq_files
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment