mirror of
https://github.com/MillironX/nf-configs.git
synced 2024-11-11 04:23:10 +00:00
cc380ce9a1
Added polling frequencies to the config as requested by MPCDF admin. Also updated the number of (real) cores on Raven.
73 lines
1.8 KiB
Text
73 lines
1.8 KiB
Text
params {
|
|
config_profile_description = 'MPCDF HPC profiles (unoffically) provided by nf-core/configs.'
|
|
config_profile_contact = 'James Fellows Yates (@jfy133)'
|
|
config_profile_url = 'https://www.mpcdf.mpg.de/services/supercomputing'
|
|
}
|
|
|
|
|
|
profiles {
|
|
|
|
cobra {
|
|
|
|
cleanup = true
|
|
|
|
process {
|
|
beforeScript = 'module load singularity'
|
|
executor = 'slurm'
|
|
}
|
|
|
|
executor {
|
|
queueSize = 8
|
|
pollInterval = '1 min'
|
|
queueStatInterval = '5 min'
|
|
}
|
|
|
|
// Set $NXF_SINGULARITY_CACHEDIR in your ~/.bash_profile
|
|
// to stop downloading the same image for every run
|
|
singularity {
|
|
enabled = true
|
|
autoMounts = true
|
|
}
|
|
|
|
params {
|
|
config_profile_description = 'MPCDF cobra profile (unofficially) provided by nf-core/configs.'
|
|
max_memory = 725.GB
|
|
max_cpus = 80
|
|
max_time = 24.h
|
|
}
|
|
}
|
|
|
|
raven {
|
|
|
|
cleanup = true
|
|
|
|
process {
|
|
beforeScript = 'module load singularity'
|
|
executor = 'slurm'
|
|
}
|
|
|
|
executor {
|
|
queueSize = 8
|
|
pollInterval = '1 min'
|
|
queueStatInterval = '5 min'
|
|
}
|
|
|
|
// Set $NXF_SINGULARITY_CACHEDIR in your ~/.bash_profile
|
|
// to stop downloading the same image for every run
|
|
singularity {
|
|
enabled = true
|
|
autoMounts = true
|
|
}
|
|
|
|
params {
|
|
config_profile_description = 'MPCDF raven profile (unofficially) provided by nf-core/configs.'
|
|
max_memory = 368.GB
|
|
max_cpus = 72
|
|
max_time = 24.h
|
|
}
|
|
}
|
|
|
|
debug {
|
|
cleanup = false
|
|
}
|
|
}
|