Skip to content
Snippets Groups Projects
Commit 944f0d1d authored by Jules Sabban's avatar Jules Sabban
Browse files

More memory for SORTMERNA and QUALIMAP

parent 8e7e4404
No related branches found
No related tags found
1 merge request!15genologin -> genobioinfo
Pipeline #143910 failed
......@@ -339,7 +339,7 @@ process {
withName: SORTMERNA {
module = toolsModuleHash['SORTMERNA']
memory = { checkMax( 2.GB * task.attempt, 'memory' ) }
memory = { checkMax( 10.GB * task.attempt * params.resource_factor, 'memory' ) }
time = { checkMax( 10.h * task.attempt, 'time' ) }
cpus = { checkMax( 1 * task.attempt, 'cpus' ) }
......@@ -362,7 +362,7 @@ process {
withName: QUALIMAP {
module = toolsModuleHash['QUALIMAP']
cpus = { checkMax( 8 * task.attempt, 'cpus' ) }
memory = { checkMax( 8.GB * task.attempt, 'memory' ) }
memory = { checkMax( 30.GB * task.attempt * params.resource_factor, 'memory' ) }
time = { checkMax( 3.h * task.attempt, 'time' ) }
publishDir = [
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment