mirror of
https://github.com/MillironX/nf-configs.git
synced 2024-11-11 04:23:10 +00:00
24 lines
615 B
Text
24 lines
615 B
Text
|
// 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
|
||
|
}
|
||
|
}
|