mirror of
https://github.com/MillironX/nf-core_modules.git
synced 2024-11-10 20:23:10 +00:00
14 lines
216 B
Text
14 lines
216 B
Text
#!/usr/bin/env nextflow
|
|
nextflow.preview.dsl = 2
|
|
|
|
cheers = Channel.from 'Bonjour', 'Ciao', 'Hello', 'Hola'
|
|
|
|
process check_output {
|
|
input:
|
|
val x from cheers
|
|
|
|
script:
|
|
"""
|
|
echo '$x world!'
|
|
"""
|
|
}
|