You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: models_py-autogen/bke_taxonomy.py
+7-7Lines changed: 7 additions & 7 deletions
Original file line number
Diff line number
Diff line change
@@ -134,17 +134,17 @@ class CellTypeSetType(str, Enum):
134
134
135
135
class Region(str, Enum):
136
136
# Striatum
137
-
STR = "STR"
137
+
STR = "str"
138
138
# External Globus Pallidus
139
-
GPe = "GPe"
139
+
GPe = "gpe"
140
140
# Internal Globus Pallidus
141
-
GPi = "GPi"
141
+
GPi = "gpi"
142
142
# Substantia Nigra
143
-
SN = "SN"
143
+
SN = "sn"
144
144
# Adjacent Regions
145
-
Adj = "Adj"
145
+
Adj = "adj"
146
146
# Subthalamic Nucleus
147
-
STH = "STH"
147
+
STH = "sth"
148
148
149
149
150
150
@@ -18885,7 +18885,7 @@ class SpatialProportions(ProvEntity, RelativeFrequencyAnalysisResult):
18885
18885
gpi: Optional[float] = Field(default=None, description="""Proportion of composition found in Internal Globus Pallidus""", ge=0, le=1, json_schema_extra = { "linkml_meta": {'alias': 'gpi', 'domain_of': ['SpatialProportions']} })
18886
18886
sn: Optional[float] = Field(default=None, description="""Proportion of composition found in Substantia Nigra""", ge=0, le=1, json_schema_extra = { "linkml_meta": {'alias': 'sn', 'domain_of': ['SpatialProportions']} })
18887
18887
adj: Optional[float] = Field(default=None, description="""Proportion of composition found in Adjacent Regions""", ge=0, le=1, json_schema_extra = { "linkml_meta": {'alias': 'adj', 'domain_of': ['SpatialProportions']} })
18888
-
sth: Optional[float] = Field(default=None, description="""Proportion of composition found in Subthalamic Nucleus""", json_schema_extra = { "linkml_meta": {'alias': 'sth', 'domain_of': ['SpatialProportions']} })
18888
+
sth: Optional[float] = Field(default=None, description="""Proportion of composition found in Subthalamic Nucleus""", ge=0, le=1, json_schema_extra = { "linkml_meta": {'alias': 'sth', 'domain_of': ['SpatialProportions']} })
18889
18889
was_derived_from: Optional[str] = Field(default=None, description="""A derivation is a transformation of an entity into another, an update of an entity resulting in a new one, or the construction of a new entity based on a pre-existing entity.""", json_schema_extra = { "linkml_meta": {'alias': 'was_derived_from',
0 commit comments