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
seqrepo-rest-service_1 | 2022-07-26 15:59:59 seqrepo_rest_service.__main__[1] INFO Using seqrepo_dir='/usr/local/share/seqrepo/2024-02-20' from command line
159
+
seqrepo-rest-service_1 | 2022-07-26 15:59:59 seqrepo_rest_service.__main__[1] INFO Using seqrepo_dir='/usr/local/share/seqrepo/2024-12-20' from command line
160
160
⋮
161
-
seqrepo-rest-service_1 | OSError: Unable to open SeqRepo directory /usr/local/share/seqrepo/2024-02-20
161
+
seqrepo-rest-service_1 | OSError: Unable to open SeqRepo directory /usr/local/share/seqrepo/2024-12-20
162
162
vrs-python_seqrepo-rest-service_1 exited with code 1
Copy file name to clipboardExpand all lines: src/ga4gh/core/models.py
+12-18Lines changed: 12 additions & 18 deletions
Original file line number
Diff line number
Diff line change
@@ -146,13 +146,17 @@ class Coding(Element, BaseModelForbidExtra):
146
146
)
147
147
system: str=Field(
148
148
...,
149
-
description="The terminology/code system that defined the code. May be reported as a free-text name (e.g. 'Sequence Ontology'), but it is preferable to provide a uri/url for the system. When the 'code' is reported as a CURIE, the 'system' should be reported as the uri that the CURIE's prefix expands to (e.g. 'http://purl.obofoundry.org/so.owl/' for the Sequence Ontology).",
149
+
description="The terminology/code system that defined the code. May be reported as a free-text name (e.g. 'Sequence Ontology'), but it is preferable to provide a uri/url for the system.",
150
150
)
151
151
systemVersion: Optional[str] =Field( # noqa: N815
152
152
None,
153
153
description="Version of the terminology or code system that provided the code.",
154
154
)
155
155
code: code# Cannot use Field due to PydanticUserError: field name and type annotation must not clash.
156
+
iris: Optional[list[iriReference]] =Field(
157
+
None,
158
+
description="A list of IRIs that are associated with the coding. This can be used to provide additional context or to link to additional information about the concept.",
description="A primary code for the concept that is used to identify the concept in a terminology or code system. If there is a public code system for the primaryCode then it should also be specified in the mappings array with a relation of 'exactMatch'. This attribute is provided to both allow a more technical code to be used when a public Coding with a system is not available as well as when it is available but should be identified as the primary code.",
209
+
description="A primary coding for the concept.",
206
210
)
207
211
mappings: Optional[list[ConceptMapping]] =Field(
208
212
None,
209
213
description="A list of mappings to concepts in terminologies or code systems. Each mapping should include a coding and a relation.",
210
214
)
211
215
212
-
classga4gh: # noqa: N801
213
-
"""Contain properties used for computing digests"""
0 commit comments