1
0
Fork 0
mirror of https://github.com/MillironX/nf-configs.git synced 2024-11-21 16:16:04 +00:00

Reinstated maxRetries and increased memory for GATK4_MARKDUPLICATES in sbc_sharc.config for sarek

This commit is contained in:
lquayle88 2022-10-01 07:43:46 +01:00
parent 8103718389
commit dbb3b3b44b

View file

@ -18,7 +18,7 @@ process {
// error and retry handling
errorStrategy = { task.exitStatus in [143,137,104,134,139,140,247] ? 'retry' : 'finish' }
maxRetries = 1
maxRetries = 2
// process labels
@ -75,7 +75,7 @@ process {
}
withName:'GATK4_MARKDUPLICATES' {
memory = { check_max( 16.GB * task.attempt, 'memory' ) }
memory = { check_max( 20.GB * task.attempt, 'memory' ) }
}
withName:'FREEBAYES|SAMTOOLS_STATS|SAMTOOLS_INDEX|UNZIP' {