Skip to content
Merged
Show file tree
Hide file tree
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "translator_testing_model"
version = "0.4.0"
version = "0.4.1"
description = "This is the project description."
authors = ["Sierra Moxon <sierra.taylor@gmail.com>", "Richard Bruskiewich <richard.bruskiewich@delphinai.com>"]
license = "MIT"
Expand Down
1 change: 1 addition & 0 deletions src/translator_testing_model/datamodel/pydanticmodel.py
Original file line number Diff line number Diff line change
Expand Up @@ -313,6 +313,7 @@ class PathfinderTestAsset(TestEntity):
target_input_category: Optional[str] = Field(None)
predicate_id: Optional[str] = Field(None)
predicate_name: Optional[str] = Field(None)
minimum_expected_path_nodes: Optional[int] = Field(None, description="The number of nodes required in a path to pass this test.")
Comment thread
uhbrar marked this conversation as resolved.
Outdated
path_nodes: Optional[List[PathfinderPathNode]] = Field(None)
association: Optional[str] = Field(None, description="""Specific Biolink Model association 'category' which applies to the test asset defined knowledge statement""")
qualifiers: Optional[List[Qualifier]] = Field(default_factory=list, description="""Optional qualifiers which constrain to the test asset defined knowledge statement. Note that this field records such qualifier slots and values as tag=value pairs, where the tag is the Biolink Model qualifier slot named and the value is an acceptable (Biolink Model enum?) value of the said qualifier slot.""")
Expand Down