1
0
Fork 0
mirror of https://github.com/MillironX/nf-configs.git synced 2024-09-21 06:02:03 +00:00

Added config for limiting queue size and job submit rate

This commit is contained in:
lquayle88 2022-09-19 16:30:30 +01:00
parent 55971bb94d
commit adc88cfa1f

View file

@ -11,16 +11,21 @@
*/
// nf-core specific parameters displayed in header summary of each run
params {
// nf-core specific parameters displayed in header summary of each run
config_profile_description = 'Sheffield Bioinformatics Core - ShARC'
config_profile_contact = 'Lewis Quayle (l.quayle@sheffield.ac.uk)'
config_profile_url = 'https://docs.hpc.shef.ac.uk/en/latest/sharc/index.html'
// hpc resource limits
}
// hpc resource limits
params {
max_cpus = 16
max_memory = 64.GB
max_time = 96.h
@ -42,6 +47,16 @@ process {
}
// optional executor settings
executor {
queueSize = 10
submitRateLimit = '1 sec'
}
// container engine
singularity {
@ -50,4 +65,3 @@ singularity {
autoMounts = true
}