mirror of
https://github.com/MillironX/nf-configs.git
synced 2024-11-23 08:49:54 +00:00
Set values for processes with max_mem/max_cpus
This commit is contained in:
parent
bb8e82e9c7
commit
eb9012919c
2 changed files with 27 additions and 0 deletions
24
conf/pipeline/sarek/cfc.config
Normal file
24
conf/pipeline/sarek/cfc.config
Normal file
|
@ -0,0 +1,24 @@
|
||||||
|
// Profile config names for nf-core/configs
|
||||||
|
|
||||||
|
params {
|
||||||
|
// Specific nf-core/configs params
|
||||||
|
config_profile_contact = 'Friederike Hanssen (@FriederikeHanssen'
|
||||||
|
config_profile_description = 'nf-core/sarek CFC profile provided by nf-core/configs'
|
||||||
|
}
|
||||||
|
|
||||||
|
// Specific nf-core/sarek process configuration
|
||||||
|
process {
|
||||||
|
withName:'StrelkaSingle|Strelka|StrelkaBP|MantaSingle|Manta' {
|
||||||
|
memory = {check_resource(128.GB)}
|
||||||
|
cpus = 16
|
||||||
|
}
|
||||||
|
withName:'MSIsensor_scan|MSIsensor_msi' {
|
||||||
|
memory = {check_resource(128.GB)}
|
||||||
|
}
|
||||||
|
withName:BamQC {
|
||||||
|
memory = {check_resource(372.GB)}
|
||||||
|
}
|
||||||
|
withName:MapReads{
|
||||||
|
cpus = 48
|
||||||
|
}
|
||||||
|
}
|
|
@ -12,4 +12,7 @@ profiles {
|
||||||
munin { includeConfig "${params.custom_config_base}/conf/pipeline/sarek/munin.config" }
|
munin { includeConfig "${params.custom_config_base}/conf/pipeline/sarek/munin.config" }
|
||||||
uppmax { includeConfig "${params.custom_config_base}/conf/pipeline/sarek/uppmax.config" }
|
uppmax { includeConfig "${params.custom_config_base}/conf/pipeline/sarek/uppmax.config" }
|
||||||
icr_davros { includeConfig "${params.custom_config_base}/conf/pipeline/sarek/icr_davros.config" }
|
icr_davros { includeConfig "${params.custom_config_base}/conf/pipeline/sarek/icr_davros.config" }
|
||||||
|
cfc { includeConfig "${params.custom_config_base}/conf/pipeline/sarek/cfc.config" }
|
||||||
|
cfc_dev { includeConfig "${params.custom_config_base}/conf/pipeline/sarek/cfc.config" }
|
||||||
|
|
||||||
}
|
}
|
Loading…
Reference in a new issue