Skip to content

Commit

Permalink
Blood vessels (#118)
Browse files Browse the repository at this point in the history
* added list of places for catheter implants

* typo

* moved to template

* rerun all

* typo

* blood vessels
  • Loading branch information
saskiad authored Dec 17, 2024
1 parent f4e5c8c commit 5b34e11
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -62,4 +62,7 @@ MouseAnatomicalStructure.BODY_PARTS = Annotated[Union[
_Trunk,
], Field(discriminator="registry_identifier")]


MouseAnatomicalStructure.BLOOD_VESSELS = Annotated[Union[
_Carotid_Artery,
_Jugular_Vein,
], Field(discriminator="registry_identifier")]
8 changes: 8 additions & 0 deletions src/aind_data_schema_models/mouse_anatomy.py
Original file line number Diff line number Diff line change
Expand Up @@ -73220,3 +73220,11 @@ class MouseAnatomicalStructure:
],
Field(discriminator="registry_identifier"),
]

MouseAnatomicalStructure.BLOOD_VESSELS = Annotated[
Union[
_Carotid_Artery,
_Jugular_Vein,
],
Field(discriminator="registry_identifier"),
]

0 comments on commit 5b34e11

Please sign in to comment.