Files
ma/test/main.nf

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()
}