-
Notifications
You must be signed in to change notification settings - Fork 29
/
Copy pathunits.py
130 lines (96 loc) · 5.53 KB
/
units.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
# Auto generated from units.yaml by pythongen.py version: 0.0.1
# Generation date: 2024-06-27T23:15:33
# Schema: units
#
# id: https://w3id.org/linkml/units
# description: Units datamodel
# license: https://creativecommons.org/publicdomain/zero/1.0/
import dataclasses
import re
from linkml_runtime.utils.jsonasobj2 import JsonObj, as_dict
from typing import Optional, List, Union, Dict, ClassVar, Any
from dataclasses import dataclass
from linkml_runtime.utils.slot import Slot
from linkml_runtime.utils.metamodelcore import empty_list, empty_dict, bnode
from linkml_runtime.utils.yamlutils import YAMLRoot, extended_str, extended_float, extended_int
from linkml_runtime.utils.dataclass_extensions_376 import dataclasses_init_fn_with_kwargs
from linkml_runtime.utils.formatutils import camelcase, underscore, sfx
from linkml_runtime.utils.enumerations import EnumDefinitionImpl
from rdflib import Namespace, URIRef
from linkml_runtime.utils.curienamespace import CurieNamespace
from .types import String, Uriorcurie
from linkml_runtime.utils.metamodelcore import URIorCURIE
metamodel_version = "1.7.0"
version = None
# Overwrite dataclasses _init_fn to add **kwargs in __init__
dataclasses._init_fn = dataclasses_init_fn_with_kwargs
# Namespaces
IAO = CurieNamespace('IAO', 'http://purl.obolibrary.org/obo/IAO_')
OIO = CurieNamespace('OIO', 'http://www.geneontology.org/formats/oboInOwl#')
LINKML = CurieNamespace('linkml', 'https://w3id.org/linkml/')
QUDT = CurieNamespace('qudt', 'http://qudt.org/schema/qudt/')
RDF = CurieNamespace('rdf', 'http://www.w3.org/1999/02/22-rdf-syntax-ns#')
RDFS = CurieNamespace('rdfs', 'http://www.w3.org/2000/01/rdf-schema#')
SKOS = CurieNamespace('skos', 'http://www.w3.org/2004/02/skos/core#')
XSD = CurieNamespace('xsd', 'http://www.w3.org/2001/XMLSchema#')
DEFAULT_ = LINKML
# Types
# Class references
@dataclass
class UnitOfMeasure(YAMLRoot):
"""
A unit of measure, or unit, is a particular quantity value that has been chosen as a scale for measuring other
quantities the same kind (more generally of equivalent dimension).
"""
_inherited_slots: ClassVar[List[str]] = []
class_class_uri: ClassVar[URIRef] = QUDT["Unit"]
class_class_curie: ClassVar[str] = "qudt:Unit"
class_name: ClassVar[str] = "UnitOfMeasure"
class_model_uri: ClassVar[URIRef] = LINKML.UnitOfMeasure
symbol: Optional[str] = None
abbreviation: Optional[str] = None
descriptive_name: Optional[str] = None
exact_mappings: Optional[Union[Union[str, URIorCURIE], List[Union[str, URIorCURIE]]]] = empty_list()
ucum_code: Optional[str] = None
derivation: Optional[str] = None
has_quantity_kind: Optional[Union[str, URIorCURIE]] = None
iec61360code: Optional[str] = None
def __post_init__(self, *_: List[str], **kwargs: Dict[str, Any]):
if self.symbol is not None and not isinstance(self.symbol, str):
self.symbol = str(self.symbol)
if self.abbreviation is not None and not isinstance(self.abbreviation, str):
self.abbreviation = str(self.abbreviation)
if self.descriptive_name is not None and not isinstance(self.descriptive_name, str):
self.descriptive_name = str(self.descriptive_name)
if not isinstance(self.exact_mappings, list):
self.exact_mappings = [self.exact_mappings] if self.exact_mappings is not None else []
self.exact_mappings = [v if isinstance(v, URIorCURIE) else URIorCURIE(v) for v in self.exact_mappings]
if self.ucum_code is not None and not isinstance(self.ucum_code, str):
self.ucum_code = str(self.ucum_code)
if self.derivation is not None and not isinstance(self.derivation, str):
self.derivation = str(self.derivation)
if self.has_quantity_kind is not None and not isinstance(self.has_quantity_kind, URIorCURIE):
self.has_quantity_kind = URIorCURIE(self.has_quantity_kind)
if self.iec61360code is not None and not isinstance(self.iec61360code, str):
self.iec61360code = str(self.iec61360code)
super().__post_init__(**kwargs)
# Enumerations
# Slots
class slots:
pass
slots.unit = Slot(uri=QUDT.unit, name="unit", curie=QUDT.curie('unit'),
model_uri=LINKML.unit, domain=None, range=Optional[Union[dict, UnitOfMeasure]])
slots.ucum_code = Slot(uri=QUDT.ucumCode, name="ucum_code", curie=QUDT.curie('ucumCode'),
model_uri=LINKML.ucum_code, domain=UnitOfMeasure, range=Optional[str])
slots.derivation = Slot(uri=LINKML.derivation, name="derivation", curie=LINKML.curie('derivation'),
model_uri=LINKML.derivation, domain=None, range=Optional[str])
slots.has_quantity_kind = Slot(uri=QUDT.hasQuantityKind, name="has_quantity_kind", curie=QUDT.curie('hasQuantityKind'),
model_uri=LINKML.has_quantity_kind, domain=None, range=Optional[Union[str, URIorCURIE]])
slots.iec61360code = Slot(uri=QUDT.iec61360Code, name="iec61360code", curie=QUDT.curie('iec61360Code'),
model_uri=LINKML.iec61360code, domain=None, range=Optional[str])
slots.symbol = Slot(uri=QUDT.symbol, name="symbol", curie=QUDT.curie('symbol'),
model_uri=LINKML.symbol, domain=None, range=Optional[str])
slots.abbreviation = Slot(uri=QUDT.abbreviation, name="abbreviation", curie=QUDT.curie('abbreviation'),
model_uri=LINKML.abbreviation, domain=None, range=Optional[str])
slots.descriptive_name = Slot(uri=RDFS.label, name="descriptive_name", curie=RDFS.curie('label'),
model_uri=LINKML.descriptive_name, domain=None, range=Optional[str])