Skip to content

Commit

Permalink
feat: Use new previousTrace
Browse files Browse the repository at this point in the history
  • Loading branch information
edmundmiller committed Nov 28, 2024
1 parent a03e5a6 commit dd7ee04
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions conf/utd_ganymede.config
Original file line number Diff line number Diff line change
Expand Up @@ -57,11 +57,15 @@ process {
queue = { select_queue(task.memory, task.cpu) }

withLabel:process_medium {
cpus = { 16 * task.attempt }
memory = { genomics_queue_memory * task.attempt }
cpus = { task.attempt > 2 ? task.previousTrace.cpus * 1.5 : (16) }
memory = { task.attempt > 1 ? task.previousTrace.memory * 2 : (genomics_queue_memory) }
}
}

manifest {
nextflowVersion = '!>=24.10.0'
}

params {
max_memory = 250.GB
max_cpus = 28
Expand Down

0 comments on commit dd7ee04

Please sign in to comment.