mirror of
https://github.com/MillironX/taxprofiler.git
synced 2024-11-10 23:03:10 +00:00
Revert "optimisation for single-cpu processes"
This reverts commit a731669b8e
.
This commit is contained in:
parent
a731669b8e
commit
cc7d219267
1 changed files with 1 additions and 6 deletions
|
@ -28,7 +28,7 @@ process {
|
|||
// See https://www.nextflow.io/docs/latest/config.html#config-process-selectors
|
||||
withLabel:process_single {
|
||||
cpus = { check_max( 1 , 'cpus' ) }
|
||||
memory = { check_max( 1.GB * task.attempt, 'memory' ) }
|
||||
memory = { check_max( 6.GB * task.attempt, 'memory' ) }
|
||||
time = { check_max( 4.h * task.attempt, 'time' ) }
|
||||
}
|
||||
withLabel:process_low {
|
||||
|
@ -62,9 +62,4 @@ process {
|
|||
withName:CUSTOM_DUMPSOFTWAREVERSIONS {
|
||||
cache = false
|
||||
}
|
||||
withName: rma2info {
|
||||
cpus = { check_max( 1 , 'cpus' ) }
|
||||
memory = { check_max( 6.GB * task.attempt, 'memory' ) }
|
||||
time = { check_max( 4.h * task.attempt, 'time' ) }
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue