Skip to content

Commit

Permalink
feat: add ignore_error to TesExecutor
Browse files Browse the repository at this point in the history
  • Loading branch information
athith-g committed Jun 21, 2024
1 parent 4198f71 commit 25edbb6
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions pro_tes/ga4gh/tes/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -111,6 +111,14 @@ class TesExecutor(CustomBaseModel):
),
examples=[{"BLASTDB": "/data/GRC38", "HMMERDB": "/data/hmmer"}],
)
ignore_error: Optional[bool] = Field(
None,
description=(
"Default behavior of running an array of executors is that execution stops"
" on the first error. If `ignore_error` is `True`, then the runner will"
" record error exit codes, but will continue on to the next tesExecutor."
),
)


class TesExecutorLog(CustomBaseModel):
Expand Down

0 comments on commit 25edbb6

Please sign in to comment.