Skip to content
Snippets Groups Projects
Commit b4197e12 authored by gbenoit's avatar gbenoit
Browse files

fasta_sampler.nf : modify output name

parent 66f793c8
No related branches found
No related tags found
No related merge requests found
......@@ -9,10 +9,11 @@ process sample_fasta {
file fasta from fasta_file
output:
file "sample.fasta" into fasta_sample
file "*_sample.fasta" into fasta_sample
script:
"""
head ${fasta} > sample.fasta
head ${fasta} > ${fasta.baseName}_sample.fasta
"""
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment