mirror of
https://github.com/MillironX/nf-configs.git
synced 2024-11-22 08:29:54 +00:00
fix container/module collision
This commit is contained in:
parent
9a57e487d7
commit
edde1ee64d
1 changed files with 7 additions and 5 deletions
|
@ -18,8 +18,10 @@ params {
|
|||
vep_cache = '/data1/cache/VEP/'
|
||||
}
|
||||
|
||||
// Specific nf-core/sarek configuration
|
||||
withLabel:sentieon {
|
||||
module = {params.sentieon ? 'sentieon/201808.05' : ''}
|
||||
if (params.sentieon) container = ''
|
||||
// Specific nf-core/sarek process configuration
|
||||
process {
|
||||
withLabel:sentieon {
|
||||
beforeScript = {params.sentieon ? 'module load sentieon/201808.05' : ''}
|
||||
container = {params.sentieon ? '' : 'nfcore/sarek:dev'}
|
||||
}
|
||||
}
|
Loading…
Reference in a new issue