diff --git a/src/fasta_sampler.nf b/src/fasta_sampler.nf
index 4197b8b6b5e691e4b1737ac06111a69c334fbd31..e3d652056d26bb95ec563dc675271fa129e25618 100644
--- a/src/fasta_sampler.nf
+++ b/src/fasta_sampler.nf
@@ -1,7 +1,10 @@
 Channel
   .fromPath( "data/tiny_dataset/fasta/*.fasta" )
   .set { fasta_file }
+
 process sample_fasta {
+  publishDir "results/sampling/", mode: 'copy'
+  
   input:
 file fasta from fasta_file