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

23 lines
300 B
Plaintext

profiles {
test {
process {
withName:'FOO' {
ext {
foo = 'foo'
}
}
withName:'BAR' {
ext {
bar = 'bar'
}
}
withName:'DOES_NOT_MATCH_ANYTHING' {
ext {
test = 'test'
}
}
}
}
}