2021-03-29 17:25:58 +00:00
|
|
|
//Profile config names for nf-core/configs
|
|
|
|
params {
|
|
|
|
config_profile_description = 'BioHPC Genomics (biohpc_gen) cluster profile provided by nf-core/configs'
|
|
|
|
config_profile_contact = 'Patrick Hüther (@phue)'
|
|
|
|
config_profile_url = 'https://collab.lmu.de/display/BioHPCGenomics/BioHPC+Genomics'
|
|
|
|
}
|
|
|
|
|
2021-04-06 09:35:01 +00:00
|
|
|
env {
|
|
|
|
SLURM_CLUSTERS='biohpc_gen'
|
|
|
|
}
|
|
|
|
|
2021-03-29 17:25:58 +00:00
|
|
|
process {
|
|
|
|
executor = 'slurm'
|
|
|
|
queue = { task.memory <= 1536.GB ? (task.time > 2.d || task.memory > 384.GB ? 'biohpc_gen_production' : 'biohpc_gen_normal') : 'biohpc_gen_highmem' }
|
2021-04-21 08:08:00 +00:00
|
|
|
beforeScript = 'module use /dss/dsslegfs02/pn73se/pn73se-dss-0000/spack/modules/x86_avx2/linux*'
|
2021-03-29 17:25:58 +00:00
|
|
|
module = 'charliecloud/0.22:miniconda3'
|
|
|
|
}
|
|
|
|
|
|
|
|
charliecloud {
|
|
|
|
enabled = true
|
|
|
|
}
|
|
|
|
|
|
|
|
params {
|
|
|
|
params.max_time = 14.d
|
|
|
|
params.max_cpus = 80
|
|
|
|
params.max_memory = 3.TB
|
2021-04-06 09:35:01 +00:00
|
|
|
}
|