Skip to content

Commit

Permalink
add a config to ignore error in GET_NCBI_GENOME
Browse files Browse the repository at this point in the history
  • Loading branch information
fmalmeida committed Sep 12, 2024
1 parent c405fb0 commit fe48314
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions conf/base.config
Original file line number Diff line number Diff line change
Expand Up @@ -38,4 +38,14 @@ process {
maxRetries = 2
}

// problematic module
withName: GET_NCBI_GENOME {
errorStrategy = { task.attempt > 4 ? 'retry' : 'ignore' }
maxRetries = 2
maxErrors = '-1'
cpus = 2
memory = 4.GB
time = 2.h
}

}

0 comments on commit fe48314

Please sign in to comment.