valuesets 0.3.1__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of valuesets might be problematic. Click here for more details.
- valuesets/__init__.py +7 -0
- valuesets/_version.py +8 -0
- valuesets/datamodel/valuesets.py +13796 -0
- valuesets/datamodel/valuesets_dataclass.py +24503 -0
- valuesets/datamodel/valuesets_pydantic.py +13796 -0
- valuesets/enums/__init__.py +590 -0
- valuesets/enums/academic/__init__.py +1 -0
- valuesets/enums/academic/research.py +559 -0
- valuesets/enums/analytical_chemistry/__init__.py +1 -0
- valuesets/enums/analytical_chemistry/mass_spectrometry.py +198 -0
- valuesets/enums/bio/__init__.py +1 -0
- valuesets/enums/bio/biological_colors.py +238 -0
- valuesets/enums/bio/cell_cycle.py +180 -0
- valuesets/enums/bio/currency_chemicals.py +52 -0
- valuesets/enums/bio/developmental_stages.py +103 -0
- valuesets/enums/bio/genome_features.py +182 -0
- valuesets/enums/bio/genomics.py +91 -0
- valuesets/enums/bio/go_aspect.py +32 -0
- valuesets/enums/bio/go_causality.py +58 -0
- valuesets/enums/bio/go_evidence.py +129 -0
- valuesets/enums/bio/human_developmental_stages.py +62 -0
- valuesets/enums/bio/insdc_geographic_locations.py +591 -0
- valuesets/enums/bio/insdc_missing_values.py +49 -0
- valuesets/enums/bio/lipid_categories.py +67 -0
- valuesets/enums/bio/mouse_developmental_stages.py +62 -0
- valuesets/enums/bio/plant_biology.py +86 -0
- valuesets/enums/bio/plant_developmental_stages.py +54 -0
- valuesets/enums/bio/plant_sex.py +81 -0
- valuesets/enums/bio/protein_evidence.py +61 -0
- valuesets/enums/bio/proteomics_standards.py +123 -0
- valuesets/enums/bio/psi_mi.py +306 -0
- valuesets/enums/bio/relationship_to_oxygen.py +37 -0
- valuesets/enums/bio/sequence_alphabets.py +449 -0
- valuesets/enums/bio/sequence_chemistry.py +357 -0
- valuesets/enums/bio/sequencing_platforms.py +302 -0
- valuesets/enums/bio/structural_biology.py +320 -0
- valuesets/enums/bio/taxonomy.py +238 -0
- valuesets/enums/bio/trophic_levels.py +85 -0
- valuesets/enums/bio/uniprot_species.py +344 -0
- valuesets/enums/bio/viral_genome_types.py +47 -0
- valuesets/enums/bioprocessing/__init__.py +1 -0
- valuesets/enums/bioprocessing/scale_up.py +249 -0
- valuesets/enums/business/__init__.py +1 -0
- valuesets/enums/business/human_resources.py +275 -0
- valuesets/enums/business/industry_classifications.py +181 -0
- valuesets/enums/business/management_operations.py +228 -0
- valuesets/enums/business/organizational_structures.py +236 -0
- valuesets/enums/business/quality_management.py +181 -0
- valuesets/enums/business/supply_chain.py +232 -0
- valuesets/enums/chemistry/__init__.py +1 -0
- valuesets/enums/chemistry/chemical_entities.py +315 -0
- valuesets/enums/chemistry/reaction_directionality.py +65 -0
- valuesets/enums/chemistry/reactions.py +256 -0
- valuesets/enums/clinical/__init__.py +1 -0
- valuesets/enums/clinical/nih_demographics.py +177 -0
- valuesets/enums/clinical/phenopackets.py +254 -0
- valuesets/enums/common_value_sets.py +8791 -0
- valuesets/enums/computing/__init__.py +1 -0
- valuesets/enums/computing/file_formats.py +294 -0
- valuesets/enums/computing/maturity_levels.py +196 -0
- valuesets/enums/computing/mime_types.py +227 -0
- valuesets/enums/confidence_levels.py +168 -0
- valuesets/enums/contributor.py +30 -0
- valuesets/enums/core.py +42 -0
- valuesets/enums/data/__init__.py +1 -0
- valuesets/enums/data/data_absent_reason.py +53 -0
- valuesets/enums/data_science/__init__.py +1 -0
- valuesets/enums/data_science/binary_classification.py +87 -0
- valuesets/enums/data_science/emotion_classification.py +66 -0
- valuesets/enums/data_science/priority_severity.py +73 -0
- valuesets/enums/data_science/quality_control.py +46 -0
- valuesets/enums/data_science/sentiment_analysis.py +50 -0
- valuesets/enums/data_science/text_classification.py +97 -0
- valuesets/enums/demographics.py +206 -0
- valuesets/enums/ecological_interactions.py +151 -0
- valuesets/enums/energy/__init__.py +1 -0
- valuesets/enums/energy/energy.py +343 -0
- valuesets/enums/energy/fossil_fuels.py +29 -0
- valuesets/enums/energy/nuclear/__init__.py +1 -0
- valuesets/enums/energy/nuclear/nuclear_facilities.py +195 -0
- valuesets/enums/energy/nuclear/nuclear_fuel_cycle.py +96 -0
- valuesets/enums/energy/nuclear/nuclear_fuels.py +175 -0
- valuesets/enums/energy/nuclear/nuclear_operations.py +191 -0
- valuesets/enums/energy/nuclear/nuclear_regulatory.py +188 -0
- valuesets/enums/energy/nuclear/nuclear_safety.py +164 -0
- valuesets/enums/energy/nuclear/nuclear_waste.py +158 -0
- valuesets/enums/energy/nuclear/reactor_types.py +163 -0
- valuesets/enums/environmental_health/__init__.py +1 -0
- valuesets/enums/environmental_health/exposures.py +265 -0
- valuesets/enums/geography/__init__.py +1 -0
- valuesets/enums/geography/geographic_codes.py +741 -0
- valuesets/enums/health/__init__.py +12 -0
- valuesets/enums/health/vaccination.py +98 -0
- valuesets/enums/health.py +36 -0
- valuesets/enums/health_base.py +36 -0
- valuesets/enums/healthcare.py +45 -0
- valuesets/enums/industry/__init__.py +1 -0
- valuesets/enums/industry/extractive_industry.py +94 -0
- valuesets/enums/industry/mining.py +388 -0
- valuesets/enums/industry/safety_colors.py +201 -0
- valuesets/enums/investigation.py +27 -0
- valuesets/enums/materials_science/__init__.py +1 -0
- valuesets/enums/materials_science/characterization_methods.py +112 -0
- valuesets/enums/materials_science/crystal_structures.py +76 -0
- valuesets/enums/materials_science/material_properties.py +119 -0
- valuesets/enums/materials_science/material_types.py +104 -0
- valuesets/enums/materials_science/pigments_dyes.py +198 -0
- valuesets/enums/materials_science/synthesis_methods.py +109 -0
- valuesets/enums/medical/__init__.py +1 -0
- valuesets/enums/medical/clinical.py +277 -0
- valuesets/enums/medical/neuroimaging.py +119 -0
- valuesets/enums/mining_processing.py +302 -0
- valuesets/enums/physics/__init__.py +1 -0
- valuesets/enums/physics/states_of_matter.py +46 -0
- valuesets/enums/social/__init__.py +1 -0
- valuesets/enums/social/person_status.py +29 -0
- valuesets/enums/spatial/__init__.py +1 -0
- valuesets/enums/spatial/spatial_qualifiers.py +246 -0
- valuesets/enums/statistics/__init__.py +5 -0
- valuesets/enums/statistics/prediction_outcomes.py +31 -0
- valuesets/enums/statistics.py +31 -0
- valuesets/enums/time/__init__.py +1 -0
- valuesets/enums/time/temporal.py +254 -0
- valuesets/enums/units/__init__.py +1 -0
- valuesets/enums/units/measurements.py +310 -0
- valuesets/enums/visual/__init__.py +1 -0
- valuesets/enums/visual/colors.py +376 -0
- valuesets/generators/__init__.py +19 -0
- valuesets/generators/auto_slot_injector.py +280 -0
- valuesets/generators/enhanced_pydantic_generator.py +100 -0
- valuesets/generators/enum_slot_generator.py +201 -0
- valuesets/generators/modular_rich_generator.py +353 -0
- valuesets/generators/prefix_standardizer.py +198 -0
- valuesets/generators/rich_enum.py +127 -0
- valuesets/generators/rich_pydantic_generator.py +310 -0
- valuesets/generators/smart_slot_syncer.py +428 -0
- valuesets/generators/sssom_generator.py +394 -0
- valuesets/merged/merged_hierarchy.yaml +21649 -0
- valuesets/schema/README.md +3 -0
- valuesets/schema/academic/research.yaml +911 -0
- valuesets/schema/analytical_chemistry/mass_spectrometry.yaml +206 -0
- valuesets/schema/bio/bio_entities.yaml +364 -0
- valuesets/schema/bio/biological_colors.yaml +434 -0
- valuesets/schema/bio/cell_cycle.yaml +309 -0
- valuesets/schema/bio/currency_chemicals.yaml +70 -0
- valuesets/schema/bio/developmental_stages.yaml +226 -0
- valuesets/schema/bio/genome_features.yaml +342 -0
- valuesets/schema/bio/genomics.yaml +101 -0
- valuesets/schema/bio/go_aspect.yaml +39 -0
- valuesets/schema/bio/go_causality.yaml +119 -0
- valuesets/schema/bio/go_evidence.yaml +215 -0
- valuesets/schema/bio/insdc_geographic_locations.yaml +911 -0
- valuesets/schema/bio/insdc_missing_values.yaml +85 -0
- valuesets/schema/bio/lipid_categories.yaml +72 -0
- valuesets/schema/bio/plant_biology.yaml +125 -0
- valuesets/schema/bio/plant_developmental_stages.yaml +77 -0
- valuesets/schema/bio/plant_sex.yaml +108 -0
- valuesets/schema/bio/protein_evidence.yaml +63 -0
- valuesets/schema/bio/proteomics_standards.yaml +116 -0
- valuesets/schema/bio/psi_mi.yaml +400 -0
- valuesets/schema/bio/relationship_to_oxygen.yaml +46 -0
- valuesets/schema/bio/sequence_alphabets.yaml +1168 -0
- valuesets/schema/bio/sequence_chemistry.yaml +477 -0
- valuesets/schema/bio/sequencing_platforms.yaml +515 -0
- valuesets/schema/bio/structural_biology.yaml +428 -0
- valuesets/schema/bio/taxonomy.yaml +453 -0
- valuesets/schema/bio/trophic_levels.yaml +118 -0
- valuesets/schema/bio/uniprot_species.yaml +1209 -0
- valuesets/schema/bio/viral_genome_types.yaml +99 -0
- valuesets/schema/bioprocessing/scale_up.yaml +458 -0
- valuesets/schema/business/human_resources.yaml +752 -0
- valuesets/schema/business/industry_classifications.yaml +448 -0
- valuesets/schema/business/management_operations.yaml +602 -0
- valuesets/schema/business/organizational_structures.yaml +645 -0
- valuesets/schema/business/quality_management.yaml +502 -0
- valuesets/schema/business/supply_chain.yaml +688 -0
- valuesets/schema/chemistry/chemical_entities.yaml +639 -0
- valuesets/schema/chemistry/reaction_directionality.yaml +60 -0
- valuesets/schema/chemistry/reactions.yaml +442 -0
- valuesets/schema/clinical/nih_demographics.yaml +285 -0
- valuesets/schema/clinical/phenopackets.yaml +429 -0
- valuesets/schema/computing/file_formats.yaml +631 -0
- valuesets/schema/computing/maturity_levels.yaml +229 -0
- valuesets/schema/computing/mime_types.yaml +266 -0
- valuesets/schema/confidence_levels.yaml +206 -0
- valuesets/schema/contributor.yaml +30 -0
- valuesets/schema/core.yaml +55 -0
- valuesets/schema/data/data_absent_reason.yaml +82 -0
- valuesets/schema/data_science/binary_classification.yaml +125 -0
- valuesets/schema/data_science/emotion_classification.yaml +109 -0
- valuesets/schema/data_science/priority_severity.yaml +122 -0
- valuesets/schema/data_science/quality_control.yaml +68 -0
- valuesets/schema/data_science/sentiment_analysis.yaml +81 -0
- valuesets/schema/data_science/text_classification.yaml +135 -0
- valuesets/schema/demographics.yaml +238 -0
- valuesets/schema/ecological_interactions.yaml +298 -0
- valuesets/schema/energy/energy.yaml +595 -0
- valuesets/schema/energy/fossil_fuels.yaml +28 -0
- valuesets/schema/energy/nuclear/nuclear_facilities.yaml +463 -0
- valuesets/schema/energy/nuclear/nuclear_fuel_cycle.yaml +82 -0
- valuesets/schema/energy/nuclear/nuclear_fuels.yaml +421 -0
- valuesets/schema/energy/nuclear/nuclear_operations.yaml +480 -0
- valuesets/schema/energy/nuclear/nuclear_regulatory.yaml +200 -0
- valuesets/schema/energy/nuclear/nuclear_safety.yaml +352 -0
- valuesets/schema/energy/nuclear/nuclear_waste.yaml +332 -0
- valuesets/schema/energy/nuclear/reactor_types.yaml +394 -0
- valuesets/schema/environmental_health/exposures.yaml +355 -0
- valuesets/schema/generated_slots.yaml +1828 -0
- valuesets/schema/geography/geographic_codes.yaml +1018 -0
- valuesets/schema/health/vaccination.yaml +102 -0
- valuesets/schema/health.yaml +38 -0
- valuesets/schema/healthcare.yaml +53 -0
- valuesets/schema/industry/extractive_industry.yaml +89 -0
- valuesets/schema/industry/mining.yaml +888 -0
- valuesets/schema/industry/safety_colors.yaml +375 -0
- valuesets/schema/investigation.yaml +64 -0
- valuesets/schema/materials_science/characterization_methods.yaml +193 -0
- valuesets/schema/materials_science/crystal_structures.yaml +138 -0
- valuesets/schema/materials_science/material_properties.yaml +135 -0
- valuesets/schema/materials_science/material_types.yaml +151 -0
- valuesets/schema/materials_science/pigments_dyes.yaml +465 -0
- valuesets/schema/materials_science/synthesis_methods.yaml +186 -0
- valuesets/schema/medical/clinical.yaml +610 -0
- valuesets/schema/medical/neuroimaging.yaml +325 -0
- valuesets/schema/mining_processing.yaml +295 -0
- valuesets/schema/physics/states_of_matter.yaml +46 -0
- valuesets/schema/slot_mixins.yaml +143 -0
- valuesets/schema/social/person_status.yaml +28 -0
- valuesets/schema/spatial/spatial_qualifiers.yaml +466 -0
- valuesets/schema/statistics/prediction_outcomes.yaml +26 -0
- valuesets/schema/statistics.yaml +34 -0
- valuesets/schema/time/temporal.yaml +435 -0
- valuesets/schema/types.yaml +15 -0
- valuesets/schema/units/measurements.yaml +675 -0
- valuesets/schema/valuesets.yaml +100 -0
- valuesets/schema/visual/colors.yaml +778 -0
- valuesets/utils/__init__.py +6 -0
- valuesets/utils/comparison.py +102 -0
- valuesets/utils/expand_dynamic_enums.py +414 -0
- valuesets/utils/mapping_utils.py +236 -0
- valuesets/validators/__init__.py +11 -0
- valuesets/validators/enum_evaluator.py +669 -0
- valuesets/validators/oak_config.yaml +70 -0
- valuesets/validators/validate_with_ols.py +241 -0
- valuesets-0.3.1.dist-info/METADATA +395 -0
- valuesets-0.3.1.dist-info/RECORD +248 -0
- valuesets-0.3.1.dist-info/WHEEL +4 -0
- valuesets-0.3.1.dist-info/licenses/LICENSE +201 -0
|
@@ -0,0 +1,143 @@
|
|
|
1
|
+
name: slot_mixins
|
|
2
|
+
title: Slot Mixins for Value Sets
|
|
3
|
+
description: 'Mixin classes and slot definitions that can be used with value set enums. This provides a pattern for creating
|
|
4
|
+
slots that reference the enums defined in other schema modules.
|
|
5
|
+
|
|
6
|
+
'
|
|
7
|
+
id: https://w3id.org/valuesets/slot-mixins
|
|
8
|
+
version: 1.0.0
|
|
9
|
+
status: release
|
|
10
|
+
imports:
|
|
11
|
+
- linkml:types
|
|
12
|
+
prefixes:
|
|
13
|
+
linkml: https://w3id.org/linkml/
|
|
14
|
+
# cval: https://w3id.org/linkml-common/
|
|
15
|
+
valuesets: https://w3id.org/valuesets/
|
|
16
|
+
default_prefix: valuesets
|
|
17
|
+
default_curi_maps:
|
|
18
|
+
- semweb_context
|
|
19
|
+
slots:
|
|
20
|
+
status:
|
|
21
|
+
description: The status or state of an entity
|
|
22
|
+
range: string
|
|
23
|
+
confidence_level:
|
|
24
|
+
description: The level of confidence in a measurement, observation or assertion
|
|
25
|
+
range: string
|
|
26
|
+
gender_identity:
|
|
27
|
+
description: The gender identity of a person
|
|
28
|
+
range: string
|
|
29
|
+
sex_at_birth:
|
|
30
|
+
description: The sex assigned at birth
|
|
31
|
+
range: string
|
|
32
|
+
race:
|
|
33
|
+
description: The race classification
|
|
34
|
+
range: string
|
|
35
|
+
ethnicity:
|
|
36
|
+
description: The ethnicity classification
|
|
37
|
+
range: string
|
|
38
|
+
diagnosis_type:
|
|
39
|
+
description: The type or classification of a diagnosis
|
|
40
|
+
range: string
|
|
41
|
+
procedure_type:
|
|
42
|
+
description: The type or classification of a medical procedure
|
|
43
|
+
range: string
|
|
44
|
+
medication_route:
|
|
45
|
+
description: The route of medication administration
|
|
46
|
+
range: string
|
|
47
|
+
study_design:
|
|
48
|
+
description: The design methodology of a study
|
|
49
|
+
range: string
|
|
50
|
+
statistical_test:
|
|
51
|
+
description: The statistical test applied
|
|
52
|
+
range: string
|
|
53
|
+
biotic_interaction_type:
|
|
54
|
+
description: The type of biotic interaction between organisms
|
|
55
|
+
range: string
|
|
56
|
+
mineralogy_feedstock_class:
|
|
57
|
+
description: The classification of mineral feedstock source
|
|
58
|
+
range: string
|
|
59
|
+
beneficiation_pathway:
|
|
60
|
+
description: The mineral separation and concentration method
|
|
61
|
+
range: string
|
|
62
|
+
in_situ_chemistry_regime:
|
|
63
|
+
description: The chemical leaching system for in-situ extraction
|
|
64
|
+
range: string
|
|
65
|
+
extractable_target_element:
|
|
66
|
+
description: The target element for extraction
|
|
67
|
+
multivalued: true
|
|
68
|
+
range: string
|
|
69
|
+
sensor_while_drilling_feature:
|
|
70
|
+
description: The MWD/LWD measurement feature
|
|
71
|
+
multivalued: true
|
|
72
|
+
range: string
|
|
73
|
+
process_performance_metric:
|
|
74
|
+
description: The key performance indicator for mining/processing
|
|
75
|
+
multivalued: true
|
|
76
|
+
range: string
|
|
77
|
+
bioleach_organism:
|
|
78
|
+
description: The microorganism used in bioleaching
|
|
79
|
+
range: string
|
|
80
|
+
bioleach_mode:
|
|
81
|
+
description: The mechanism of bioleaching
|
|
82
|
+
range: string
|
|
83
|
+
autonomy_level:
|
|
84
|
+
description: The level of autonomy for mining systems
|
|
85
|
+
range: string
|
|
86
|
+
regulatory_constraint:
|
|
87
|
+
description: The regulatory or community constraint
|
|
88
|
+
multivalued: true
|
|
89
|
+
range: string
|
|
90
|
+
classes:
|
|
91
|
+
DemographicsMixin:
|
|
92
|
+
mixin: true
|
|
93
|
+
description: Mixin providing demographic-related slots
|
|
94
|
+
slots:
|
|
95
|
+
- gender_identity
|
|
96
|
+
- sex_at_birth
|
|
97
|
+
- race
|
|
98
|
+
- ethnicity
|
|
99
|
+
HealthcareMixin:
|
|
100
|
+
mixin: true
|
|
101
|
+
description: Mixin providing healthcare-related slots
|
|
102
|
+
slots:
|
|
103
|
+
- diagnosis_type
|
|
104
|
+
- procedure_type
|
|
105
|
+
- medication_route
|
|
106
|
+
StudyMixin:
|
|
107
|
+
mixin: true
|
|
108
|
+
description: Mixin providing study/investigation-related slots
|
|
109
|
+
slots:
|
|
110
|
+
- study_design
|
|
111
|
+
- statistical_test
|
|
112
|
+
- confidence_level
|
|
113
|
+
MiningProcessMixin:
|
|
114
|
+
mixin: true
|
|
115
|
+
description: Mixin providing mining and processing-related slots
|
|
116
|
+
slots:
|
|
117
|
+
- mineralogy_feedstock_class
|
|
118
|
+
- beneficiation_pathway
|
|
119
|
+
- extractable_target_element
|
|
120
|
+
- process_performance_metric
|
|
121
|
+
BioleachingMixin:
|
|
122
|
+
mixin: true
|
|
123
|
+
description: Mixin providing bioleaching-specific slots
|
|
124
|
+
slots:
|
|
125
|
+
- bioleach_organism
|
|
126
|
+
- bioleach_mode
|
|
127
|
+
- in_situ_chemistry_regime
|
|
128
|
+
MiningAutomationMixin:
|
|
129
|
+
mixin: true
|
|
130
|
+
description: Mixin providing mining automation-related slots
|
|
131
|
+
slots:
|
|
132
|
+
- autonomy_level
|
|
133
|
+
- sensor_while_drilling_feature
|
|
134
|
+
RegulatoryMixin:
|
|
135
|
+
mixin: true
|
|
136
|
+
description: Mixin providing regulatory and compliance slots
|
|
137
|
+
slots:
|
|
138
|
+
- regulatory_constraint
|
|
139
|
+
EcologicalInteractionMixin:
|
|
140
|
+
mixin: true
|
|
141
|
+
description: Mixin providing ecological interaction slots
|
|
142
|
+
slots:
|
|
143
|
+
- biotic_interaction_type
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
name: person_status
|
|
2
|
+
id: https://w3id.org/linkml/valuesets/social/person_status
|
|
3
|
+
prefixes:
|
|
4
|
+
PATO: http://purl.obolibrary.org/obo/PATO_
|
|
5
|
+
# linkml_common: https://w3id.org/linkml-common/
|
|
6
|
+
NCIT: http://purl.obolibrary.org/obo/NCIT_
|
|
7
|
+
valuesets: https://w3id.org/valuesets/
|
|
8
|
+
default_prefix: valuesets
|
|
9
|
+
slots:
|
|
10
|
+
person_status:
|
|
11
|
+
description: Vital status of a person (living or deceased)
|
|
12
|
+
range: PersonStatusEnum
|
|
13
|
+
enums:
|
|
14
|
+
PersonStatusEnum:
|
|
15
|
+
description: Vital status of a person (living or deceased)
|
|
16
|
+
permissible_values:
|
|
17
|
+
ALIVE:
|
|
18
|
+
description: The person is living
|
|
19
|
+
meaning: PATO:0001421
|
|
20
|
+
title: Alive
|
|
21
|
+
DEAD:
|
|
22
|
+
description: The person is deceased
|
|
23
|
+
meaning: PATO:0001422
|
|
24
|
+
title: Dead
|
|
25
|
+
UNKNOWN:
|
|
26
|
+
description: The vital status is not known
|
|
27
|
+
meaning: NCIT:C17998
|
|
28
|
+
title: Unknown
|
|
@@ -0,0 +1,466 @@
|
|
|
1
|
+
name: spatial_qualifiers
|
|
2
|
+
title: Spatial Qualifier Value Sets
|
|
3
|
+
description: 'Value sets for spatial qualifiers, directions, and anatomical positions,
|
|
4
|
+
|
|
5
|
+
including both simple directional terms and biological spatial terminology'
|
|
6
|
+
id: https://w3id.org/linkml/valuesets/spatial/spatial_qualifiers
|
|
7
|
+
imports:
|
|
8
|
+
- linkml:types
|
|
9
|
+
prefixes:
|
|
10
|
+
valuesets: https://w3id.org/valuesets/
|
|
11
|
+
BSPO: http://purl.obolibrary.org/obo/BSPO_
|
|
12
|
+
PATO: http://purl.obolibrary.org/obo/PATO_
|
|
13
|
+
UBERON: http://purl.obolibrary.org/obo/UBERON_
|
|
14
|
+
default_prefix: valuesets
|
|
15
|
+
slots:
|
|
16
|
+
simple_spatial_direction:
|
|
17
|
+
description: Basic spatial directional terms for general use
|
|
18
|
+
range: SimpleSpatialDirection
|
|
19
|
+
anatomical_side:
|
|
20
|
+
description: Anatomical sides as defined in the Biological Spatial Ontology (BSPO)
|
|
21
|
+
range: AnatomicalSide
|
|
22
|
+
anatomical_region:
|
|
23
|
+
description: Anatomical regions based on spatial position
|
|
24
|
+
range: AnatomicalRegion
|
|
25
|
+
anatomical_axis:
|
|
26
|
+
description: Anatomical axes defining spatial organization
|
|
27
|
+
range: AnatomicalAxis
|
|
28
|
+
anatomical_plane:
|
|
29
|
+
description: Standard anatomical planes for sectioning
|
|
30
|
+
range: AnatomicalPlane
|
|
31
|
+
spatial_relationship:
|
|
32
|
+
description: Spatial relationships between anatomical structures
|
|
33
|
+
range: SpatialRelationship
|
|
34
|
+
cell_polarity:
|
|
35
|
+
description: Spatial polarity in cells and tissues
|
|
36
|
+
range: CellPolarity
|
|
37
|
+
enums:
|
|
38
|
+
SimpleSpatialDirection:
|
|
39
|
+
description: Basic spatial directional terms for general use
|
|
40
|
+
permissible_values:
|
|
41
|
+
LEFT:
|
|
42
|
+
description: To the left side
|
|
43
|
+
RIGHT:
|
|
44
|
+
description: To the right side
|
|
45
|
+
FORWARD:
|
|
46
|
+
description: In the forward direction
|
|
47
|
+
annotations:
|
|
48
|
+
aliases: ahead, front
|
|
49
|
+
BACKWARD:
|
|
50
|
+
description: In the backward direction
|
|
51
|
+
annotations:
|
|
52
|
+
aliases: back, behind, rear
|
|
53
|
+
UP:
|
|
54
|
+
description: In the upward direction
|
|
55
|
+
annotations:
|
|
56
|
+
aliases: above, upward
|
|
57
|
+
DOWN:
|
|
58
|
+
description: In the downward direction
|
|
59
|
+
annotations:
|
|
60
|
+
aliases: below, downward
|
|
61
|
+
INWARD:
|
|
62
|
+
description: Toward the center or interior
|
|
63
|
+
annotations:
|
|
64
|
+
aliases: medial, toward center
|
|
65
|
+
OUTWARD:
|
|
66
|
+
description: Away from the center or exterior
|
|
67
|
+
annotations:
|
|
68
|
+
aliases: peripheral, away from center
|
|
69
|
+
TOP:
|
|
70
|
+
description: At or toward the top
|
|
71
|
+
annotations:
|
|
72
|
+
aliases: upper, uppermost
|
|
73
|
+
BOTTOM:
|
|
74
|
+
description: At or toward the bottom
|
|
75
|
+
annotations:
|
|
76
|
+
aliases: lower, lowermost
|
|
77
|
+
MIDDLE:
|
|
78
|
+
description: At or toward the middle
|
|
79
|
+
annotations:
|
|
80
|
+
aliases: center, central
|
|
81
|
+
AnatomicalSide:
|
|
82
|
+
description: 'Anatomical sides as defined in the Biological Spatial Ontology (BSPO).
|
|
83
|
+
|
|
84
|
+
An anatomical region bounded by a plane perpendicular to an axis through the middle.'
|
|
85
|
+
permissible_values:
|
|
86
|
+
LEFT:
|
|
87
|
+
title: Left side of a bilaterally symmetric organism
|
|
88
|
+
aliases:
|
|
89
|
+
- left side
|
|
90
|
+
meaning: BSPO:0000000
|
|
91
|
+
RIGHT:
|
|
92
|
+
title: Right side of a bilaterally symmetric organism
|
|
93
|
+
aliases:
|
|
94
|
+
- right side
|
|
95
|
+
meaning: BSPO:0000007
|
|
96
|
+
ANTERIOR:
|
|
97
|
+
title: Front/ventral side in most animals, toward the head
|
|
98
|
+
aliases:
|
|
99
|
+
- anterior side
|
|
100
|
+
meaning: BSPO:0000055
|
|
101
|
+
annotations:
|
|
102
|
+
aliases: front, rostral, cranial (in head region)
|
|
103
|
+
POSTERIOR:
|
|
104
|
+
title: Back/dorsal side in most animals, toward the tail
|
|
105
|
+
aliases:
|
|
106
|
+
- posterior side
|
|
107
|
+
meaning: BSPO:0000056
|
|
108
|
+
annotations:
|
|
109
|
+
aliases: back, caudal
|
|
110
|
+
DORSAL:
|
|
111
|
+
title: Back side of organism (top in humans when standing)
|
|
112
|
+
aliases:
|
|
113
|
+
- dorsal side
|
|
114
|
+
meaning: BSPO:0000063
|
|
115
|
+
annotations:
|
|
116
|
+
aliases: back (in vertebrates), upper (in humans)
|
|
117
|
+
VENTRAL:
|
|
118
|
+
title: Belly side of organism (front in humans when standing)
|
|
119
|
+
aliases:
|
|
120
|
+
- ventral side
|
|
121
|
+
meaning: BSPO:0000068
|
|
122
|
+
annotations:
|
|
123
|
+
aliases: belly, front (in vertebrates), lower (in humans)
|
|
124
|
+
LATERAL:
|
|
125
|
+
title: Away from the midline
|
|
126
|
+
aliases:
|
|
127
|
+
- lateral side
|
|
128
|
+
meaning: BSPO:0000066
|
|
129
|
+
annotations:
|
|
130
|
+
aliases: side, outer
|
|
131
|
+
MEDIAL:
|
|
132
|
+
title: Toward the midline
|
|
133
|
+
aliases:
|
|
134
|
+
- medial side
|
|
135
|
+
meaning: BSPO:0000067
|
|
136
|
+
annotations:
|
|
137
|
+
aliases: inner, middle
|
|
138
|
+
PROXIMAL:
|
|
139
|
+
title: Closer to the point of attachment or origin
|
|
140
|
+
aliases:
|
|
141
|
+
- proximal side
|
|
142
|
+
meaning: BSPO:0000061
|
|
143
|
+
annotations:
|
|
144
|
+
context: commonly used for limbs
|
|
145
|
+
DISTAL:
|
|
146
|
+
title: Further from the point of attachment or origin
|
|
147
|
+
aliases:
|
|
148
|
+
- distal side
|
|
149
|
+
meaning: BSPO:0000062
|
|
150
|
+
annotations:
|
|
151
|
+
context: commonly used for limbs
|
|
152
|
+
APICAL:
|
|
153
|
+
title: At or toward the apex or tip
|
|
154
|
+
aliases:
|
|
155
|
+
- apical side
|
|
156
|
+
meaning: BSPO:0000057
|
|
157
|
+
annotations:
|
|
158
|
+
context: cells, organs, organisms
|
|
159
|
+
BASAL:
|
|
160
|
+
title: At or toward the base
|
|
161
|
+
aliases:
|
|
162
|
+
- basal side
|
|
163
|
+
meaning: BSPO:0000058
|
|
164
|
+
annotations:
|
|
165
|
+
context: cells, organs, organisms
|
|
166
|
+
SUPERFICIAL:
|
|
167
|
+
title: Near the surface
|
|
168
|
+
aliases:
|
|
169
|
+
- superficial side
|
|
170
|
+
meaning: BSPO:0000004
|
|
171
|
+
annotations:
|
|
172
|
+
aliases: external, outer
|
|
173
|
+
DEEP:
|
|
174
|
+
title: Away from the surface
|
|
175
|
+
aliases:
|
|
176
|
+
- deep side
|
|
177
|
+
meaning: BSPO:0000003
|
|
178
|
+
annotations:
|
|
179
|
+
aliases: internal, inner
|
|
180
|
+
SUPERIOR:
|
|
181
|
+
title: Above or upper (in standard anatomical position)
|
|
182
|
+
aliases:
|
|
183
|
+
- superior side
|
|
184
|
+
meaning: BSPO:0000022
|
|
185
|
+
annotations:
|
|
186
|
+
aliases: cranial (toward head), upper
|
|
187
|
+
INFERIOR:
|
|
188
|
+
title: Below or lower (in standard anatomical position)
|
|
189
|
+
aliases:
|
|
190
|
+
- inferior side
|
|
191
|
+
meaning: BSPO:0000025
|
|
192
|
+
annotations:
|
|
193
|
+
aliases: caudal (toward tail), lower
|
|
194
|
+
IPSILATERAL:
|
|
195
|
+
title: On the same side
|
|
196
|
+
aliases:
|
|
197
|
+
- ipsilateral side
|
|
198
|
+
meaning: BSPO:0000065
|
|
199
|
+
annotations:
|
|
200
|
+
context: relative to a reference point
|
|
201
|
+
CONTRALATERAL:
|
|
202
|
+
title: On the opposite side
|
|
203
|
+
aliases:
|
|
204
|
+
- contralateral side
|
|
205
|
+
meaning: BSPO:0000060
|
|
206
|
+
annotations:
|
|
207
|
+
context: relative to a reference point
|
|
208
|
+
CENTRAL:
|
|
209
|
+
title: At or near the center
|
|
210
|
+
aliases:
|
|
211
|
+
- central side
|
|
212
|
+
meaning: BSPO:0000059
|
|
213
|
+
annotations:
|
|
214
|
+
aliases: middle
|
|
215
|
+
AnatomicalRegion:
|
|
216
|
+
description: Anatomical regions based on spatial position
|
|
217
|
+
permissible_values:
|
|
218
|
+
ANTERIOR_REGION:
|
|
219
|
+
title: Region in the anterior portion
|
|
220
|
+
aliases:
|
|
221
|
+
- anterior region
|
|
222
|
+
meaning: BSPO:0000071
|
|
223
|
+
POSTERIOR_REGION:
|
|
224
|
+
title: Region in the posterior portion
|
|
225
|
+
aliases:
|
|
226
|
+
- posterior region
|
|
227
|
+
meaning: BSPO:0000072
|
|
228
|
+
DORSAL_REGION:
|
|
229
|
+
title: Region in the dorsal portion
|
|
230
|
+
aliases:
|
|
231
|
+
- dorsal region
|
|
232
|
+
meaning: BSPO:0000079
|
|
233
|
+
VENTRAL_REGION:
|
|
234
|
+
title: Region in the ventral portion
|
|
235
|
+
aliases:
|
|
236
|
+
- ventral region
|
|
237
|
+
meaning: BSPO:0000084
|
|
238
|
+
LATERAL_REGION:
|
|
239
|
+
title: Region in the lateral portion
|
|
240
|
+
aliases:
|
|
241
|
+
- lateral region
|
|
242
|
+
meaning: BSPO:0000082
|
|
243
|
+
MEDIAL_REGION:
|
|
244
|
+
title: Region in the medial portion
|
|
245
|
+
aliases:
|
|
246
|
+
- medial region
|
|
247
|
+
meaning: BSPO:0000083
|
|
248
|
+
PROXIMAL_REGION:
|
|
249
|
+
title: Region in the proximal portion
|
|
250
|
+
aliases:
|
|
251
|
+
- proximal region
|
|
252
|
+
meaning: BSPO:0000077
|
|
253
|
+
DISTAL_REGION:
|
|
254
|
+
title: Region in the distal portion
|
|
255
|
+
aliases:
|
|
256
|
+
- distal region
|
|
257
|
+
meaning: BSPO:0000078
|
|
258
|
+
APICAL_REGION:
|
|
259
|
+
title: Region in the apical portion
|
|
260
|
+
aliases:
|
|
261
|
+
- apical region
|
|
262
|
+
meaning: BSPO:0000073
|
|
263
|
+
BASAL_REGION:
|
|
264
|
+
title: Region in the basal portion
|
|
265
|
+
aliases:
|
|
266
|
+
- basal region
|
|
267
|
+
meaning: BSPO:0000074
|
|
268
|
+
CENTRAL_REGION:
|
|
269
|
+
title: Region in the central portion
|
|
270
|
+
aliases:
|
|
271
|
+
- central region
|
|
272
|
+
meaning: BSPO:0000075
|
|
273
|
+
PERIPHERAL_REGION:
|
|
274
|
+
title: Region in the peripheral portion
|
|
275
|
+
aliases:
|
|
276
|
+
- peripheral region
|
|
277
|
+
meaning: BSPO:0000127
|
|
278
|
+
AnatomicalAxis:
|
|
279
|
+
description: Anatomical axes defining spatial organization
|
|
280
|
+
permissible_values:
|
|
281
|
+
ANTERIOR_POSTERIOR:
|
|
282
|
+
title: Anterior-posterior axis (head-tail axis)
|
|
283
|
+
aliases:
|
|
284
|
+
- anterior-posterior axis
|
|
285
|
+
meaning: BSPO:0000013
|
|
286
|
+
annotations:
|
|
287
|
+
aliases: AP axis, rostrocaudal axis
|
|
288
|
+
DORSAL_VENTRAL:
|
|
289
|
+
title: Dorsal-ventral axis (back-belly axis)
|
|
290
|
+
aliases:
|
|
291
|
+
- dorsal-ventral axis
|
|
292
|
+
meaning: BSPO:0000016
|
|
293
|
+
annotations:
|
|
294
|
+
aliases: DV axis
|
|
295
|
+
LEFT_RIGHT:
|
|
296
|
+
title: Left-right axis (lateral axis)
|
|
297
|
+
aliases:
|
|
298
|
+
- left-right axis
|
|
299
|
+
meaning: BSPO:0000017
|
|
300
|
+
annotations:
|
|
301
|
+
aliases: LR axis, mediolateral axis
|
|
302
|
+
PROXIMAL_DISTAL:
|
|
303
|
+
title: Proximal-distal axis
|
|
304
|
+
aliases:
|
|
305
|
+
- transverse plane
|
|
306
|
+
meaning: BSPO:0000018
|
|
307
|
+
annotations:
|
|
308
|
+
context: commonly used for appendages
|
|
309
|
+
APICAL_BASAL:
|
|
310
|
+
title: Apical-basal axis
|
|
311
|
+
aliases:
|
|
312
|
+
- apical-basal gradient
|
|
313
|
+
meaning: BSPO:0000023
|
|
314
|
+
annotations:
|
|
315
|
+
context: epithelial cells, plant structures
|
|
316
|
+
AnatomicalPlane:
|
|
317
|
+
description: Standard anatomical planes for sectioning
|
|
318
|
+
permissible_values:
|
|
319
|
+
SAGITTAL:
|
|
320
|
+
title: Vertical plane dividing body into left and right
|
|
321
|
+
aliases:
|
|
322
|
+
- sagittal plane
|
|
323
|
+
meaning: BSPO:0000417
|
|
324
|
+
annotations:
|
|
325
|
+
orientation: parallel to the median plane
|
|
326
|
+
MIDSAGITTAL:
|
|
327
|
+
title: Sagittal plane through the midline
|
|
328
|
+
aliases:
|
|
329
|
+
- midsagittal plane
|
|
330
|
+
meaning: BSPO:0000009
|
|
331
|
+
annotations:
|
|
332
|
+
aliases: median plane
|
|
333
|
+
note: divides body into equal left and right halves
|
|
334
|
+
PARASAGITTAL:
|
|
335
|
+
title: Sagittal plane parallel to midline
|
|
336
|
+
aliases:
|
|
337
|
+
- parasagittal plane
|
|
338
|
+
meaning: BSPO:0000008
|
|
339
|
+
annotations:
|
|
340
|
+
note: any sagittal plane not at midline
|
|
341
|
+
CORONAL:
|
|
342
|
+
title: Vertical plane dividing body into anterior and posterior
|
|
343
|
+
aliases:
|
|
344
|
+
- horizontal plane
|
|
345
|
+
meaning: BSPO:0000019
|
|
346
|
+
annotations:
|
|
347
|
+
aliases: frontal plane
|
|
348
|
+
orientation: perpendicular to sagittal plane
|
|
349
|
+
TRANSVERSE:
|
|
350
|
+
title: Horizontal plane dividing body into superior and inferior
|
|
351
|
+
aliases:
|
|
352
|
+
- transverse plane
|
|
353
|
+
meaning: BSPO:0000018
|
|
354
|
+
annotations:
|
|
355
|
+
aliases: horizontal plane, axial plane
|
|
356
|
+
orientation: perpendicular to longitudinal axis
|
|
357
|
+
OBLIQUE:
|
|
358
|
+
description: Any plane not parallel to sagittal, coronal, or transverse planes
|
|
359
|
+
annotations:
|
|
360
|
+
note: angled section
|
|
361
|
+
SpatialRelationship:
|
|
362
|
+
description: Spatial relationships between anatomical structures
|
|
363
|
+
permissible_values:
|
|
364
|
+
ADJACENT_TO:
|
|
365
|
+
title: Next to or adjoining
|
|
366
|
+
aliases:
|
|
367
|
+
- adjacent to
|
|
368
|
+
meaning: RO:0002220
|
|
369
|
+
ANTERIOR_TO:
|
|
370
|
+
title: In front of
|
|
371
|
+
aliases:
|
|
372
|
+
- anterior to
|
|
373
|
+
meaning: BSPO:0000096
|
|
374
|
+
POSTERIOR_TO:
|
|
375
|
+
title: Behind
|
|
376
|
+
aliases:
|
|
377
|
+
- posterior to
|
|
378
|
+
meaning: BSPO:0000099
|
|
379
|
+
DORSAL_TO:
|
|
380
|
+
title: Above/on the back side of
|
|
381
|
+
aliases:
|
|
382
|
+
- dorsal to
|
|
383
|
+
meaning: BSPO:0000098
|
|
384
|
+
VENTRAL_TO:
|
|
385
|
+
title: Below/on the belly side of
|
|
386
|
+
aliases:
|
|
387
|
+
- ventral to
|
|
388
|
+
meaning: BSPO:0000102
|
|
389
|
+
LATERAL_TO:
|
|
390
|
+
title: To the side of
|
|
391
|
+
aliases:
|
|
392
|
+
- lateral to
|
|
393
|
+
meaning: BSPO:0000114
|
|
394
|
+
MEDIAL_TO:
|
|
395
|
+
title: Toward the midline from
|
|
396
|
+
aliases:
|
|
397
|
+
- X medial to y if x is closer to the midsagittal plane than y.
|
|
398
|
+
meaning: BSPO:0000115
|
|
399
|
+
PROXIMAL_TO:
|
|
400
|
+
title: Closer to the origin than
|
|
401
|
+
aliases:
|
|
402
|
+
- proximal to
|
|
403
|
+
meaning: BSPO:0000100
|
|
404
|
+
DISTAL_TO:
|
|
405
|
+
title: Further from the origin than
|
|
406
|
+
aliases:
|
|
407
|
+
- distal to
|
|
408
|
+
meaning: BSPO:0000097
|
|
409
|
+
SUPERFICIAL_TO:
|
|
410
|
+
title: Closer to the surface than
|
|
411
|
+
aliases:
|
|
412
|
+
- superficial to
|
|
413
|
+
meaning: BSPO:0000108
|
|
414
|
+
DEEP_TO:
|
|
415
|
+
title: Further from the surface than
|
|
416
|
+
aliases:
|
|
417
|
+
- deep to
|
|
418
|
+
meaning: BSPO:0000107
|
|
419
|
+
SURROUNDS:
|
|
420
|
+
title: Encircles or encompasses
|
|
421
|
+
aliases:
|
|
422
|
+
- surrounds
|
|
423
|
+
meaning: RO:0002221
|
|
424
|
+
WITHIN:
|
|
425
|
+
description: Inside or contained by
|
|
426
|
+
annotations:
|
|
427
|
+
inverse_of: contains
|
|
428
|
+
BETWEEN:
|
|
429
|
+
description: In the space separating two structures
|
|
430
|
+
annotations:
|
|
431
|
+
note: requires two reference points
|
|
432
|
+
CellPolarity:
|
|
433
|
+
description: Spatial polarity in cells and tissues
|
|
434
|
+
permissible_values:
|
|
435
|
+
APICAL:
|
|
436
|
+
description: The free surface of an epithelial cell
|
|
437
|
+
annotations:
|
|
438
|
+
location: typically faces lumen or external environment
|
|
439
|
+
BASAL:
|
|
440
|
+
description: The attached surface of an epithelial cell
|
|
441
|
+
annotations:
|
|
442
|
+
location: typically attached to basement membrane
|
|
443
|
+
LATERAL:
|
|
444
|
+
description: The sides of an epithelial cell
|
|
445
|
+
annotations:
|
|
446
|
+
location: faces neighboring cells
|
|
447
|
+
APICAL_LATERAL:
|
|
448
|
+
description: Junction between apical and lateral surfaces
|
|
449
|
+
BASAL_LATERAL:
|
|
450
|
+
description: Junction between basal and lateral surfaces
|
|
451
|
+
LEADING_EDGE:
|
|
452
|
+
description: Front of a migrating cell
|
|
453
|
+
annotations:
|
|
454
|
+
context: cell migration
|
|
455
|
+
TRAILING_EDGE:
|
|
456
|
+
description: Rear of a migrating cell
|
|
457
|
+
annotations:
|
|
458
|
+
context: cell migration
|
|
459
|
+
PROXIMAL_POLE:
|
|
460
|
+
description: Pole closer to the cell body
|
|
461
|
+
annotations:
|
|
462
|
+
context: neurons, polarized cells
|
|
463
|
+
DISTAL_POLE:
|
|
464
|
+
description: Pole further from the cell body
|
|
465
|
+
annotations:
|
|
466
|
+
context: neurons, polarized cells
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
name: prediction_outcomes
|
|
2
|
+
id: https://w3id.org/linkml/valuesets/statistics/prediction_outcomes
|
|
3
|
+
prefixes:
|
|
4
|
+
# linkml_common: https://w3id.org/linkml-common/
|
|
5
|
+
valuesets: https://w3id.org/valuesets/
|
|
6
|
+
default_prefix: valuesets
|
|
7
|
+
slots:
|
|
8
|
+
outcome_type:
|
|
9
|
+
description: Types of prediction outcomes for classification tasks
|
|
10
|
+
range: OutcomeTypeEnum
|
|
11
|
+
enums:
|
|
12
|
+
OutcomeTypeEnum:
|
|
13
|
+
description: Types of prediction outcomes for classification tasks
|
|
14
|
+
permissible_values:
|
|
15
|
+
TP:
|
|
16
|
+
description: True Positive
|
|
17
|
+
title: True Positive
|
|
18
|
+
FP:
|
|
19
|
+
description: False Positive
|
|
20
|
+
title: False Positive
|
|
21
|
+
TN:
|
|
22
|
+
description: True Negative
|
|
23
|
+
title: True Negative
|
|
24
|
+
FN:
|
|
25
|
+
description: False Negative
|
|
26
|
+
title: False Negative
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
name: valuesets-statistics
|
|
2
|
+
title: valuesets-statistics
|
|
3
|
+
description: 'Common Data Model Elements: Human and statistics activities'
|
|
4
|
+
id: https://w3id.org/valuesets/statistics
|
|
5
|
+
prefixes:
|
|
6
|
+
# linkml_common: https://w3id.org/valuesets/
|
|
7
|
+
linkml: https://w3id.org/linkml/
|
|
8
|
+
biolink: https://w3id.org/biolink/
|
|
9
|
+
schema: http://schema.org/
|
|
10
|
+
PATO: http://purl.obolibrary.org/obo/PATO_
|
|
11
|
+
fhir: http://hl7.org/fhir/
|
|
12
|
+
prov: http://www.w3.org/ns/prov#
|
|
13
|
+
dcterms: http://purl.org/dc/terms/
|
|
14
|
+
valuesets: https://w3id.org/valuesets/
|
|
15
|
+
default_prefix: valuesets
|
|
16
|
+
slots:
|
|
17
|
+
prediction_outcome:
|
|
18
|
+
description: The prediction outcome classification
|
|
19
|
+
range: PredictionOutcomeType
|
|
20
|
+
enums:
|
|
21
|
+
PredictionOutcomeType:
|
|
22
|
+
permissible_values:
|
|
23
|
+
TP:
|
|
24
|
+
description: True Positive
|
|
25
|
+
FP:
|
|
26
|
+
description: False Positive
|
|
27
|
+
TN:
|
|
28
|
+
description: True Negative
|
|
29
|
+
FN:
|
|
30
|
+
description: False Negative
|
|
31
|
+
license: MIT
|
|
32
|
+
see_also:
|
|
33
|
+
- https://linkml.github.io/valuesets
|
|
34
|
+
default_range: string
|