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

update anaconda module

not sure why a binary distribution needs a buildenv at all, but well
This commit is contained in:
phue 2022-02-04 10:18:59 +01:00
parent c3db683535
commit 52b6f7da21

View file

@ -8,7 +8,7 @@ params {
process {
executor = 'slurm'
queue = { task.memory <= 170.GB ? 'c' : 'm' }
module = 'anaconda3/2019.10'
module = ['build-env/.f2021', 'build-env/f2021', 'anaconda3/2021.11']
// --signal option will be handled by nextflow after 21.10.0 release (see https://github.com/nextflow-io/nextflow/issues/2163)
clusterOptions = { '--signal B:USR2 ' << ( (queue == 'c' & task.time <= 1.h) ? '--qos rapid' : ( task.time <= 8.h ? '--qos short': ( task.time <= 48.h ? '--qos medium' : '--qos long' ) ) ) }