From 5b34e11d5ea1ba8a83bcfeac579df000a97add6f Mon Sep 17 00:00:00 2001 From: Saskia de Vries Date: Tue, 17 Dec 2024 14:53:24 -0800 Subject: [PATCH] Blood vessels (#118) * added list of places for catheter implants * typo * moved to template * rerun all * typo * blood vessels --- .../_generators/templates/mouse_anatomy.txt | 5 ++++- src/aind_data_schema_models/mouse_anatomy.py | 8 ++++++++ 2 files changed, 12 insertions(+), 1 deletion(-) diff --git a/src/aind_data_schema_models/_generators/templates/mouse_anatomy.txt b/src/aind_data_schema_models/_generators/templates/mouse_anatomy.txt index 998a915..f8f2feb 100644 --- a/src/aind_data_schema_models/_generators/templates/mouse_anatomy.txt +++ b/src/aind_data_schema_models/_generators/templates/mouse_anatomy.txt @@ -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")] diff --git a/src/aind_data_schema_models/mouse_anatomy.py b/src/aind_data_schema_models/mouse_anatomy.py index b57e109..0369f63 100644 --- a/src/aind_data_schema_models/mouse_anatomy.py +++ b/src/aind_data_schema_models/mouse_anatomy.py @@ -73220,3 +73220,11 @@ class MouseAnatomicalStructure: ], Field(discriminator="registry_identifier"), ] + +MouseAnatomicalStructure.BLOOD_VESSELS = Annotated[ + Union[ + _Carotid_Artery, + _Jugular_Vein, + ], + Field(discriminator="registry_identifier"), +]