Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
nextflow
hello
Commits
b2d44803
Commit
b2d44803
authored
Aug 05, 2014
by
Paolo Di Tommaso
Browse files
first commit
parents
Changes
3
Expand all
Hide whitespace changes
Inline
Side-by-side
LICENSE
0 → 100644
View file @
b2d44803
This diff is collapsed.
Click to expand it.
README.md
0 → 100644
View file @
b2d44803
Hello world script
====================
A simple script showing the basic Hello World! example for the Nextflow framework.
main.nf
0 → 100644
View file @
b2d44803
#!/usr/bin/env nextflow
echo true
cheers = Channel.from 'Bojour', 'Ciao', 'Hello', 'Hola'
process sayHello {
input:
val x from cheers
"""
echo '$x world!'
"""
}
Write
Preview
Markdown
is supported
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