mirror of
https://github.com/MillironX/nf-configs.git
synced 2024-11-10 20:13:09 +00:00
29 lines
772 B
Text
29 lines
772 B
Text
//Profile config names for nf-core/configs
|
|
params {
|
|
config_profile_description = 'BINAC cluster profile provided by nf-core/configs.'
|
|
config_profile_contact = 'Alexander Peltzer (@apeltzer)'
|
|
config_profile_url = 'https://www.bwhpc-c5.de/wiki/index.php/Category:BwForCluster_BinAC'
|
|
}
|
|
|
|
singularity {
|
|
enabled = true
|
|
}
|
|
|
|
process {
|
|
beforeScript = 'module load devel/singularity/3.0.3'
|
|
executor = 'pbs'
|
|
queue = 'short'
|
|
process.queue = { task.memory > 128.GB ? 'smp': task.time <= 20m ? 'tiny' : task.time <= 48.h ? 'short' : task.time <= 168.h ? 'long'}
|
|
}
|
|
|
|
params {
|
|
igenomes_base = '/nfsmounts/igenomes'
|
|
max_memory = 1024.GB
|
|
max_cpus = 28
|
|
max_time = 168.h
|
|
}
|
|
|
|
weblog{
|
|
enabled = true
|
|
url = 'https://services.qbic.uni-tuebingen.de/flowstore/workflows'
|
|
}
|