mirror of
https://github.com/MillironX/nf-configs.git
synced 2024-11-10 20:13:09 +00:00
add cfc_dev config
This commit is contained in:
parent
f414b4c52d
commit
c81f693f73
2 changed files with 29 additions and 1 deletions
|
@ -1,7 +1,7 @@
|
||||||
//Profile config names for nf-core/configs
|
//Profile config names for nf-core/configs
|
||||||
params {
|
params {
|
||||||
config_profile_description = 'QBiC Core Facility cluster profile provided by nf-core/configs.'
|
config_profile_description = 'QBiC Core Facility cluster profile provided by nf-core/configs.'
|
||||||
config_profile_contact = 'Alexander Peltzer (@apeltzer)'
|
config_profile_contact = 'Gisela Gabernet (@ggabernet)'
|
||||||
config_profile_url = 'http://qbic.uni-tuebingen.de/'
|
config_profile_url = 'http://qbic.uni-tuebingen.de/'
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
28
conf/cfc_dev.config
Normal file
28
conf/cfc_dev.config
Normal file
|
@ -0,0 +1,28 @@
|
||||||
|
//Profile config names for nf-core/configs
|
||||||
|
params {
|
||||||
|
config_profile_description = 'QBiC Core Facility cluster dev profile without container cache provided by nf-core/configs.'
|
||||||
|
config_profile_contact = 'Gisela Gabernet (@ggabernet)'
|
||||||
|
config_profile_url = 'http://qbic.uni-tuebingen.de/'
|
||||||
|
}
|
||||||
|
|
||||||
|
singularity {
|
||||||
|
enabled = true
|
||||||
|
}
|
||||||
|
|
||||||
|
process {
|
||||||
|
beforeScript = 'module load devel/singularity/3.4.2'
|
||||||
|
executor = 'slurm'
|
||||||
|
queue = { task.memory > 60.GB || task.cpus > 20 ? 'qbic' : 'compute' }
|
||||||
|
}
|
||||||
|
|
||||||
|
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
|
||||||
|
}
|
Loading…
Reference in a new issue