mirror of
https://github.com/MillironX/nf-configs.git
synced 2024-11-13 05:03:10 +00:00
8e42bbd7d0
We just added some new HighMem nodes to the cfc, Partition/queue name is qbic, each node has 128Cores and 2TB of RAM. The old queue (Name compute) is set to default by slurm. Each process over 60GB of RAM or over 20cpus should run on those new nodes. So added the queue State and adjusted the max_memory and max_cpu setting.
29 lines
693 B
Text
29 lines
693 B
Text
//Profile config names for nf-core/configs
|
|
params {
|
|
config_profile_description = 'QBiC Core Facility cluster profile provided by nf-core/configs.'
|
|
config_profile_contact = 'Alexander Peltzer (@apeltzer)'
|
|
config_profile_url = 'http://qbic.uni-tuebingen.de/'
|
|
}
|
|
|
|
singularity {
|
|
enabled = true
|
|
cacheDir = '/nfsmounts/container'
|
|
}
|
|
|
|
process {
|
|
beforeScript = 'module load devel/singularity/3.4.2'
|
|
executor = 'slurm'
|
|
queue = { task.memory > 60.GB || task.cpus > 20 ? 'qbic' }
|
|
}
|
|
|
|
weblog{
|
|
enabled = true
|
|
url = 'https://services.qbic.uni-tuebingen.de/flowstore/workflows'
|
|
}
|
|
|
|
params {
|
|
igenomes_base = '/nfsmounts/igenomes'
|
|
max_memory = 1999.GB
|
|
max_cpus = 128
|
|
max_time = 140.h
|
|
}
|