1
0
Fork 0
mirror of https://github.com/MillironX/nf-configs.git synced 2024-11-22 00:26:03 +00:00

Reduce MPILEUP to 5GB

This commit is contained in:
SPearce 2022-08-15 11:35:59 +01:00
parent d0662a3acb
commit 8ae3cba5e3

View file

@ -18,6 +18,10 @@ process {
beforeScript = 'module load apps/singularity/3.8.0'
executor = 'pbs'
errorStrategy = {task.exitStatus in [143,137,104,134,139,140] ? 'retry' : 'finish'}
maxErrors = '-1'
maxRetries = 3
withLabel:process_low {
cpus = { check_max( 1 * task.attempt, 'cpus' ) }
memory = { check_max( 5.GB * task.attempt, 'memory' ) }
@ -35,7 +39,7 @@ process {
withName: 'SAMTOOLS_MPILEUP' {
cpus = 1
memory = { 8.GB * task.attempt }
memory = { 5.GB * task.attempt }
}