mirror of
https://github.com/MillironX/nf-configs.git
synced 2024-11-10 20:13:09 +00:00
29 lines
668 B
Text
29 lines
668 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 = 'Gisela Gabernet (@ggabernet)'
|
|
config_profile_url = 'http://qbic.uni-tuebingen.de/'
|
|
}
|
|
|
|
singularity {
|
|
enabled = true
|
|
cacheDir = '/nfsmounts/container'
|
|
}
|
|
|
|
process {
|
|
executor = 'slurm'
|
|
queue = { task.memory > 60.GB || task.cpus > 20 ? 'qbic' : 'compute' }
|
|
scratch = 'true'
|
|
}
|
|
|
|
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
|
|
}
|