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

fix container/module collision

This commit is contained in:
MaxUlysse 2019-11-20 16:03:27 +01:00
parent 9a57e487d7
commit edde1ee64d

View file

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