From 554d2b078fc3bbbea8307b95be951c39f0c21092 Mon Sep 17 00:00:00 2001 From: mherbett <marion.herbette@ens-lyon.fr> Date: Wed, 6 Jun 2018 13:12:53 +0000 Subject: [PATCH] fasta_sample : add mode:copy --- src/fasta_sampler.nf | 1 + 1 file changed, 1 insertion(+) diff --git a/src/fasta_sampler.nf b/src/fasta_sampler.nf index 4197b8b..9dfcb12 100644 --- a/src/fasta_sampler.nf +++ b/src/fasta_sampler.nf @@ -2,6 +2,7 @@ Channel .fromPath( "data/tiny_dataset/fasta/*.fasta" ) .set { fasta_file } process sample_fasta { + publishDir "results/sampling/", mode: 'copy' input: file fasta from fasta_file -- GitLab