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

improve syntax

This commit is contained in:
MaxUlysse 2019-11-22 14:42:40 +01:00
parent 93d5156c7d
commit 028008c1d0

View file

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