Files
ma/nextflow/tests/task-ext.nf
2026-04-29 23:01:54 +02:00

14 lines
124 B
Plaintext

process HELLO {
debug true
script:
"""
echo "args = ${task.ext.args}"
"""
}
workflow {
HELLO()
}