Skip to content
Snippets Groups Projects
Commit 12c06ef0 authored by jshapiro's avatar jshapiro
Browse files

added process to fasta_sampler.nf

parent 1f0fdbe0
No related branches found
No related tags found
No related merge requests found
Channel
.fromPath( "data/tiny_dataset/fasta/*.fasta" )
.set { fasta_file }
process sample_fasta {
input:
file fasta from fasta_file
output:
file "sample.fasta" into fasta_sample
script:
"""
head ${fasta} > sample.fasta
"""
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment