mirror of
https://github.com/MillironX/nf-configs.git
synced 2024-11-10 20:13:09 +00:00
69 lines
1.6 KiB
Text
69 lines
1.6 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
|
|
}
|
|
|
|
// 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
|
|
}
|
|
|
|
// 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 = 192
|
|
max_time = 24.h
|
|
}
|
|
}
|
|
|
|
debug {
|
|
cleanup = false
|
|
}
|
|
}
|