add nextflow d30e48d
This commit is contained in:
13
nextflow/docs/snippets/process-stdout.nf
Normal file
13
nextflow/docs/snippets/process-stdout.nf
Normal file
@@ -0,0 +1,13 @@
|
||||
process hello {
|
||||
output:
|
||||
stdout
|
||||
|
||||
script:
|
||||
"""
|
||||
echo "Hello world!"
|
||||
"""
|
||||
}
|
||||
|
||||
workflow {
|
||||
hello | view { message -> "I say... $message" }
|
||||
}
|
||||
Reference in New Issue
Block a user