Skip to content

Commit

Permalink
There are blast failures we don't know how to fix. Just ignore for now
Browse files Browse the repository at this point in the history
  • Loading branch information
muffato committed Jul 15, 2024
1 parent 310a812 commit b83f05c
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions conf/base.config
Original file line number Diff line number Diff line change
Expand Up @@ -105,6 +105,10 @@ process {
}

withName: "BLAST_BLASTN" {

// There are blast failures we don't know how to fix. Just ignore for now
errorStrategy = { task.exitStatus in ((130..145) + 104) ? (task.attempt == process.maxRetries ? 'ignore' : 'retry') : 'finish' }

// Most jobs complete quickly but some need a lot longer. For those outliers,
// the CPU usage remains usually low, often nearing a single CPU
cpus = { check_max( 6 - (task.attempt-1), 'cpus' ) }
Expand Down

0 comments on commit b83f05c

Please sign in to comment.