mirror of
https://github.com/MillironX/nf-core_modules.git
synced 2024-11-11 04:33:10 +00:00
13 lines
192 B
Text
13 lines
192 B
Text
#!/usr/bin/env nextflow
|
|
echo true
|
|
|
|
cheers = Channel.from 'Bonjour', 'Ciao', 'Hello', 'Hola'
|
|
|
|
process sayHello {
|
|
input:
|
|
val x from cheers
|
|
script:
|
|
"""
|
|
echo '$x world!'
|
|
"""
|
|
}
|