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:
parent
271e20e306
commit
2bf66514c5
1 changed files with 2 additions and 4 deletions
|
@ -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}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue