mirror of
https://github.com/MillironX/nf-configs.git
synced 2024-11-23 16:49:55 +00:00
Added conf file for medair
This commit is contained in:
parent
23669d2df6
commit
bb35d8e5d1
1 changed files with 39 additions and 0 deletions
39
conf/medair.config
Normal file
39
conf/medair.config
Normal file
|
@ -0,0 +1,39 @@
|
||||||
|
//Profile config names for nf-core/configs
|
||||||
|
params {
|
||||||
|
config_profile_description = 'Cluster profile for medair (local cluster of Clinical Genomics Gothenburg)'
|
||||||
|
config_profile_contact = 'Clinical Genomics, Gothenburg'
|
||||||
|
config_profile_url = 'https://www.scilifelab.se/units/clinical-genomics-goteborg/'
|
||||||
|
}
|
||||||
|
|
||||||
|
//Nextflow parameters
|
||||||
|
singularity {
|
||||||
|
enabled = true
|
||||||
|
}
|
||||||
|
|
||||||
|
profiles {
|
||||||
|
|
||||||
|
wgs {
|
||||||
|
process {
|
||||||
|
queue = 'wgs.q'
|
||||||
|
executor = 'sge'
|
||||||
|
penv = 'mpi'
|
||||||
|
process.clusterOptions = '-l excl=1'
|
||||||
|
params.max_cpus = 40
|
||||||
|
params.max_time = 48.h
|
||||||
|
params.max_memory = 128.GB
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
production {
|
||||||
|
process {
|
||||||
|
queue = 'production.q'
|
||||||
|
executor = 'sge'
|
||||||
|
penv = 'mpi'
|
||||||
|
process.clusterOptions = '-l excl=1'
|
||||||
|
params.max_cpus = 40
|
||||||
|
params.max_time = 480.h
|
||||||
|
params.max_memory = 128.GB
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
Loading…
Reference in a new issue