Remove test functions folder

This commit is contained in:
drpatelh 2020-08-07 14:05:55 +01:00
parent 6333786d62
commit 29f1585068

View file

@ -1,14 +0,0 @@
#!/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!'
"""
}