Skip to content

Commit

Permalink
minimal config changes
Browse files Browse the repository at this point in the history
  • Loading branch information
toniher committed Nov 28, 2024
1 parent eb1ced1 commit 61780a5
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions nextflow.config
Original file line number Diff line number Diff line change
Expand Up @@ -98,21 +98,24 @@ params {
process {

cache = 'lenient'
memory='4.5G'
cpus='1'
memory = '5G'
cpus = 1
time='6h'
scratch = false
container = 'perl:5.24-threaded-buster'

withLabel: aligners {
errorStrategy = 'retry'
memory = '5G'
cpus = 2
time = {6.h * task.attempt * task.attempt}
maxRetries = 4
container = 'biocorecrg/exorthist_aligners:2.0.0'
}

withLabel: big_cpus {
cpus = 2
}

withLabel: big_mem {
errorStrategy = 'retry'
memory = {5.GB * task.attempt}
Expand Down

0 comments on commit 61780a5

Please sign in to comment.