1
0
Fork 0
mirror of https://github.com/MillironX/nf-configs.git synced 2024-11-10 20:13:09 +00:00

fix issue with withLabel selector

This commit is contained in:
MaxUlysse 2019-12-12 11:50:10 +01:00
parent 271e20e306
commit 2bf66514c5

View file

@ -16,9 +16,7 @@ params {
// Specific nf-core/sarek process configuration
process {
withLabel:sentieon {
if (params.sentieon) {
module = 'sentieon/201808.05'
container = null
}
module = {params.sentieon ? 'sentieon/201808.05' : null}
container = {params.sentieon ? null : container}
}
}