mirror of
https://github.com/MillironX/nf-configs.git
synced 2024-11-10 20:13:09 +00:00
16 lines
415 B
Text
16 lines
415 B
Text
params {
|
|
// Specific nf-core/configs params
|
|
config_profile_contact = 'Sofia Stamouli (@sofstam)'
|
|
config_profile_description = 'nf-core/taxprofiler HASTA profile provided by nf-core/configs'
|
|
}
|
|
|
|
process {
|
|
|
|
withName:'BBMAP_BBDUK' {
|
|
memory = { check_max( 80.GB * task.attempt, 'memory' ) }
|
|
}
|
|
|
|
withName: 'MALT_RUN' {
|
|
memory = { check_max( 80.GB * task.attempt, 'memory' ) }
|
|
}
|
|
}
|