mirror of
https://github.com/MillironX/nf-configs.git
synced 2024-11-22 08:29:54 +00:00
Merge branch 'master' of https://github.com/nf-core/configs
This commit is contained in:
commit
cd59bba83e
1 changed files with 6 additions and 4 deletions
|
@ -20,7 +20,6 @@ singularity {
|
||||||
|
|
||||||
process {
|
process {
|
||||||
executor = 'slurm'
|
executor = 'slurm'
|
||||||
queue = { task.memory > 756.GB || task.cpus > 64 ? 'supercruncher': task.time <= 2.h ? 'short' : task.time <= 48.h ? 'medium': 'long' }
|
|
||||||
}
|
}
|
||||||
|
|
||||||
executor {
|
executor {
|
||||||
|
@ -39,9 +38,12 @@ profiles {
|
||||||
}
|
}
|
||||||
sdag {
|
sdag {
|
||||||
params {
|
params {
|
||||||
config_profile_description = 'SDAG MPI-SHH profile, provided by nf-core/configs.'
|
config_profile_description = 'SDAG MPI-SHH profile, provided by nf-core/configs.'
|
||||||
max_memory = 2.TB
|
max_memory = 2.TB
|
||||||
max_cpus = 128
|
max_cpus = 128
|
||||||
|
}
|
||||||
|
process {
|
||||||
|
queue = { task.memory > 756.GB || task.cpus > 64 ? 'supercruncher': task.time <= 2.h ? 'short' : task.time <= 48.h ? 'medium': 'long' }
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue