Files
kojix2 df545f5820 Add support for Nextflow (#799)
* Add nextflow

* Add nextflow test

* Add nextflow test data
2022-08-13 21:16:23 +02:00

19 lines
249 B
Plaintext

/* 18 lines 10 code 5 comments 3 blanks */
/*
Nextflow - hello
*/
// comment
cheers = Channel.from 'Bonjour', 'Ciao', 'Hello', 'Hola'
process sayHello {
echo true
input:
val x from cheers
script:
"""
echo '$x world!'
"""
}