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

14 lines
123 B
Plaintext

process seq {
output:
env 'RESULT'
script:
'''
RESULT=$(seq 5)
'''
}
workflow {
seq | view
}