1
0
Fork 0
mirror of https://github.com/MillironX/nf-configs.git synced 2024-11-22 00:26:03 +00:00

Merge pull request #110 from MaxUlysse/MUNIN

fix issue with withLabel selector
This commit is contained in:
Maxime Garcia 2019-12-12 13:03:23 +01:00 committed by GitHub
commit d36172d4cf
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

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}
}
}