add nextflow d30e48d
This commit is contained in:
15
nextflow/tests-v1/demo.nf
Normal file
15
nextflow/tests-v1/demo.nf
Normal file
@@ -0,0 +1,15 @@
|
||||
#!/usr/bin/env nextflow
|
||||
|
||||
process sayHello {
|
||||
debug true
|
||||
input:
|
||||
val x
|
||||
|
||||
"""
|
||||
echo '$x world!'
|
||||
"""
|
||||
}
|
||||
|
||||
workflow {
|
||||
Channel.of('Bojour', 'Ciao', 'Hello', 'Hola', 'Γεια σου') | sayHello
|
||||
}
|
||||
Reference in New Issue
Block a user