Skip to content

Commit

Permalink
Merge pull request #72 from skrakau/busco_error_handling
Browse files Browse the repository at this point in the history
Busco error handling - do not ignore
  • Loading branch information
skrakau authored Jul 14, 2020
2 parents 467b39f + 9ec9121 commit fbbf302
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
- Fix number of threads used by MetaBAT2 program `jgi_summarize_bam_contig_depths`
- Fix SPAdes memory conversion issue [#70](https://github.com/nf-core/mag/pull/70)
- No more ignoring errors in SPAdes assembly
- No more ignoring of BUSCO errors

### `Deprecated`

Expand Down
2 changes: 1 addition & 1 deletion conf/base.config
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ process {
time = 4.h
}
withName: busco {
errorStrategy = { task.exitStatus in [143,137] ? 'retry' : 'ignore' }
errorStrategy = { task.exitStatus in [143,137] ? 'retry' : 'finish' }
}
withName: phix_download_db {
time = 4.h
Expand Down

0 comments on commit fbbf302

Please sign in to comment.