mirror of
https://github.com/MillironX/nf-configs.git
synced 2024-11-11 04:23:10 +00:00
Create ceh.config
This commit is contained in:
parent
b63a8b0554
commit
c11c26f15f
1 changed files with 31 additions and 0 deletions
31
conf/ceh.config
Normal file
31
conf/ceh.config
Normal file
|
@ -0,0 +1,31 @@
|
||||||
|
//Profile config names for nf-core/configs
|
||||||
|
params {
|
||||||
|
config_profile_description = 'Centre for Evolutionary Hologenomics - CEH profile provided by nf-core/configs.'
|
||||||
|
config_profile_contact = 'Aashild Vaagene (@ashildv)'
|
||||||
|
}
|
||||||
|
|
||||||
|
profiles {
|
||||||
|
ceh {
|
||||||
|
singularity {
|
||||||
|
enabled = true
|
||||||
|
autoMounts = true
|
||||||
|
cacheDir = '/shared/volume/hologenomics/data/cache/nf-eager/singularity'
|
||||||
|
}
|
||||||
|
process {
|
||||||
|
executor = 'slurm'
|
||||||
|
queue = { task.time < 24.h ? 'hologenomics-short' : task.time < 168.h ? 'hologenomics' : 'hologenomics-long' }
|
||||||
|
}
|
||||||
|
|
||||||
|
cleanup = true
|
||||||
|
|
||||||
|
executor {
|
||||||
|
queueSize = 8
|
||||||
|
}
|
||||||
|
params {
|
||||||
|
max_memory = 250.GB
|
||||||
|
max_cpus = 35
|
||||||
|
max_time = 720.h
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
Loading…
Reference in a new issue