Skip to content

Commit

Permalink
savepoint update
Browse files Browse the repository at this point in the history
  • Loading branch information
AlexPatrie committed Jul 31, 2024
1 parent 8875009 commit 57d1368
Show file tree
Hide file tree
Showing 3 changed files with 11,214 additions and 44 deletions.
15 changes: 15 additions & 0 deletions api/data_model.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,21 @@ class PendingJob(Job):
selection_list: Optional[List[str]] = None


class PendingSbmlComparison(Job):
job_id: str
status: str
timestamp: str
omex_path: str
simulators: List[str]
timestamp: str
comparison_id: Optional[str] = None
ground_truth_report_path: Optional[str] = None
include_output: Optional[bool] = True
rTol: Optional[float] = None
aTol: Optional[float] = None
selection_list: Optional[List[str]] = None


class Simulators(BaseModel):
simulators: List[str]

Expand Down
Loading

0 comments on commit 57d1368

Please sign in to comment.