Skip to content

Commit

Permalink
Merge pull request #101 from rki-mf1/increase-RAM
Browse files Browse the repository at this point in the history
Increase ram
  • Loading branch information
hoelzer authored Nov 8, 2024
2 parents 9114a4e + 078d492 commit 1b952d8
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions configs/node.config
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
process {
withLabel: minimap2 { cpus = 24; memory = 24.GB }
withLabel: bwa { cpus = {24 * task.attempt}; memory = {24.GB * task.attempt } ; maxRetries = 3 ; errorStrategy = { task.exitStatus in 130..140 ? 'retry' : 'terminate' } }
withLabel: bbmap { cpus = 24; memory = 24.GB }
withLabel: smallTask { cpus = 1; memory = 2.GB }
withLabel: pysam { cpus = 2; memory = 4.GB }
withLabel: fastqc { cpus = {2 * task.attempt}; memory = {4.GB * task.attempt } ; maxRetries = 3 ; errorStrategy = { task.exitStatus in 130..140 ? 'retry' : 'terminate' } }
withLabel: multiqc { cpus = 4; memory = 4.GB }
withLabel: nanoplot { cpus = 8; memory = 8.GB }
withLabel: quast { cpus = 8; memory = 8.GB }
withLabel: minimap2 { cpus = 24; memory = {24.GB * task.attempt}; maxRetries = 4 ; errorStrategy = { task.exitStatus in 1 || 130..140 ? 'retry' : 'terminate' }; }
withLabel: bwa { cpus = 24; memory = {24.GB * task.attempt}; maxRetries = 3 ; errorStrategy = { task.exitStatus in 130..140 ? 'retry' : 'terminate' } }
withLabel: bbmap { cpus = 24; memory = {24.GB * task.attempt}; maxRetries = 6 ; errorStrategy = { task.exitStatus in 1 || 130..140 ? 'retry' : 'terminate' }; }
withLabel: smallTask { cpus = 1; memory = 2.GB }
withLabel: pysam { cpus = 2; memory = 4.GB }
withLabel: fastqc { cpus = 2; memory = {4.GB * task.attempt } ; maxRetries = 3 ; errorStrategy = { task.exitStatus in 130..140 ? 'retry' : 'terminate' }; }
withLabel: multiqc { cpus = 4; memory = 4.GB }
withLabel: nanoplot { cpus = 8; memory = 8.GB }
withLabel: quast { cpus = 8; memory = 8.GB }
}

0 comments on commit 1b952d8

Please sign in to comment.