mirror of
https://github.com/MillironX/nf-configs.git
synced 2024-11-22 08:29:54 +00:00
Adjust max memory
This commit is contained in:
parent
5ec19e3abb
commit
83fcc0b2ba
1 changed files with 3 additions and 3 deletions
|
@ -13,14 +13,14 @@ process {
|
|||
beforeScript = 'module load devel/singularity/3.0.3'
|
||||
executor = 'pbs'
|
||||
queue = 'short'
|
||||
process.queue = { task.memory > 128.GB ? 'smp': task.time <= 48.h ? 'short' : task.time <= 168.h ? 'long'}
|
||||
process.queue = { task.memory > 128.GB ? 'smp': task.time <= 20m ? 'tiny' : task.time <= 48.h ? 'short' : task.time <= 168.h ? 'long'}
|
||||
}
|
||||
|
||||
params {
|
||||
igenomes_base = '/nfsmounts/igenomes'
|
||||
max_memory = 128.GB
|
||||
max_memory = 1024.GB
|
||||
max_cpus = 28
|
||||
max_time = 48.h
|
||||
max_time = 168.h
|
||||
}
|
||||
|
||||
weblog{
|
||||
|
|
Loading…
Reference in a new issue