Skip to content
Snippets Groups Projects
Commit 03ab1966 authored by elabaron's avatar elabaron
Browse files

sampler_fasta.nf : add sample name in the output

parent d1947a2c
No related branches found
No related tags found
1 merge request!8Master
......@@ -9,10 +9,10 @@ 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.
Finish editing this message first!
Please register or to comment