From cefdf5a9944f9525494512db99db3d852408e9e5 Mon Sep 17 00:00:00 2001 From: jshapiro <julie.shapiro@ens-lyon.fr> Date: Fri, 13 Dec 2019 15:03:15 +0100 Subject: [PATCH] added publishDir to fasta_sampler.nf --- src/fasta_sampler.nf | 1 + 1 file changed, 1 insertion(+) diff --git a/src/fasta_sampler.nf b/src/fasta_sampler.nf index 6fb67de..79b4daf 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