Skip to content

Commit

Permalink
Merge pull request #221 from hoelzer-lab/optimize-hpc-ressources
Browse files Browse the repository at this point in the history
DESeq2 error handling, increase RAM on HPC
  • Loading branch information
hoelzer authored Jul 28, 2023
2 parents d0f6ebe + 4661cf0 commit 851b8b7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions configs/nodes.config
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
process {
withLabel: hisat2 { cpus = 24 ; memory = { 24.GB * task.attempt } ; maxRetries = 3 ; errorStrategy = { task.exitStatus in 134 ? 'retry' : 'terminate' } }
withLabel: deseq2 { cpus = 10 ; memory = '12 GB' }
withLabel: hisat2 { cpus = 24 ; memory = { 24.GB * task.attempt } ; maxRetries = 3 ; errorStrategy = { task.exitStatus in 130..140 ? 'retry' : 'terminate' } }
withLabel: deseq2 { cpus = 24 ; memory = { 12.GB * task.attempt } ; maxRetries = 2 ; errorStrategy = { task.exitStatus in 130..140 ? 'retry' : 'terminate' } }
withLabel: fastp { cpus = 12 ; memory = '12 GB' }
withLabel: fastqc { cpus = 1 ; memory = '2 GB' }
withLabel: subread { cpus = 12 ; memory = '12 GB' }
Expand Down

0 comments on commit 851b8b7

Please sign in to comment.