mirror of
https://github.com/MillironX/nf-configs.git
synced 2025-01-06 22:32:09 -05:00
13 lines
268 B
Text
13 lines
268 B
Text
process {
|
|
|
|
withName : "STAR_ALIGN" {
|
|
memory = 36.GB
|
|
}
|
|
|
|
withLabel:process_high {
|
|
cpus = { check_max( 16 * task.attempt, 'cpus' ) }
|
|
memory = { check_max( 60.GB * task.attempt, 'memory' ) }
|
|
time = { check_max( 16.h * task.attempt, 'time' ) }
|
|
}
|
|
|
|
}
|