mirror of
https://github.com/MillironX/nf-configs.git
synced 2024-11-22 08:29:54 +00:00
Update binac.config
Processes that ask for 128 Gb are queuing forever when on short queue, but executed when send to smp queue.
This commit is contained in:
parent
28d7e4d4e8
commit
7346bffdc8
1 changed files with 1 additions and 1 deletions
|
@ -14,7 +14,7 @@ process {
|
|||
beforeScript = 'module load devel/singularity/3.4.2'
|
||||
executor = 'pbs'
|
||||
queue = 'short'
|
||||
process.queue = { task.memory > 128.GB ? 'smp': task.time <= 20.m ? 'tiny' : task.time <= 48.h ? 'short' : task.time <= 168.h ? 'short' : 'long'}
|
||||
process.queue = { task.memory >= 128.GB ? 'smp': task.time <= 20.m ? 'tiny' : task.time <= 48.h ? 'short' : task.time <= 168.h ? 'short' : 'long'}
|
||||
}
|
||||
|
||||
params {
|
||||
|
|
Loading…
Reference in a new issue