Files
ma/nextflow/docs/snippets/process-out-eval.nf
2026-04-29 23:01:54 +02:00

14 lines
129 B
Plaintext

process hello {
output:
eval('echo Hello world!')
script:
"""
true
"""
}
workflow {
hello | view
}