-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: add TES models with unit tests
- Loading branch information
1 parent
7adf65b
commit a0be90a
Showing
3 changed files
with
70 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
"""Models package for TES, WES, and WRROC. | ||
This package contains Pydantic models that conform to the GA4GH schemas for Task Execution Services (TES), | ||
Workflow Execution Services (WES), and WRROC. These models are used for data validation and type safety | ||
throughout the CrateGen project. | ||
""" | ||
|
||
from .tes_models import ( | ||
TESData, | ||
TESExecutor, | ||
TESExecutorLog, | ||
TESFileType, | ||
TESInput, | ||
TESOutput, | ||
TESOutputFileLog, | ||
TESResources, | ||
TESState, | ||
TESTaskLog, | ||
) | ||
|
||
__all__ = [ | ||
"TESData", | ||
"TESInput", | ||
"TESOutput", | ||
"TESExecutor", | ||
"TESTaskLog", | ||
"TESResources", | ||
"TESExecutorLog", | ||
"TESOutputFileLog", | ||
"TESFileType", | ||
"TESState", | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters