mirror of
https://github.com/MillironX/nf-configs.git
synced 2024-11-13 05:03:10 +00:00
11 lines
216 B
Text
11 lines
216 B
Text
|
process {
|
||
|
|
||
|
withName:'BBMAP_BBDUK' {
|
||
|
memory = { check_max( 80.GB * task.attempt, 'memory' ) }
|
||
|
}
|
||
|
|
||
|
withName: 'MALT_RUN' {
|
||
|
memory = { check_max( 80.GB * task.attempt, 'memory' ) }
|
||
|
}
|
||
|
}
|