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

38 lines
665 B
Plaintext

profiles {
test1 {
process {
memory = 20.MB
queue = 'std'
withLabel: small {
memory = 10.MB
queue = 'small'
}
withLabel: big {
memory = 70.MB
queue = 'big'
}
}
}
test2 {
process {
withLabel: small {
memory = 10.MB
queue = 'small'
}
withLabel: '!small' {
memory = 70.MB
queue = 'big'
}
}
}
test3 {
includeConfig 'config-labels-included.config'
}
}