Files
test-workflow/main.nf
2026-05-18 21:34:38 +02:00

19 lines
206 B
Plaintext

nextflow.enable.dsl = 2
process hello {
container 'ubuntu:22.04'
output:
path 'hello.txt'
script:
"""
echo "Hello, from kubernetes" > hello.txt
hostname >> hello.txt
"""
}
workflow {
hello()
}