Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
nextflow
read-quality-control
Commits
e7e81203
Commit
e7e81203
authored
Aug 29, 2018
by
Lukas Jelonek
Browse files
Add s3 test workflow with wildcards
parents
Changes
1
Hide whitespace changes
Inline
Side-by-side
main.nf
0 → 100755
View file @
e7e81203
#!/usr/bin/env nextflow
params.location = 's3://lj-nf-fastq-testdata/data/*.fastq.gz'
Channel.fromPath(params.location).set{ch_fastqs}
process debug_print_file_name {
echo true
input:
file f from ch_fastqs
script:
"""
echo $f
"""
}
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment