nmdc-schema 11.12.0rc1__py3-none-any.whl → 11.12.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.
- nmdc_schema/__init__.py +1 -0
- nmdc_schema/migration_recursion.py +2 -0
- nmdc_schema/migrators/cli/run_migrator.py +10 -14
- nmdc_schema/migrators/helpers.py +24 -0
- nmdc_schema/migrators/migrator_from_11_11_0_to_11_12_0.py +35 -0
- nmdc_schema/migrators/partials/migrator_from_11_11_0_to_11_12_0/__init__.py +28 -0
- nmdc_schema/migrators/partials/migrator_from_11_11_0_to_11_12_0/migrator_from_11_11_0_to_11_12_0_part_1.py +187 -0
- nmdc_schema/migrators/partials/migrator_from_11_11_0_to_11_12_0/migrator_from_11_11_0_to_11_12_0_part_2.py +113 -0
- nmdc_schema/nmdc-pydantic.py +306 -128
- nmdc_schema/nmdc.py +152 -13
- nmdc_schema/nmdc.schema.json +149 -4
- nmdc_schema/nmdc_materialized_patterns.json +403 -193
- nmdc_schema/nmdc_materialized_patterns.schema.json +149 -4
- nmdc_schema/nmdc_materialized_patterns.yaml +355 -164
- nmdc_schema/nmdc_schema_validation_plugin.py +103 -0
- {nmdc_schema-11.12.0rc1.dist-info → nmdc_schema-11.12.1.dist-info}/METADATA +1 -1
- {nmdc_schema-11.12.0rc1.dist-info → nmdc_schema-11.12.1.dist-info}/RECORD +20 -15
- {nmdc_schema-11.12.0rc1.dist-info → nmdc_schema-11.12.1.dist-info}/entry_points.txt +0 -1
- {nmdc_schema-11.12.0rc1.dist-info → nmdc_schema-11.12.1.dist-info}/WHEEL +0 -0
- {nmdc_schema-11.12.0rc1.dist-info → nmdc_schema-11.12.1.dist-info}/licenses/LICENSE +0 -0
nmdc_schema/nmdc-pydantic.py
CHANGED
|
@@ -27,7 +27,7 @@ from pydantic import (
|
|
|
27
27
|
|
|
28
28
|
|
|
29
29
|
metamodel_version = "None"
|
|
30
|
-
version = "11.12.
|
|
30
|
+
version = "11.12.1"
|
|
31
31
|
|
|
32
32
|
|
|
33
33
|
class ConfiguredBaseModel(BaseModel):
|
|
@@ -1108,6 +1108,10 @@ class UnitEnum(str, Enum):
|
|
|
1108
1108
|
"""
|
|
1109
1109
|
The Unified Code for Units of Measure (UCUM) representation of atmosphere.
|
|
1110
1110
|
"""
|
|
1111
|
+
V = "V"
|
|
1112
|
+
"""
|
|
1113
|
+
The Unified Code for Units of Measure (UCUM) representation of volt.
|
|
1114
|
+
"""
|
|
1111
1115
|
mV = "mV"
|
|
1112
1116
|
"""
|
|
1113
1117
|
The Unified Code for Units of Measure (UCUM) representation of millivolt.
|
|
@@ -3326,6 +3330,42 @@ class FailureWhereEnum(str, Enum):
|
|
|
3326
3330
|
"""
|
|
3327
3331
|
|
|
3328
3332
|
|
|
3333
|
+
class ProtocolForEnum(str, Enum):
|
|
3334
|
+
"""
|
|
3335
|
+
The permitted values for describing the type of planned process that a protocol describes.
|
|
3336
|
+
"""
|
|
3337
|
+
AnnotatingWorkflow = "AnnotatingWorkflow"
|
|
3338
|
+
ChemicalConversionProcess = "ChemicalConversionProcess"
|
|
3339
|
+
ChromatographicSeparationProcess = "ChromatographicSeparationProcess"
|
|
3340
|
+
CollectingBiosamplesFromSite = "CollectingBiosamplesFromSite"
|
|
3341
|
+
DataEmitterProcess = "DataEmitterProcess"
|
|
3342
|
+
DataGeneration = "DataGeneration"
|
|
3343
|
+
DissolvingProcess = "DissolvingProcess"
|
|
3344
|
+
Extraction = "Extraction"
|
|
3345
|
+
FiltrationProcess = "FiltrationProcess"
|
|
3346
|
+
LibraryPreparation = "LibraryPreparation"
|
|
3347
|
+
MagsAnalysis = "MagsAnalysis"
|
|
3348
|
+
MassSpectrometry = "MassSpectrometry"
|
|
3349
|
+
MaterialProcessing = "MaterialProcessing"
|
|
3350
|
+
MetabolomicsAnalysis = "MetabolomicsAnalysis"
|
|
3351
|
+
MetagenomeAnnotation = "MetagenomeAnnotation"
|
|
3352
|
+
MetagenomeAssembly = "MetagenomeAssembly"
|
|
3353
|
+
MetaproteomicsAnalysis = "MetaproteomicsAnalysis"
|
|
3354
|
+
MetatranscriptomeAnnotation = "MetatranscriptomeAnnotation"
|
|
3355
|
+
MetatranscriptomeAssembly = "MetatranscriptomeAssembly"
|
|
3356
|
+
MetatranscriptomeExpressionAnalysis = "MetatranscriptomeExpressionAnalysis"
|
|
3357
|
+
MixingProcess = "MixingProcess"
|
|
3358
|
+
NomAnalysis = "NomAnalysis"
|
|
3359
|
+
NucleotideSequencing = "NucleotideSequencing"
|
|
3360
|
+
PlannedProcess = "PlannedProcess"
|
|
3361
|
+
Pooling = "Pooling"
|
|
3362
|
+
ReadBasedTaxonomyAnalysis = "ReadBasedTaxonomyAnalysis"
|
|
3363
|
+
ReadQcAnalysis = "ReadQcAnalysis"
|
|
3364
|
+
StorageProcess = "StorageProcess"
|
|
3365
|
+
SubSamplingProcess = "SubSamplingProcess"
|
|
3366
|
+
WorkflowExecution = "WorkflowExecution"
|
|
3367
|
+
|
|
3368
|
+
|
|
3329
3369
|
class SampleTypeEnum(str, Enum):
|
|
3330
3370
|
soil = "soil"
|
|
3331
3371
|
soil___water_extract = "soil - water extract"
|
|
@@ -3707,7 +3747,7 @@ class PortionOfSubstance(ConfiguredBaseModel):
|
|
|
3707
3747
|
|
|
3708
3748
|
final_concentration: Optional[QuantityValue] = Field(default=None, description="""When solutions A (containing substance X) and B are combined together, this slot captures the concentration of X in the combination""", json_schema_extra = { "linkml_meta": {'alias': 'final_concentration',
|
|
3709
3749
|
'annotations': {'storage_units': {'tag': 'storage_units',
|
|
3710
|
-
'value': '%|mmol/L|umol/L'}},
|
|
3750
|
+
'value': '%|mmol/L|umol/L|mg/L|g/L'}},
|
|
3711
3751
|
'domain_of': ['PortionOfSubstance'],
|
|
3712
3752
|
'is_a': 'concentration'} })
|
|
3713
3753
|
mass: Optional[QuantityValue] = Field(default=None, title="mass", description="""A physical quality that inheres in a bearer by virtue of the proportion of the bearer's amount of matter.""", json_schema_extra = { "linkml_meta": {'alias': 'mass',
|
|
@@ -4118,20 +4158,22 @@ class QuantityValue(AttributeValue):
|
|
|
4118
4158
|
'syntax {number} {unit}',
|
|
4119
4159
|
'name': 'has_raw_value'},
|
|
4120
4160
|
'has_unit': {'description': 'The unit of the quantity',
|
|
4121
|
-
'name': 'has_unit'
|
|
4161
|
+
'name': 'has_unit',
|
|
4162
|
+
'range': 'UnitEnum',
|
|
4163
|
+
'required': True}}})
|
|
4122
4164
|
|
|
4123
4165
|
has_maximum_numeric_value: Optional[Decimal] = Field(default=None, description="""The maximum value part, expressed as number, of the quantity value when the value covers a range.""", json_schema_extra = { "linkml_meta": {'alias': 'has_maximum_numeric_value',
|
|
4124
|
-
'domain_of': ['QuantityValue'],
|
|
4166
|
+
'domain_of': ['QuantityValue', 'PropertyAssertion'],
|
|
4125
4167
|
'is_a': 'has_numeric_value'} })
|
|
4126
4168
|
has_minimum_numeric_value: Optional[Decimal] = Field(default=None, description="""The minimum value part, expressed as number, of the quantity value when the value covers a range.""", json_schema_extra = { "linkml_meta": {'alias': 'has_minimum_numeric_value',
|
|
4127
|
-
'domain_of': ['QuantityValue'],
|
|
4169
|
+
'domain_of': ['QuantityValue', 'PropertyAssertion'],
|
|
4128
4170
|
'is_a': 'has_numeric_value'} })
|
|
4129
4171
|
has_numeric_value: Optional[Decimal] = Field(default=None, description="""The number part of the quantity""", json_schema_extra = { "linkml_meta": {'alias': 'has_numeric_value',
|
|
4130
|
-
'domain_of': ['QuantityValue'],
|
|
4172
|
+
'domain_of': ['QuantityValue', 'PropertyAssertion'],
|
|
4131
4173
|
'mappings': ['qud:quantityValue', 'schema:value']} })
|
|
4132
4174
|
has_unit: UnitEnum = Field(default=..., description="""The unit of the quantity""", json_schema_extra = { "linkml_meta": {'alias': 'has_unit',
|
|
4133
4175
|
'aliases': ['scale'],
|
|
4134
|
-
'domain_of': ['QuantityValue'],
|
|
4176
|
+
'domain_of': ['QuantityValue', 'PropertyAssertion'],
|
|
4135
4177
|
'mappings': ['qud:unit', 'schema:unitCode']} })
|
|
4136
4178
|
has_raw_value: Optional[str] = Field(default=None, description="""Unnormalized atomic string representation, should in syntax {number} {unit}""", json_schema_extra = { "linkml_meta": {'alias': 'has_raw_value', 'domain_of': ['AttributeValue']} })
|
|
4137
4179
|
type: Literal["https://w3id.org/nmdc/QuantityValue","nmdc:QuantityValue"] = Field(default="nmdc:QuantityValue", description="""the class_uri of the class that has been instantiated""", json_schema_extra = { "linkml_meta": {'alias': 'type',
|
|
@@ -4539,6 +4581,135 @@ class GeolocationValue(AttributeValue):
|
|
|
4539
4581
|
'predicate': 'NARROW_SYNONYM'}}} })
|
|
4540
4582
|
|
|
4541
4583
|
|
|
4584
|
+
class PropertyAssertion(AttributeValue):
|
|
4585
|
+
"""
|
|
4586
|
+
A structured record of data that doesn't fit nicely within the constraints of other NMDC AttributeValues. Uses primitive ranges only.
|
|
4587
|
+
"""
|
|
4588
|
+
linkml_meta: ClassVar[LinkMLMeta] = LinkMLMeta({'class_uri': 'nmdc:PropertyAssertion',
|
|
4589
|
+
'comments': ['This class enables flexible metadata capture for properties '
|
|
4590
|
+
"that don't align with existing, policy-governed slots in NMDC "
|
|
4591
|
+
'schema.',
|
|
4592
|
+
'Interoperability note: This approach is aligned with the '
|
|
4593
|
+
"BERtron schema's 'properties' slot pattern (see "
|
|
4594
|
+
'https://github.com/ber-data/bertron-schema), which uses any_of '
|
|
4595
|
+
"to support both TextValue and QuantityValue ranges. NMDC's "
|
|
4596
|
+
'PropertyAssertion provides a more granular approach by using '
|
|
4597
|
+
'primitive types with optional semantic annotations, enabling '
|
|
4598
|
+
'better validation while maintaining flexibility for diverse '
|
|
4599
|
+
'metadata types.',
|
|
4600
|
+
'PropertyAssertion supports both categorical values (via '
|
|
4601
|
+
'has_value_term_id) and numeric values (via has_numeric_value '
|
|
4602
|
+
'with optional min/max ranges), along with temporal '
|
|
4603
|
+
'(has_datetime_value) and boolean (has_boolean_value) data '
|
|
4604
|
+
'types.'],
|
|
4605
|
+
'examples': [{'description': "Data provided from submission that doesn't "
|
|
4606
|
+
'conform to required abs_air_humidity units',
|
|
4607
|
+
'object': {'has_attribute_id': 'MIXS:0000122',
|
|
4608
|
+
'has_attribute_label': 'absolute air humidity',
|
|
4609
|
+
'has_numeric_value': 50,
|
|
4610
|
+
'has_raw_value': '50 kPa',
|
|
4611
|
+
'has_unit': 'kPa',
|
|
4612
|
+
'type': 'nmdc:PropertyAssertion'}},
|
|
4613
|
+
{'description': "Data provided from submission that doesn't "
|
|
4614
|
+
'conform to required UCUM unit',
|
|
4615
|
+
'object': {'has_attribute_id': 'MIXS:0000119',
|
|
4616
|
+
'has_attribute_label': 'dissolved oxygen',
|
|
4617
|
+
'has_numeric_value': 5.5,
|
|
4618
|
+
'has_raw_value': '5.5 mL/L',
|
|
4619
|
+
'has_unit': 'mL/L',
|
|
4620
|
+
'type': 'nmdc:PropertyAssertion'}},
|
|
4621
|
+
{'description': 'Unit provided is invalid for UCUM and standard',
|
|
4622
|
+
'object': {'has_attribute_id': 'MIXS:0000112',
|
|
4623
|
+
'has_attribute_label': 'solar irradiance',
|
|
4624
|
+
'has_numeric_value': 250,
|
|
4625
|
+
'has_raw_value': '250 W/m2',
|
|
4626
|
+
'has_unit': 'W/m2',
|
|
4627
|
+
'type': 'nmdc:PropertyAssertion'}}],
|
|
4628
|
+
'from_schema': 'https://w3id.org/nmdc/nmdc',
|
|
4629
|
+
'slot_usage': {'has_raw_value': {'description': 'Original contributor string '
|
|
4630
|
+
'representation (unparsed)',
|
|
4631
|
+
'name': 'has_raw_value',
|
|
4632
|
+
'required': True},
|
|
4633
|
+
'has_unit': {'description': 'UCUM unit code (required only '
|
|
4634
|
+
'when numeric value is present)',
|
|
4635
|
+
'name': 'has_unit',
|
|
4636
|
+
'required': False}}})
|
|
4637
|
+
|
|
4638
|
+
has_attribute_label: Optional[str] = Field(default=None, description="""Human-readable label for the property (e.g., MIxS label, ENVO term label).""", json_schema_extra = { "linkml_meta": {'alias': 'has_attribute_label',
|
|
4639
|
+
'comments': ['This provides a human-friendly name for the asserted property. '
|
|
4640
|
+
'For example, "bicarbonate ion concentration" or "total '
|
|
4641
|
+
'phosphorus". The label helps with readability and data '
|
|
4642
|
+
'discovery.'],
|
|
4643
|
+
'domain_of': ['PropertyAssertion']} })
|
|
4644
|
+
has_attribute_id: Optional[str] = Field(default=None, description="""CURIE or IRI for the property (MIxS slot, NMDC slot, ENVO/OBI term, etc.).""", json_schema_extra = { "linkml_meta": {'alias': 'has_attribute_id',
|
|
4645
|
+
'comments': ['This provides a resolvable identifier for the property being '
|
|
4646
|
+
'asserted. Examples include MIXS:0000117 for total phosphorus, '
|
|
4647
|
+
'or ENVO:01001357 for bicarbonate ion concentration.',
|
|
4648
|
+
'Prefer using standard ontology terms (ENVO, PATO, OBI, etc.) or '
|
|
4649
|
+
'MIxS identifiers when available to enhance interoperability.'],
|
|
4650
|
+
'domain_of': ['PropertyAssertion']} })
|
|
4651
|
+
has_quantity_kind_id: Optional[str] = Field(default=None, description="""Optional CURIE or IRI for the physical quantity kind (e.g., qudt:QuantityKind).""", json_schema_extra = { "linkml_meta": {'alias': 'has_quantity_kind_id',
|
|
4652
|
+
'comments': ['This slot enables precise semantic description of what physical '
|
|
4653
|
+
'quantity is being measured, independent of the specific units '
|
|
4654
|
+
'used. For example, qudt:MassConcentration or qudt:Temperature.',
|
|
4655
|
+
'Using quantity kind identifiers from QUDT or similar '
|
|
4656
|
+
'vocabularies improves data integration and enables automated '
|
|
4657
|
+
'unit conversion.'],
|
|
4658
|
+
'domain_of': ['PropertyAssertion']} })
|
|
4659
|
+
has_value_term_id: Optional[str] = Field(default=None, description="""CURIE or IRI for categorical values (ENVO, PATO, METPO, etc.).""", json_schema_extra = { "linkml_meta": {'alias': 'has_value_term_id',
|
|
4660
|
+
'comments': ['Use this slot when the value of the property is a controlled '
|
|
4661
|
+
'vocabulary term rather than a numeric or free-text value. For '
|
|
4662
|
+
'example, ENVO:00002297 for "desert ecosystem" or PATO:0001199 '
|
|
4663
|
+
'for "dry".'],
|
|
4664
|
+
'domain_of': ['PropertyAssertion']} })
|
|
4665
|
+
has_boolean_value: Optional[bool] = Field(default=None, description="""Links a quantity value to a boolean""", json_schema_extra = { "linkml_meta": {'alias': 'has_boolean_value', 'domain_of': ['PropertyAssertion']} })
|
|
4666
|
+
has_datetime_value: Optional[str] = Field(default=None, description="""Date-time value for the property in ISO-8601 format.""", json_schema_extra = { "linkml_meta": {'alias': 'has_datetime_value',
|
|
4667
|
+
'comments': ['Use this slot for temporal properties. The value should follow '
|
|
4668
|
+
'ISO-8601 format (e.g., "2025-06-12T14:30:00Z").'],
|
|
4669
|
+
'domain_of': ['PropertyAssertion']} })
|
|
4670
|
+
has_numeric_value: Optional[Decimal] = Field(default=None, description="""Links a quantity value to a number""", json_schema_extra = { "linkml_meta": {'alias': 'has_numeric_value',
|
|
4671
|
+
'domain_of': ['QuantityValue', 'PropertyAssertion'],
|
|
4672
|
+
'mappings': ['qud:quantityValue', 'schema:value']} })
|
|
4673
|
+
has_minimum_numeric_value: Optional[Decimal] = Field(default=None, description="""The minimum value part, expressed as number, of the quantity value when the value covers a range.""", json_schema_extra = { "linkml_meta": {'alias': 'has_minimum_numeric_value',
|
|
4674
|
+
'domain_of': ['QuantityValue', 'PropertyAssertion'],
|
|
4675
|
+
'is_a': 'has_numeric_value'} })
|
|
4676
|
+
has_maximum_numeric_value: Optional[Decimal] = Field(default=None, description="""The maximum value part, expressed as number, of the quantity value when the value covers a range.""", json_schema_extra = { "linkml_meta": {'alias': 'has_maximum_numeric_value',
|
|
4677
|
+
'domain_of': ['QuantityValue', 'PropertyAssertion'],
|
|
4678
|
+
'is_a': 'has_numeric_value'} })
|
|
4679
|
+
has_unit: Optional[str] = Field(default=None, description="""UCUM unit code (required only when numeric value is present)""", json_schema_extra = { "linkml_meta": {'alias': 'has_unit',
|
|
4680
|
+
'aliases': ['scale'],
|
|
4681
|
+
'domain_of': ['QuantityValue', 'PropertyAssertion'],
|
|
4682
|
+
'mappings': ['qud:unit', 'schema:unitCode']} })
|
|
4683
|
+
has_raw_value: str = Field(default=..., description="""Original contributor string representation (unparsed)""", json_schema_extra = { "linkml_meta": {'alias': 'has_raw_value', 'domain_of': ['AttributeValue']} })
|
|
4684
|
+
type: Literal["https://w3id.org/nmdc/PropertyAssertion","nmdc:PropertyAssertion"] = Field(default="nmdc:PropertyAssertion", description="""the class_uri of the class that has been instantiated""", json_schema_extra = { "linkml_meta": {'alias': 'type',
|
|
4685
|
+
'designates_type': True,
|
|
4686
|
+
'domain_of': ['EukEval',
|
|
4687
|
+
'FunctionalAnnotationAggMember',
|
|
4688
|
+
'MobilePhaseSegment',
|
|
4689
|
+
'PortionOfSubstance',
|
|
4690
|
+
'MagBin',
|
|
4691
|
+
'MetaboliteIdentification',
|
|
4692
|
+
'GenomeFeature',
|
|
4693
|
+
'FunctionalAnnotation',
|
|
4694
|
+
'AttributeValue',
|
|
4695
|
+
'NamedThing',
|
|
4696
|
+
'OntologyRelation',
|
|
4697
|
+
'FailureCategorization',
|
|
4698
|
+
'Protocol',
|
|
4699
|
+
'CreditAssociation',
|
|
4700
|
+
'Doi'],
|
|
4701
|
+
'examples': [{'value': 'nmdc:Biosample'}, {'value': 'nmdc:Study'}],
|
|
4702
|
+
'notes': ['makes it easier to read example data files',
|
|
4703
|
+
'required for polymorphic MongoDB collections'],
|
|
4704
|
+
'see_also': ['https://github.com/microbiomedata/nmdc-schema/issues/1048',
|
|
4705
|
+
'https://github.com/microbiomedata/nmdc-schema/issues/1233',
|
|
4706
|
+
'https://github.com/microbiomedata/nmdc-schema/issues/248'],
|
|
4707
|
+
'slot_uri': 'rdf:type',
|
|
4708
|
+
'structured_aliases': {'workflow_execution_class': {'contexts': ['https://bitbucket.org/berkeleylab/jgi-jat/macros/nmdc_metadata.yaml'],
|
|
4709
|
+
'literal_form': 'workflow_execution_class',
|
|
4710
|
+
'predicate': 'NARROW_SYNONYM'}}} })
|
|
4711
|
+
|
|
4712
|
+
|
|
4542
4713
|
class NamedThing(ConfiguredBaseModel):
|
|
4543
4714
|
"""
|
|
4544
4715
|
a databased entity or concept/class
|
|
@@ -5643,8 +5814,6 @@ class Biosample(Sample):
|
|
|
5643
5814
|
'has been submitted '
|
|
5644
5815
|
'to NMDC',
|
|
5645
5816
|
'name': 'alternative_identifiers'},
|
|
5646
|
-
'annual_precpt': {'examples': [{'value': '8.94 inch'}],
|
|
5647
|
-
'name': 'annual_precpt'},
|
|
5648
5817
|
'associated_studies': {'name': 'associated_studies',
|
|
5649
5818
|
'pattern': '^(nmdc):sty-([0-9][a-z]{0,6}[0-9])-([A-Za-z0-9]{1,})$',
|
|
5650
5819
|
'range': 'Study',
|
|
@@ -5844,8 +6013,6 @@ class Biosample(Sample):
|
|
|
5844
6013
|
'(September, October, November) '
|
|
5845
6014
|
'and winter (December, January, '
|
|
5846
6015
|
'February).'],
|
|
5847
|
-
'examples': [{'value': '0.4 inch'},
|
|
5848
|
-
{'value': '10.16 mm'}],
|
|
5849
6016
|
'name': 'season_precpt',
|
|
5850
6017
|
'notes': ['mean and average are the same '
|
|
5851
6018
|
'thing, but it seems like bad '
|
|
@@ -5884,7 +6051,6 @@ class Biosample(Sample):
|
|
|
5884
6051
|
'exposure that will influence '
|
|
5885
6052
|
'soil temperature and '
|
|
5886
6053
|
'evapotranspiration.',
|
|
5887
|
-
'examples': [{'value': '35'}],
|
|
5888
6054
|
'name': 'slope_aspect'},
|
|
5889
6055
|
'slope_gradient': {'examples': [{'value': '10%'},
|
|
5890
6056
|
{'value': '10 %'},
|
|
@@ -5933,12 +6099,9 @@ class Biosample(Sample):
|
|
|
5933
6099
|
'tot_nitro_cont_meth': {'examples': [{'value': 'https://doi.org/10.2134/agronmonogr9.2.c32'},
|
|
5934
6100
|
{'value': 'https://acsess.onlinelibrary.wiley.com/doi/full/10.2136/sssaj2009.0389?casa_token=bm0pYIUdNMgAAAAA%3AOWVRR0STHaOe-afTcTdxn5m1hM8n2ltM0wY-b1iYpYdD9dhwppk5j3LvC2IO5yhOIvyLVeQz4NZRCZo'}],
|
|
5935
6101
|
'name': 'tot_nitro_cont_meth'},
|
|
5936
|
-
'tot_nitro_content': {'examples': [{'value': '5 mg N/ L'}],
|
|
5937
|
-
'name': 'tot_nitro_content'},
|
|
5938
6102
|
'tot_org_c_meth': {'examples': [{'value': 'https://doi.org/10.1080/07352680902776556'}],
|
|
5939
6103
|
'name': 'tot_org_c_meth'},
|
|
5940
|
-
'tot_org_carb': {'
|
|
5941
|
-
'name': 'tot_org_carb',
|
|
6104
|
+
'tot_org_carb': {'name': 'tot_org_carb',
|
|
5942
6105
|
'todos': ['check description. How are they '
|
|
5943
6106
|
'different?']},
|
|
5944
6107
|
'water_cont_soil_meth': {'comments': ['Required if providing '
|
|
@@ -6096,7 +6259,7 @@ class Biosample(Sample):
|
|
|
6096
6259
|
'storage_units': {'tag': 'storage_units',
|
|
6097
6260
|
'value': '[lb_av]|g/g|kg|kg/kg'}},
|
|
6098
6261
|
'domain_of': ['Biosample'],
|
|
6099
|
-
'examples': [{'value': '9
|
|
6262
|
+
'examples': [{'value': '9 g/g'}],
|
|
6100
6263
|
'is_a': 'core field',
|
|
6101
6264
|
'slot_uri': 'MIXS:0000122'} })
|
|
6102
6265
|
add_recov_method: Optional[TextValue] = Field(default=None, title="secondary and tertiary recovery methods and start date", description="""Additional (i.e. Secondary, tertiary, etc.) recovery methods deployed for increase of hydrocarbon recovery from resource and start date for each one of them. If \"other\" is specified, please propose entry in \"additional info\" field""", json_schema_extra = { "linkml_meta": {'alias': 'add_recov_method',
|
|
@@ -6182,7 +6345,7 @@ class Biosample(Sample):
|
|
|
6182
6345
|
'value': 'degree Celsius'},
|
|
6183
6346
|
'storage_units': {'tag': 'storage_units', 'value': 'Cel'}},
|
|
6184
6347
|
'domain_of': ['Biosample'],
|
|
6185
|
-
'examples': [{'value': '20
|
|
6348
|
+
'examples': [{'value': '20 Cel'}],
|
|
6186
6349
|
'is_a': 'core field',
|
|
6187
6350
|
'slot_uri': 'MIXS:0000124'} })
|
|
6188
6351
|
air_temp_regm: Optional[list[TextValue]] = Field(default=None, title="air temperature regimen", description="""Information about treatment involving an exposure to varying temperatures; should include the temperature, treatment regimen including how many times the treatment was repeated, how long each treatment lasted, and the start and end time of the entire treatment; can include different temperature regimens""", json_schema_extra = { "linkml_meta": {'alias': 'air_temp_regm',
|
|
@@ -6242,7 +6405,7 @@ class Biosample(Sample):
|
|
|
6242
6405
|
'storage_units': {'tag': 'storage_units',
|
|
6243
6406
|
'value': 'meq/L|mg/L'}},
|
|
6244
6407
|
'domain_of': ['Biosample'],
|
|
6245
|
-
'examples': [{'value': '50
|
|
6408
|
+
'examples': [{'value': '50 mg/L'}],
|
|
6246
6409
|
'is_a': 'core field',
|
|
6247
6410
|
'slot_uri': 'MIXS:0000421'} })
|
|
6248
6411
|
alkalinity_method: Optional[TextValue] = Field(default=None, title="alkalinity method", description="""Method used for alkalinity measurement""", json_schema_extra = { "linkml_meta": {'alias': 'alkalinity_method',
|
|
@@ -6264,7 +6427,7 @@ class Biosample(Sample):
|
|
|
6264
6427
|
'value': 'mole per liter'},
|
|
6265
6428
|
'storage_units': {'tag': 'storage_units', 'value': 'mol/L'}},
|
|
6266
6429
|
'domain_of': ['Biosample'],
|
|
6267
|
-
'examples': [{'value': '0.005
|
|
6430
|
+
'examples': [{'value': '0.005 mol/L'}],
|
|
6268
6431
|
'is_a': 'core field',
|
|
6269
6432
|
'slot_uri': 'MIXS:0000490'} })
|
|
6270
6433
|
alt: Optional[QuantityValue] = Field(default=None, title="altitude", description="""Altitude is a term used to identify heights of objects such as airplanes, space shuttles, rockets, atmospheric balloons and heights of places such as atmospheric layers and clouds. It is used to measure the height of an object which is above the earth's surface. In this context, the altitude measurement is the vertical distance between the earth's surface above sea level and the sampled position in the air""", json_schema_extra = { "linkml_meta": {'alias': 'alt',
|
|
@@ -6273,7 +6436,7 @@ class Biosample(Sample):
|
|
|
6273
6436
|
'value': 'measurement value'},
|
|
6274
6437
|
'storage_units': {'tag': 'storage_units', 'value': 'm'}},
|
|
6275
6438
|
'domain_of': ['Biosample'],
|
|
6276
|
-
'examples': [{'value': '100
|
|
6439
|
+
'examples': [{'value': '100 m'}],
|
|
6277
6440
|
'is_a': 'environment field',
|
|
6278
6441
|
'slot_uri': 'MIXS:0000094'} })
|
|
6279
6442
|
aminopept_act: Optional[QuantityValue] = Field(default=None, title="aminopeptidase activity", description="""Measurement of aminopeptidase activity""", json_schema_extra = { "linkml_meta": {'alias': 'aminopept_act',
|
|
@@ -6285,7 +6448,7 @@ class Biosample(Sample):
|
|
|
6285
6448
|
'value': 'mole per liter per hour'},
|
|
6286
6449
|
'storage_units': {'tag': 'storage_units', 'value': 'mol/L/h'}},
|
|
6287
6450
|
'domain_of': ['Biosample'],
|
|
6288
|
-
'examples': [{'value': '0.269
|
|
6451
|
+
'examples': [{'value': '0.269 mol/L/h'}],
|
|
6289
6452
|
'is_a': 'core field',
|
|
6290
6453
|
'slot_uri': 'MIXS:0000172'} })
|
|
6291
6454
|
ammonium: Optional[QuantityValue] = Field(default=None, title="ammonium", description="""Concentration of ammonium in the sample""", json_schema_extra = { "linkml_meta": {'alias': 'ammonium',
|
|
@@ -6299,7 +6462,7 @@ class Biosample(Sample):
|
|
|
6299
6462
|
'storage_units': {'tag': 'storage_units',
|
|
6300
6463
|
'value': '[ppm]|mg/L|umol/L'}},
|
|
6301
6464
|
'domain_of': ['Biosample'],
|
|
6302
|
-
'examples': [{'value': '1.5
|
|
6465
|
+
'examples': [{'value': '1.5 mg/L'}],
|
|
6303
6466
|
'is_a': 'core field',
|
|
6304
6467
|
'slot_uri': 'MIXS:0000427'} })
|
|
6305
6468
|
amount_light: Optional[QuantityValue] = Field(default=None, title="amount of light", description="""The unit of illuminance and luminous emittance, measuring luminous flux per unit area""", json_schema_extra = { "linkml_meta": {'alias': 'amount_light',
|
|
@@ -6334,7 +6497,7 @@ class Biosample(Sample):
|
|
|
6334
6497
|
'value': 'millimeter'},
|
|
6335
6498
|
'storage_units': {'tag': 'storage_units', 'value': 'mm'}},
|
|
6336
6499
|
'domain_of': ['Biosample'],
|
|
6337
|
-
'examples': [{'value': '
|
|
6500
|
+
'examples': [{'value': '225 mm'}],
|
|
6338
6501
|
'is_a': 'core field',
|
|
6339
6502
|
'slot_uri': 'MIXS:0000644'} })
|
|
6340
6503
|
annual_temp: Optional[QuantityValue] = Field(default=None, title="mean annual temperature", description="""Mean annual temperature""", json_schema_extra = { "linkml_meta": {'alias': 'annual_temp',
|
|
@@ -6346,7 +6509,7 @@ class Biosample(Sample):
|
|
|
6346
6509
|
'value': 'degree Celsius'},
|
|
6347
6510
|
'storage_units': {'tag': 'storage_units', 'value': 'Cel'}},
|
|
6348
6511
|
'domain_of': ['Biosample'],
|
|
6349
|
-
'examples': [{'value': '12.5
|
|
6512
|
+
'examples': [{'value': '12.5 Cel'}],
|
|
6350
6513
|
'is_a': 'core field',
|
|
6351
6514
|
'slot_uri': 'MIXS:0000642'} })
|
|
6352
6515
|
antibiotic_regm: Optional[list[TextValue]] = Field(default=None, title="antibiotic regimen", description="""Information about treatment involving antibiotic administration; should include the name of antibiotic, amount administered, treatment regimen including how many times the treatment was repeated, how long each treatment lasted, and the start and end time of the entire treatment; can include multiple antibiotic regimens""", json_schema_extra = { "linkml_meta": {'alias': 'antibiotic_regm',
|
|
@@ -6431,7 +6594,7 @@ class Biosample(Sample):
|
|
|
6431
6594
|
'value': 'degree Celsius'},
|
|
6432
6595
|
'storage_units': {'tag': 'storage_units', 'value': 'Cel'}},
|
|
6433
6596
|
'domain_of': ['Biosample'],
|
|
6434
|
-
'examples': [{'value': '25.5
|
|
6597
|
+
'examples': [{'value': '25.5 Cel'}],
|
|
6435
6598
|
'is_a': 'core field',
|
|
6436
6599
|
'slot_uri': 'MIXS:0000141'} })
|
|
6437
6600
|
avg_occup: Optional[TextValue] = Field(default=None, title="average daily occupancy", description="""Daily average occupancy of room. Indicate the number of person(s) daily occupying the sampling room.""", json_schema_extra = { "linkml_meta": {'alias': 'avg_occup',
|
|
@@ -6451,7 +6614,7 @@ class Biosample(Sample):
|
|
|
6451
6614
|
'value': 'degree Celsius'},
|
|
6452
6615
|
'storage_units': {'tag': 'storage_units', 'value': 'Cel'}},
|
|
6453
6616
|
'domain_of': ['Biosample'],
|
|
6454
|
-
'examples': [{'value': '12.5
|
|
6617
|
+
'examples': [{'value': '12.5 Cel'}],
|
|
6455
6618
|
'is_a': 'core field',
|
|
6456
6619
|
'slot_uri': 'MIXS:0000142'} })
|
|
6457
6620
|
bac_prod: Optional[QuantityValue] = Field(default=None, title="bacterial production", description="""Bacterial production in the water column measured by isotope uptake""", json_schema_extra = { "linkml_meta": {'alias': 'bac_prod',
|
|
@@ -6464,7 +6627,7 @@ class Biosample(Sample):
|
|
|
6464
6627
|
'day'},
|
|
6465
6628
|
'storage_units': {'tag': 'storage_units', 'value': 'mg/m3/d'}},
|
|
6466
6629
|
'domain_of': ['Biosample'],
|
|
6467
|
-
'examples': [{'value': '5
|
|
6630
|
+
'examples': [{'value': '5 mg/m3/d'}],
|
|
6468
6631
|
'is_a': 'core field',
|
|
6469
6632
|
'slot_uri': 'MIXS:0000683'} })
|
|
6470
6633
|
bac_resp: Optional[QuantityValue] = Field(default=None, title="bacterial respiration", description="""Measurement of bacterial respiration in the water column""", json_schema_extra = { "linkml_meta": {'alias': 'bac_resp',
|
|
@@ -6479,7 +6642,7 @@ class Biosample(Sample):
|
|
|
6479
6642
|
'storage_units': {'tag': 'storage_units',
|
|
6480
6643
|
'value': 'mg/m3/d|umol/L/h'}},
|
|
6481
6644
|
'domain_of': ['Biosample'],
|
|
6482
|
-
'examples': [{'value': '300
|
|
6645
|
+
'examples': [{'value': '300 umol/L/h'}],
|
|
6483
6646
|
'is_a': 'core field',
|
|
6484
6647
|
'slot_uri': 'MIXS:0000684'} })
|
|
6485
6648
|
bacteria_carb_prod: Optional[QuantityValue] = Field(default=None, title="bacterial carbon production", description="""Measurement of bacterial carbon production""", json_schema_extra = { "linkml_meta": {'alias': 'bacteria_carb_prod',
|
|
@@ -6491,7 +6654,7 @@ class Biosample(Sample):
|
|
|
6491
6654
|
'value': 'nanogram per hour'},
|
|
6492
6655
|
'storage_units': {'tag': 'storage_units', 'value': 'ng/h'}},
|
|
6493
6656
|
'domain_of': ['Biosample'],
|
|
6494
|
-
'examples': [{'value': '
|
|
6657
|
+
'examples': [{'value': '50 ng/h'}],
|
|
6495
6658
|
'is_a': 'core field',
|
|
6496
6659
|
'slot_uri': 'MIXS:0000173'} })
|
|
6497
6660
|
barometric_press: Optional[QuantityValue] = Field(default=None, title="barometric pressure", description="""Force per unit area exerted against a surface by the weight of air above that surface""", json_schema_extra = { "linkml_meta": {'alias': 'barometric_press',
|
|
@@ -6503,7 +6666,7 @@ class Biosample(Sample):
|
|
|
6503
6666
|
'value': 'millibar'},
|
|
6504
6667
|
'storage_units': {'tag': 'storage_units', 'value': 'mbar'}},
|
|
6505
6668
|
'domain_of': ['Biosample'],
|
|
6506
|
-
'examples': [{'value': '
|
|
6669
|
+
'examples': [{'value': '1013 mbar'}],
|
|
6507
6670
|
'is_a': 'core field',
|
|
6508
6671
|
'slot_uri': 'MIXS:0000096'} })
|
|
6509
6672
|
basin: Optional[TextValue] = Field(default=None, title="basin name", description="""Name of the basin (e.g. Campos)""", json_schema_extra = { "linkml_meta": {'alias': 'basin',
|
|
@@ -6631,7 +6794,7 @@ class Biosample(Sample):
|
|
|
6631
6794
|
'storage_units': {'tag': 'storage_units',
|
|
6632
6795
|
'value': 'ug/L|ug/g'}},
|
|
6633
6796
|
'domain_of': ['Biosample'],
|
|
6634
|
-
'examples': [{'value': '14
|
|
6797
|
+
'examples': [{'value': '14 ug/L'}],
|
|
6635
6798
|
'is_a': 'core field',
|
|
6636
6799
|
'slot_uri': 'MIXS:0000175'} })
|
|
6637
6800
|
blood_press_diast: Optional[QuantityValue] = Field(default=None, title="host blood pressure diastolic", description="""Resting diastolic blood pressure, measured as mm mercury""", json_schema_extra = { "linkml_meta": {'alias': 'blood_press_diast',
|
|
@@ -6667,7 +6830,7 @@ class Biosample(Sample):
|
|
|
6667
6830
|
'value': 'parts per million'},
|
|
6668
6831
|
'storage_units': {'tag': 'storage_units', 'value': '[ppm]'}},
|
|
6669
6832
|
'domain_of': ['Biosample'],
|
|
6670
|
-
'examples': [{'value': '0.05
|
|
6833
|
+
'examples': [{'value': '0.05 [ppm]'}],
|
|
6671
6834
|
'is_a': 'core field',
|
|
6672
6835
|
'slot_uri': 'MIXS:0000176'} })
|
|
6673
6836
|
build_docs: Optional[BuildDocsEnum] = Field(default=None, title="design, construction, and operation documents", description="""The building design, construction and operation documents""", json_schema_extra = { "linkml_meta": {'alias': 'build_docs',
|
|
@@ -6704,7 +6867,7 @@ class Biosample(Sample):
|
|
|
6704
6867
|
'preferred_unit': {'tag': 'preferred_unit', 'value': 'year'},
|
|
6705
6868
|
'storage_units': {'tag': 'storage_units', 'value': 'a'}},
|
|
6706
6869
|
'domain_of': ['Biosample'],
|
|
6707
|
-
'examples': [{'value': '15'}],
|
|
6870
|
+
'examples': [{'value': '15 a'}],
|
|
6708
6871
|
'is_a': 'core field',
|
|
6709
6872
|
'slot_uri': 'MIXS:0000145'} })
|
|
6710
6873
|
built_struc_set: Optional[TextValue] = Field(default=None, title="built structure setting", description="""The characterization of the location of the built structure as high or low human density""", json_schema_extra = { "linkml_meta": {'alias': 'built_struc_set',
|
|
@@ -6738,7 +6901,7 @@ class Biosample(Sample):
|
|
|
6738
6901
|
'storage_units': {'tag': 'storage_units',
|
|
6739
6902
|
'value': '[ppm]|mg/L|umol/L|mg/kg'}},
|
|
6740
6903
|
'domain_of': ['Biosample'],
|
|
6741
|
-
'examples': [{'value': '0.2
|
|
6904
|
+
'examples': [{'value': '0.2 umol/L'}],
|
|
6742
6905
|
'is_a': 'core field',
|
|
6743
6906
|
'slot_uri': 'MIXS:0000432'} })
|
|
6744
6907
|
carb_dioxide: Optional[QuantityValue] = Field(default=None, title="carbon dioxide", description="""Carbon dioxide (gas) amount or concentration at the time of sampling""", json_schema_extra = { "linkml_meta": {'alias': 'carb_dioxide',
|
|
@@ -6752,7 +6915,7 @@ class Biosample(Sample):
|
|
|
6752
6915
|
'storage_units': {'tag': 'storage_units',
|
|
6753
6916
|
'value': '[ppm]|umol/L'}},
|
|
6754
6917
|
'domain_of': ['Biosample'],
|
|
6755
|
-
'examples': [{'value': '410
|
|
6918
|
+
'examples': [{'value': '410 [ppm]'}],
|
|
6756
6919
|
'is_a': 'core field',
|
|
6757
6920
|
'slot_uri': 'MIXS:0000097'} })
|
|
6758
6921
|
carb_monoxide: Optional[QuantityValue] = Field(default=None, title="carbon monoxide", description="""Carbon monoxide (gas) amount or concentration at the time of sampling""", json_schema_extra = { "linkml_meta": {'alias': 'carb_monoxide',
|
|
@@ -6766,7 +6929,7 @@ class Biosample(Sample):
|
|
|
6766
6929
|
'storage_units': {'tag': 'storage_units',
|
|
6767
6930
|
'value': '[ppm]|umol/L'}},
|
|
6768
6931
|
'domain_of': ['Biosample'],
|
|
6769
|
-
'examples': [{'value': '0.1
|
|
6932
|
+
'examples': [{'value': '0.1 [ppm]'}],
|
|
6770
6933
|
'is_a': 'core field',
|
|
6771
6934
|
'slot_uri': 'MIXS:0000098'} })
|
|
6772
6935
|
carb_nitro_ratio: Optional[QuantityValue] = Field(default=None, title="carbon/nitrogen ratio", description="""Ratio of amount or concentrations of carbon to nitrogen""", json_schema_extra = { "linkml_meta": {'alias': 'carb_nitro_ratio',
|
|
@@ -6788,7 +6951,7 @@ class Biosample(Sample):
|
|
|
6788
6951
|
'value': 'square meter'},
|
|
6789
6952
|
'storage_units': {'tag': 'storage_units', 'value': 'm2'}},
|
|
6790
6953
|
'domain_of': ['Biosample'],
|
|
6791
|
-
'examples': [{'value': '25
|
|
6954
|
+
'examples': [{'value': '25 m2'}],
|
|
6792
6955
|
'is_a': 'core field',
|
|
6793
6956
|
'slot_uri': 'MIXS:0000148'} })
|
|
6794
6957
|
ceil_cond: Optional[CeilCondEnum] = Field(default=None, title="ceiling condition", description="""The physical condition of the ceiling at the time of sampling; photos or video preferred; use drawings to indicate location of damaged areas""", json_schema_extra = { "linkml_meta": {'alias': 'ceil_cond',
|
|
@@ -6933,7 +7096,7 @@ class Biosample(Sample):
|
|
|
6933
7096
|
'storage_units': {'tag': 'storage_units',
|
|
6934
7097
|
'value': '[ppm]|mg/L'}},
|
|
6935
7098
|
'domain_of': ['Biosample'],
|
|
6936
|
-
'examples': [{'value': '5000
|
|
7099
|
+
'examples': [{'value': '5000 mg/L'}],
|
|
6937
7100
|
'is_a': 'core field',
|
|
6938
7101
|
'slot_uri': 'MIXS:0000429'} })
|
|
6939
7102
|
chlorophyll: Optional[QuantityValue] = Field(default=None, title="chlorophyll", description="""Concentration of chlorophyll""", json_schema_extra = { "linkml_meta": {'alias': 'chlorophyll',
|
|
@@ -6947,7 +7110,7 @@ class Biosample(Sample):
|
|
|
6947
7110
|
'storage_units': {'tag': 'storage_units',
|
|
6948
7111
|
'value': 'mg/m3|ug/L'}},
|
|
6949
7112
|
'domain_of': ['Biosample'],
|
|
6950
|
-
'examples': [{'value': '5
|
|
7113
|
+
'examples': [{'value': '5 mg/m3'}],
|
|
6951
7114
|
'is_a': 'core field',
|
|
6952
7115
|
'slot_uri': 'MIXS:0000177'} })
|
|
6953
7116
|
climate_environment: Optional[list[TextValue]] = Field(default=None, title="climate environment", description="""Treatment involving an exposure to a particular climate; treatment regimen including how many times the treatment was repeated, how long each treatment lasted, and the start and end time of the entire treatment; can include multiple climates""", json_schema_extra = { "linkml_meta": {'alias': 'climate_environment',
|
|
@@ -6984,7 +7147,7 @@ class Biosample(Sample):
|
|
|
6984
7147
|
'storage_units': {'tag': 'storage_units',
|
|
6985
7148
|
'value': 'mS/cm|uS/cm'}},
|
|
6986
7149
|
'domain_of': ['Biosample'],
|
|
6987
|
-
'examples': [{'value': '10
|
|
7150
|
+
'examples': [{'value': '10 uS/cm'}],
|
|
6988
7151
|
'is_a': 'core field',
|
|
6989
7152
|
'slot_uri': 'MIXS:0000692'} })
|
|
6990
7153
|
cool_syst_id: Optional[TextValue] = Field(default=None, title="cooling system identifier", description="""The cooling system identifier""", json_schema_extra = { "linkml_meta": {'alias': 'cool_syst_id',
|
|
@@ -7075,7 +7238,7 @@ class Biosample(Sample):
|
|
|
7075
7238
|
'storage_units': {'tag': 'storage_units',
|
|
7076
7239
|
'value': 'g/cm3|g/m3|kg/m3'}},
|
|
7077
7240
|
'domain_of': ['Biosample'],
|
|
7078
|
-
'examples': [{'value': '1000
|
|
7241
|
+
'examples': [{'value': '1000 kg/m3'}],
|
|
7079
7242
|
'is_a': 'core field',
|
|
7080
7243
|
'slot_uri': 'MIXS:0000435'} })
|
|
7081
7244
|
depos_env: Optional[DeposEnvEnum] = Field(default=None, title="depositional environment", description="""Main depositional environment (https://en.wikipedia.org/wiki/Depositional_environment). If \"other\" is specified, please propose entry in \"additional info\" field""", json_schema_extra = { "linkml_meta": {'alias': 'depos_env',
|
|
@@ -7093,7 +7256,7 @@ class Biosample(Sample):
|
|
|
7093
7256
|
'value': 'measurement value'},
|
|
7094
7257
|
'storage_units': {'tag': 'storage_units', 'value': 'm'}},
|
|
7095
7258
|
'domain_of': ['Biosample'],
|
|
7096
|
-
'examples': [{'value': '10
|
|
7259
|
+
'examples': [{'value': '10 m'}],
|
|
7097
7260
|
'is_a': 'environment field',
|
|
7098
7261
|
'slot_uri': 'MIXS:0000018'} })
|
|
7099
7262
|
dew_point: Optional[QuantityValue] = Field(default=None, title="dew point", description="""The temperature to which a given parcel of humid air must be cooled, at constant barometric pressure, for water vapor to condense into water.""", json_schema_extra = { "linkml_meta": {'alias': 'dew_point',
|
|
@@ -7105,7 +7268,7 @@ class Biosample(Sample):
|
|
|
7105
7268
|
'value': 'degree Celsius'},
|
|
7106
7269
|
'storage_units': {'tag': 'storage_units', 'value': 'Cel'}},
|
|
7107
7270
|
'domain_of': ['Biosample'],
|
|
7108
|
-
'examples': [{'value': '22
|
|
7271
|
+
'examples': [{'value': '22 Cel'}],
|
|
7109
7272
|
'is_a': 'core field',
|
|
7110
7273
|
'slot_uri': 'MIXS:0000129'} })
|
|
7111
7274
|
diether_lipids: Optional[list[TextValue]] = Field(default=None, title="diether lipids", description="""Concentration of diether lipids; can include multiple types of diether lipids""", json_schema_extra = { "linkml_meta": {'alias': 'diether_lipids',
|
|
@@ -7132,7 +7295,7 @@ class Biosample(Sample):
|
|
|
7132
7295
|
'storage_units': {'tag': 'storage_units',
|
|
7133
7296
|
'value': 'mg/L|umol/L'}},
|
|
7134
7297
|
'domain_of': ['Biosample'],
|
|
7135
|
-
'examples': [{'value': '5
|
|
7298
|
+
'examples': [{'value': '5 mg/L'}],
|
|
7136
7299
|
'is_a': 'core field',
|
|
7137
7300
|
'slot_uri': 'MIXS:0000436'} })
|
|
7138
7301
|
diss_hydrogen: Optional[QuantityValue] = Field(default=None, title="dissolved hydrogen", description="""Concentration of dissolved hydrogen""", json_schema_extra = { "linkml_meta": {'alias': 'diss_hydrogen',
|
|
@@ -7144,7 +7307,7 @@ class Biosample(Sample):
|
|
|
7144
7307
|
'value': 'micromole per liter'},
|
|
7145
7308
|
'storage_units': {'tag': 'storage_units', 'value': 'umol/L'}},
|
|
7146
7309
|
'domain_of': ['Biosample'],
|
|
7147
|
-
'examples': [{'value': '0.3
|
|
7310
|
+
'examples': [{'value': '0.3 umol/L'}],
|
|
7148
7311
|
'is_a': 'core field',
|
|
7149
7312
|
'slot_uri': 'MIXS:0000179'} })
|
|
7150
7313
|
diss_inorg_carb: Optional[QuantityValue] = Field(default=None, title="dissolved inorganic carbon", description="""Dissolved inorganic carbon concentration in the sample, typically measured after filtering the sample using a 0.45 micrometer filter""", json_schema_extra = { "linkml_meta": {'alias': 'diss_inorg_carb',
|
|
@@ -7156,9 +7319,9 @@ class Biosample(Sample):
|
|
|
7156
7319
|
'value': 'microgram per liter, milligram '
|
|
7157
7320
|
'per liter, parts per million'},
|
|
7158
7321
|
'storage_units': {'tag': 'storage_units',
|
|
7159
|
-
'value': '[ppm]|mg/L|ug/L'}},
|
|
7322
|
+
'value': '[ppm]|mg/L|ug/L|umol/kg'}},
|
|
7160
7323
|
'domain_of': ['Biosample'],
|
|
7161
|
-
'examples': [{'value': '2059
|
|
7324
|
+
'examples': [{'value': '2059 umol/kg'}],
|
|
7162
7325
|
'is_a': 'core field',
|
|
7163
7326
|
'slot_uri': 'MIXS:0000434'} })
|
|
7164
7327
|
diss_inorg_nitro: Optional[QuantityValue] = Field(default=None, title="dissolved inorganic nitrogen", description="""Concentration of dissolved inorganic nitrogen""", json_schema_extra = { "linkml_meta": {'alias': 'diss_inorg_nitro',
|
|
@@ -7172,7 +7335,7 @@ class Biosample(Sample):
|
|
|
7172
7335
|
'storage_units': {'tag': 'storage_units',
|
|
7173
7336
|
'value': 'ug/L|umol/L|mg/L'}},
|
|
7174
7337
|
'domain_of': ['Biosample'],
|
|
7175
|
-
'examples': [{'value': '761
|
|
7338
|
+
'examples': [{'value': '761 umol/L'}],
|
|
7176
7339
|
'is_a': 'core field',
|
|
7177
7340
|
'slot_uri': 'MIXS:0000698'} })
|
|
7178
7341
|
diss_inorg_phosp: Optional[QuantityValue] = Field(default=None, title="dissolved inorganic phosphorus", description="""Concentration of dissolved inorganic phosphorus in the sample""", json_schema_extra = { "linkml_meta": {'alias': 'diss_inorg_phosp',
|
|
@@ -7184,9 +7347,9 @@ class Biosample(Sample):
|
|
|
7184
7347
|
'value': 'microgram per liter, milligram '
|
|
7185
7348
|
'per liter, parts per million'},
|
|
7186
7349
|
'storage_units': {'tag': 'storage_units',
|
|
7187
|
-
'value': '[ppm]|mg/L|ug/L'}},
|
|
7350
|
+
'value': '[ppm]|mg/L|ug/L|umol/L'}},
|
|
7188
7351
|
'domain_of': ['Biosample'],
|
|
7189
|
-
'examples': [{'value': '56.5
|
|
7352
|
+
'examples': [{'value': '56.5 umol/L'}],
|
|
7190
7353
|
'is_a': 'core field',
|
|
7191
7354
|
'slot_uri': 'MIXS:0000106'} })
|
|
7192
7355
|
diss_iron: Optional[QuantityValue] = Field(default=None, title="dissolved iron", description="""Concentration of dissolved iron in the sample""", json_schema_extra = { "linkml_meta": {'alias': 'diss_iron',
|
|
@@ -7212,7 +7375,7 @@ class Biosample(Sample):
|
|
|
7212
7375
|
'storage_units': {'tag': 'storage_units',
|
|
7213
7376
|
'value': 'mg/L|umol/L|ug/L'}},
|
|
7214
7377
|
'domain_of': ['Biosample'],
|
|
7215
|
-
'examples': [{'value': '197
|
|
7378
|
+
'examples': [{'value': '197 umol/L'}],
|
|
7216
7379
|
'is_a': 'core field',
|
|
7217
7380
|
'slot_uri': 'MIXS:0000433'} })
|
|
7218
7381
|
diss_org_nitro: Optional[QuantityValue] = Field(default=None, title="dissolved organic nitrogen", description="""Dissolved organic nitrogen concentration measured as; total dissolved nitrogen - NH4 - NO3 - NO2""", json_schema_extra = { "linkml_meta": {'alias': 'diss_org_nitro',
|
|
@@ -7226,7 +7389,7 @@ class Biosample(Sample):
|
|
|
7226
7389
|
'storage_units': {'tag': 'storage_units',
|
|
7227
7390
|
'value': 'mg/L|ug/L'}},
|
|
7228
7391
|
'domain_of': ['Biosample'],
|
|
7229
|
-
'examples': [{'value': '0.05
|
|
7392
|
+
'examples': [{'value': '0.05 mg/L'}],
|
|
7230
7393
|
'is_a': 'core field',
|
|
7231
7394
|
'slot_uri': 'MIXS:0000162'} })
|
|
7232
7395
|
diss_oxygen: Optional[QuantityValue] = Field(default=None, title="dissolved oxygen", description="""Concentration of dissolved oxygen""", json_schema_extra = { "linkml_meta": {'alias': 'diss_oxygen',
|
|
@@ -7240,7 +7403,7 @@ class Biosample(Sample):
|
|
|
7240
7403
|
'storage_units': {'tag': 'storage_units',
|
|
7241
7404
|
'value': 'mg/L|umol/kg|umol/L'}},
|
|
7242
7405
|
'domain_of': ['Biosample'],
|
|
7243
|
-
'examples': [{'value': '175
|
|
7406
|
+
'examples': [{'value': '175 umol/L'}],
|
|
7244
7407
|
'is_a': 'core field',
|
|
7245
7408
|
'slot_uri': 'MIXS:0000119'} })
|
|
7246
7409
|
diss_oxygen_fluid: Optional[QuantityValue] = Field(default=None, title="dissolved oxygen in fluids", description="""Concentration of dissolved oxygen in the oil field produced fluids as it contributes to oxgen-corrosion and microbial activity (e.g. Mic).""", json_schema_extra = { "linkml_meta": {'alias': 'diss_oxygen_fluid',
|
|
@@ -7320,7 +7483,7 @@ class Biosample(Sample):
|
|
|
7320
7483
|
'value': 'square meter'},
|
|
7321
7484
|
'storage_units': {'tag': 'storage_units', 'value': 'm2'}},
|
|
7322
7485
|
'domain_of': ['Biosample'],
|
|
7323
|
-
'examples': [{'value': '2.5
|
|
7486
|
+
'examples': [{'value': '2.5 m2'}],
|
|
7324
7487
|
'is_a': 'core field',
|
|
7325
7488
|
'slot_uri': 'MIXS:0000158'} })
|
|
7326
7489
|
door_type: Optional[DoorTypeEnum] = Field(default=None, title="door type", description="""The type of door material""", json_schema_extra = { "linkml_meta": {'alias': 'door_type',
|
|
@@ -7373,7 +7536,7 @@ class Biosample(Sample):
|
|
|
7373
7536
|
'storage_units': {'tag': 'storage_units',
|
|
7374
7537
|
'value': 'umol/m2/s'}},
|
|
7375
7538
|
'domain_of': ['Biosample'],
|
|
7376
|
-
'examples': [{'value': '28.71
|
|
7539
|
+
'examples': [{'value': '28.71 umol/m2/s'}],
|
|
7377
7540
|
'is_a': 'core field',
|
|
7378
7541
|
'slot_uri': 'MIXS:0000703'} })
|
|
7379
7542
|
drainage_class: Optional[DrainageClassEnum] = Field(default=None, title="drainage classification", description="""Drainage classification from a standard system such as the USDA system""", json_schema_extra = { "linkml_meta": {'alias': 'drainage_class',
|
|
@@ -7779,9 +7942,9 @@ class Biosample(Sample):
|
|
|
7779
7942
|
'preferred_unit': {'tag': 'preferred_unit',
|
|
7780
7943
|
'value': 'milligram chlorophyll a per '
|
|
7781
7944
|
'cubic meter, volts'},
|
|
7782
|
-
'storage_units': {'tag': 'storage_units', 'value': 'mg/m3'}},
|
|
7945
|
+
'storage_units': {'tag': 'storage_units', 'value': 'mg/m3|V'}},
|
|
7783
7946
|
'domain_of': ['Biosample'],
|
|
7784
|
-
'examples': [{'value': '2.5
|
|
7947
|
+
'examples': [{'value': '2.5 V'}],
|
|
7785
7948
|
'is_a': 'core field',
|
|
7786
7949
|
'slot_uri': 'MIXS:0000704'} })
|
|
7787
7950
|
freq_clean: Optional[QuantityValue] = Field(default=None, title="frequency of cleaning", description="""The number of times the sample location is cleaned. Frequency of cleaning might be on a Daily basis, Weekly, Monthly, Quarterly or Annually.""", json_schema_extra = { "linkml_meta": {'alias': 'freq_clean',
|
|
@@ -7904,7 +8067,7 @@ class Biosample(Sample):
|
|
|
7904
8067
|
'value': 'mol per liter per hour'},
|
|
7905
8068
|
'storage_units': {'tag': 'storage_units', 'value': 'mol/L/h'}},
|
|
7906
8069
|
'domain_of': ['Biosample'],
|
|
7907
|
-
'examples': [{'value': '5 mol
|
|
8070
|
+
'examples': [{'value': '5 mol/L/h'}],
|
|
7908
8071
|
'is_a': 'core field',
|
|
7909
8072
|
'slot_uri': 'MIXS:0000137'} })
|
|
7910
8073
|
gravidity: Optional[TextValue] = Field(default=None, title="gravidity", description="""Whether or not subject is gravid, and if yes date due or date post-conception, specifying which is used""", json_schema_extra = { "linkml_meta": {'alias': 'gravidity',
|
|
@@ -8164,7 +8327,7 @@ class Biosample(Sample):
|
|
|
8164
8327
|
'value': 'year, day, hour'},
|
|
8165
8328
|
'storage_units': {'tag': 'storage_units', 'value': 'a|d|h'}},
|
|
8166
8329
|
'domain_of': ['Biosample'],
|
|
8167
|
-
'examples': [{'value': '10
|
|
8330
|
+
'examples': [{'value': '10 d'}],
|
|
8168
8331
|
'is_a': 'core field',
|
|
8169
8332
|
'slot_uri': 'MIXS:0000255'} })
|
|
8170
8333
|
host_body_habitat: Optional[TextValue] = Field(default=None, title="host body habitat", description="""Original body habitat where the sample was obtained from""", json_schema_extra = { "linkml_meta": {'alias': 'host_body_habitat',
|
|
@@ -8206,7 +8369,7 @@ class Biosample(Sample):
|
|
|
8206
8369
|
'value': 'degree Celsius'},
|
|
8207
8370
|
'storage_units': {'tag': 'storage_units', 'value': 'Cel'}},
|
|
8208
8371
|
'domain_of': ['Biosample'],
|
|
8209
|
-
'examples': [{'value': '15
|
|
8372
|
+
'examples': [{'value': '15 Cel'}],
|
|
8210
8373
|
'is_a': 'core field',
|
|
8211
8374
|
'slot_uri': 'MIXS:0000274'} })
|
|
8212
8375
|
host_color: Optional[TextValue] = Field(default=None, title="host color", description="""The color of host""", json_schema_extra = { "linkml_meta": {'alias': 'host_color',
|
|
@@ -8247,7 +8410,7 @@ class Biosample(Sample):
|
|
|
8247
8410
|
'value': 'kilogram, gram'},
|
|
8248
8411
|
'storage_units': {'tag': 'storage_units', 'value': 'g|kg'}},
|
|
8249
8412
|
'domain_of': ['Biosample'],
|
|
8250
|
-
'examples': [{'value': '500
|
|
8413
|
+
'examples': [{'value': '500 g'}],
|
|
8251
8414
|
'is_a': 'core field',
|
|
8252
8415
|
'slot_uri': 'MIXS:0000257'} })
|
|
8253
8416
|
host_family_relation: Optional[list[str]] = Field(default=None, title="host family relationship", description="""Familial relationships to other hosts in the same study; can include multiple relationships""", json_schema_extra = { "linkml_meta": {'alias': 'host_family_relation',
|
|
@@ -8290,7 +8453,7 @@ class Biosample(Sample):
|
|
|
8290
8453
|
'value': 'centimeter, millimeter, meter'},
|
|
8291
8454
|
'storage_units': {'tag': 'storage_units', 'value': 'cm|m|mm'}},
|
|
8292
8455
|
'domain_of': ['Biosample'],
|
|
8293
|
-
'examples': [{'value': '0.1
|
|
8456
|
+
'examples': [{'value': '0.1 m'}],
|
|
8294
8457
|
'is_a': 'core field',
|
|
8295
8458
|
'slot_uri': 'MIXS:0000264'} })
|
|
8296
8459
|
host_last_meal: Optional[list[TextValue]] = Field(default=None, title="host last meal", description="""Content of last meal and time since feeding; can include multiple values""", json_schema_extra = { "linkml_meta": {'alias': 'host_last_meal',
|
|
@@ -8312,7 +8475,7 @@ class Biosample(Sample):
|
|
|
8312
8475
|
'value': 'centimeter, millimeter, meter'},
|
|
8313
8476
|
'storage_units': {'tag': 'storage_units', 'value': 'cm|m|mm'}},
|
|
8314
8477
|
'domain_of': ['Biosample'],
|
|
8315
|
-
'examples': [{'value': '1
|
|
8478
|
+
'examples': [{'value': '1 m'}],
|
|
8316
8479
|
'is_a': 'core field',
|
|
8317
8480
|
'slot_uri': 'MIXS:0000256'} })
|
|
8318
8481
|
host_life_stage: Optional[TextValue] = Field(default=None, title="host life stage", description="""Description of life stage of host""", json_schema_extra = { "linkml_meta": {'alias': 'host_life_stage',
|
|
@@ -8416,7 +8579,7 @@ class Biosample(Sample):
|
|
|
8416
8579
|
'value': 'kilogram, gram'},
|
|
8417
8580
|
'storage_units': {'tag': 'storage_units', 'value': 'g|kg'}},
|
|
8418
8581
|
'domain_of': ['Biosample'],
|
|
8419
|
-
'examples': [{'value': '2500
|
|
8582
|
+
'examples': [{'value': '2500 g'}],
|
|
8420
8583
|
'is_a': 'core field',
|
|
8421
8584
|
'slot_uri': 'MIXS:0000263'} })
|
|
8422
8585
|
host_wet_mass: Optional[QuantityValue] = Field(default=None, title="host wet mass", description="""Measurement of wet mass""", json_schema_extra = { "linkml_meta": {'alias': 'host_wet_mass',
|
|
@@ -8428,7 +8591,7 @@ class Biosample(Sample):
|
|
|
8428
8591
|
'value': 'kilogram, gram'},
|
|
8429
8592
|
'storage_units': {'tag': 'storage_units', 'value': 'g|kg'}},
|
|
8430
8593
|
'domain_of': ['Biosample'],
|
|
8431
|
-
'examples': [{'value': '1500
|
|
8594
|
+
'examples': [{'value': '1500 g'}],
|
|
8432
8595
|
'is_a': 'core field',
|
|
8433
8596
|
'slot_uri': 'MIXS:0000567'} })
|
|
8434
8597
|
humidity: Optional[QuantityValue] = Field(default=None, title="humidity", description="""Amount of water vapour in the air, at the time of sampling""", json_schema_extra = { "linkml_meta": {'alias': 'humidity',
|
|
@@ -8440,7 +8603,7 @@ class Biosample(Sample):
|
|
|
8440
8603
|
'value': 'gram per cubic meter'},
|
|
8441
8604
|
'storage_units': {'tag': 'storage_units', 'value': 'g/m3|%'}},
|
|
8442
8605
|
'domain_of': ['Biosample'],
|
|
8443
|
-
'examples': [{'value': '25
|
|
8606
|
+
'examples': [{'value': '25 g/m3'}],
|
|
8444
8607
|
'is_a': 'core field',
|
|
8445
8608
|
'slot_uri': 'MIXS:0000100'} })
|
|
8446
8609
|
humidity_regm: Optional[list[TextValue]] = Field(default=None, title="humidity regimen", description="""Information about treatment involving an exposure to varying degree of humidity; information about treatment involving use of growth hormones; should include amount of humidity administered, treatment regimen including how many times the treatment was repeated, how long each treatment lasted, and the start and end time of the entire treatment; can include multiple regimens""", json_schema_extra = { "linkml_meta": {'alias': 'humidity_regm',
|
|
@@ -8573,7 +8736,7 @@ class Biosample(Sample):
|
|
|
8573
8736
|
'preferred_unit': {'tag': 'preferred_unit', 'value': 'lux'},
|
|
8574
8737
|
'storage_units': {'tag': 'storage_units', 'value': 'lx'}},
|
|
8575
8738
|
'domain_of': ['Biosample'],
|
|
8576
|
-
'examples': [{'value': '0.3
|
|
8739
|
+
'examples': [{'value': '0.3 lx'}],
|
|
8577
8740
|
'is_a': 'core field',
|
|
8578
8741
|
'slot_uri': 'MIXS:0000706'} })
|
|
8579
8742
|
light_regm: Optional[TextValue] = Field(default=None, title="light regimen", description="""Information about treatment(s) involving exposure to light, including both light intensity and quality.""", json_schema_extra = { "linkml_meta": {'alias': 'light_regm',
|
|
@@ -8670,7 +8833,7 @@ class Biosample(Sample):
|
|
|
8670
8833
|
'storage_units': {'tag': 'storage_units',
|
|
8671
8834
|
'value': '[ppm]|mg/L|mol/L|umol/kg|mg/kg'}},
|
|
8672
8835
|
'domain_of': ['Biosample'],
|
|
8673
|
-
'examples': [{'value': '52.8
|
|
8836
|
+
'examples': [{'value': '52.8 umol/kg'}],
|
|
8674
8837
|
'is_a': 'core field',
|
|
8675
8838
|
'slot_uri': 'MIXS:0000431'} })
|
|
8676
8839
|
max_occup: Optional[QuantityValue] = Field(default=None, title="maximum occupancy", description="""The maximum amount of people allowed in the indoor environment""", json_schema_extra = { "linkml_meta": {'alias': 'max_occup',
|
|
@@ -8692,7 +8855,7 @@ class Biosample(Sample):
|
|
|
8692
8855
|
'value': 'meter per second'},
|
|
8693
8856
|
'storage_units': {'tag': 'storage_units', 'value': 'm/s'}},
|
|
8694
8857
|
'domain_of': ['Biosample'],
|
|
8695
|
-
'examples': [{'value': '0.5
|
|
8858
|
+
'examples': [{'value': '0.5 m/s'}],
|
|
8696
8859
|
'is_a': 'core field',
|
|
8697
8860
|
'slot_uri': 'MIXS:0000498'} })
|
|
8698
8861
|
mean_peak_frict_vel: Optional[QuantityValue] = Field(default=None, title="mean peak friction velocity", description="""Measurement of mean peak friction velocity""", json_schema_extra = { "linkml_meta": {'alias': 'mean_peak_frict_vel',
|
|
@@ -8704,7 +8867,7 @@ class Biosample(Sample):
|
|
|
8704
8867
|
'value': 'meter per second'},
|
|
8705
8868
|
'storage_units': {'tag': 'storage_units', 'value': 'm/s'}},
|
|
8706
8869
|
'domain_of': ['Biosample'],
|
|
8707
|
-
'examples': [{'value': '1
|
|
8870
|
+
'examples': [{'value': '1 m/s'}],
|
|
8708
8871
|
'is_a': 'core field',
|
|
8709
8872
|
'slot_uri': 'MIXS:0000502'} })
|
|
8710
8873
|
mech_struc: Optional[MechStrucEnum] = Field(default=None, title="mechanical structure", description="""mechanical structure: a moving structure""", json_schema_extra = { "linkml_meta": {'alias': 'mech_struc',
|
|
@@ -8737,7 +8900,7 @@ class Biosample(Sample):
|
|
|
8737
8900
|
'storage_units': {'tag': 'storage_units',
|
|
8738
8901
|
'value': '[ppb]|[ppm]|umol/L'}},
|
|
8739
8902
|
'domain_of': ['Biosample'],
|
|
8740
|
-
'examples': [{'value': '1800
|
|
8903
|
+
'examples': [{'value': '1800 [ppb]'}],
|
|
8741
8904
|
'is_a': 'core field',
|
|
8742
8905
|
'slot_uri': 'MIXS:0000101'} })
|
|
8743
8906
|
micro_biomass_meth: Optional[str] = Field(default=None, title="microbial biomass method", description="""Reference or method used in determining microbial biomass""", json_schema_extra = { "linkml_meta": {'alias': 'micro_biomass_meth',
|
|
@@ -8781,7 +8944,7 @@ class Biosample(Sample):
|
|
|
8781
8944
|
'slot_uri': 'MIXS:0000570',
|
|
8782
8945
|
'string_serialization': '{text};{float} '
|
|
8783
8946
|
'{unit};{Rn/start_time/end_time/duration}'} })
|
|
8784
|
-
misc_param: Optional[list[
|
|
8947
|
+
misc_param: Optional[list[PropertyAssertion]] = Field(default=None, title="miscellaneous parameter", description="""Structured miscellaneous property assertions for this Biosample. Use when a value cannot cleanly fit an existing, policy-governed slot.""", json_schema_extra = { "linkml_meta": {'alias': 'misc_param',
|
|
8785
8948
|
'aliases': ['miscellaneous parameter'],
|
|
8786
8949
|
'annotations': {'expected_value': {'tag': 'expected_value',
|
|
8787
8950
|
'value': 'parameter name;measurement '
|
|
@@ -8792,7 +8955,8 @@ class Biosample(Sample):
|
|
|
8792
8955
|
'kilogram'}],
|
|
8793
8956
|
'is_a': 'core field',
|
|
8794
8957
|
'slot_uri': 'MIXS:0000752',
|
|
8795
|
-
'string_serialization': '{text};{float} {unit}'
|
|
8958
|
+
'string_serialization': '{text};{float} {unit}',
|
|
8959
|
+
'todos': ['This slot should not be available in the submission portal.']} })
|
|
8796
8960
|
n_alkanes: Optional[list[TextValue]] = Field(default=None, title="n-alkanes", description="""Concentration of n-alkanes; can include multiple n-alkanes""", json_schema_extra = { "linkml_meta": {'alias': 'n_alkanes',
|
|
8797
8961
|
'aliases': ['n-alkanes'],
|
|
8798
8962
|
'annotations': {'expected_value': {'tag': 'expected_value',
|
|
@@ -8816,7 +8980,7 @@ class Biosample(Sample):
|
|
|
8816
8980
|
'storage_units': {'tag': 'storage_units',
|
|
8817
8981
|
'value': '[ppm]|mg/L|umol/L'}},
|
|
8818
8982
|
'domain_of': ['Biosample'],
|
|
8819
|
-
'examples': [{'value': '65
|
|
8983
|
+
'examples': [{'value': '65 umol/L'}],
|
|
8820
8984
|
'is_a': 'core field',
|
|
8821
8985
|
'slot_uri': 'MIXS:0000425'} })
|
|
8822
8986
|
nitrite: Optional[QuantityValue] = Field(default=None, title="nitrite", description="""Concentration of nitrite in the sample""", json_schema_extra = { "linkml_meta": {'alias': 'nitrite',
|
|
@@ -8830,7 +8994,7 @@ class Biosample(Sample):
|
|
|
8830
8994
|
'storage_units': {'tag': 'storage_units',
|
|
8831
8995
|
'value': '[ppm]|mg/L|umol/L'}},
|
|
8832
8996
|
'domain_of': ['Biosample'],
|
|
8833
|
-
'examples': [{'value': '0.5
|
|
8997
|
+
'examples': [{'value': '0.5 umol/L'}],
|
|
8834
8998
|
'is_a': 'core field',
|
|
8835
8999
|
'slot_uri': 'MIXS:0000426'} })
|
|
8836
9000
|
nitro: Optional[QuantityValue] = Field(default=None, title="nitrogen", description="""Concentration of nitrogen (total)""", json_schema_extra = { "linkml_meta": {'alias': 'nitro',
|
|
@@ -8843,7 +9007,7 @@ class Biosample(Sample):
|
|
|
8843
9007
|
'storage_units': {'tag': 'storage_units',
|
|
8844
9008
|
'value': 'umol/L|%'}},
|
|
8845
9009
|
'domain_of': ['Biosample'],
|
|
8846
|
-
'examples': [{'value': '4.2
|
|
9010
|
+
'examples': [{'value': '4.2 umol/L'}],
|
|
8847
9011
|
'is_a': 'core field',
|
|
8848
9012
|
'slot_uri': 'MIXS:0000504'} })
|
|
8849
9013
|
non_min_nutr_regm: Optional[list[str]] = Field(default=None, title="non-mineral nutrient regimen", description="""Information about treatment involving the exposure of plant to non-mineral nutrient such as oxygen, hydrogen or carbon; should include the name of non-mineral nutrient, amount administered, treatment regimen including how many times the treatment was repeated, how long each treatment lasted, and the start and end time of the entire treatment; can include multiple non-mineral nutrient regimens""", json_schema_extra = { "linkml_meta": {'alias': 'non_min_nutr_regm',
|
|
@@ -8932,9 +9096,9 @@ class Biosample(Sample):
|
|
|
8932
9096
|
'preferred_unit': {'tag': 'preferred_unit',
|
|
8933
9097
|
'value': 'micromole per liter'},
|
|
8934
9098
|
'storage_units': {'tag': 'storage_units',
|
|
8935
|
-
'value': 'umol/L
|
|
9099
|
+
'value': 'umol/L|%|mg/L'}},
|
|
8936
9100
|
'domain_of': ['Biosample'],
|
|
8937
|
-
'examples': [{'value': '
|
|
9101
|
+
'examples': [{'value': '0.015 mg/L'}],
|
|
8938
9102
|
'is_a': 'core field',
|
|
8939
9103
|
'slot_uri': 'MIXS:0000508'} })
|
|
8940
9104
|
org_count_qpcr_info: Optional[str] = Field(default=None, title="organism count qPCR information", description="""If qpcr was used for the cell count, the target gene name, the primer sequence and the cycling conditions should also be provided. (Example: 16S rrna; FWD:ACGTAGCTATGACGT REV:GTGCTAGTCGAGTAC; initial denaturation:90C_5min; denaturation:90C_2min; annealing:52C_30 sec; elongation:72C_30 sec; 90 C for 1 min; final elongation:72C_5min; 30 cycles)""", json_schema_extra = { "linkml_meta": {'alias': 'org_count_qpcr_info',
|
|
@@ -8966,7 +9130,7 @@ class Biosample(Sample):
|
|
|
8966
9130
|
'value': 'microgram per liter'},
|
|
8967
9131
|
'storage_units': {'tag': 'storage_units', 'value': 'ug/L'}},
|
|
8968
9132
|
'domain_of': ['Biosample'],
|
|
8969
|
-
'examples': [{'value': '
|
|
9133
|
+
'examples': [{'value': '200 ug/L'}],
|
|
8970
9134
|
'is_a': 'core field',
|
|
8971
9135
|
'slot_uri': 'MIXS:0000204'} })
|
|
8972
9136
|
org_nitro: Optional[QuantityValue] = Field(default=None, title="organic nitrogen", description="""Concentration of organic nitrogen""", json_schema_extra = { "linkml_meta": {'alias': 'org_nitro',
|
|
@@ -8978,7 +9142,7 @@ class Biosample(Sample):
|
|
|
8978
9142
|
'value': 'microgram per liter'},
|
|
8979
9143
|
'storage_units': {'tag': 'storage_units', 'value': 'ug/L'}},
|
|
8980
9144
|
'domain_of': ['Biosample'],
|
|
8981
|
-
'examples': [{'value': '4
|
|
9145
|
+
'examples': [{'value': '4 ug/L'}],
|
|
8982
9146
|
'is_a': 'core field',
|
|
8983
9147
|
'slot_uri': 'MIXS:0000205'} })
|
|
8984
9148
|
org_particles: Optional[list[TextValue]] = Field(default=None, title="organic particles", description="""Concentration of particles such as faeces, hairs, food, vomit, paper fibers, plant material, humus, etc.""", json_schema_extra = { "linkml_meta": {'alias': 'org_particles',
|
|
@@ -9040,7 +9204,7 @@ class Biosample(Sample):
|
|
|
9040
9204
|
'storage_units': {'tag': 'storage_units',
|
|
9041
9205
|
'value': '[ppm]|mg/L'}},
|
|
9042
9206
|
'domain_of': ['Biosample'],
|
|
9043
|
-
'examples': [{'value': '600
|
|
9207
|
+
'examples': [{'value': '600 [ppm]'}],
|
|
9044
9208
|
'is_a': 'core field',
|
|
9045
9209
|
'slot_uri': 'MIXS:0000104'} })
|
|
9046
9210
|
part_org_carb: Optional[QuantityValue] = Field(default=None, title="particulate organic carbon", description="""Concentration of particulate organic carbon""", json_schema_extra = { "linkml_meta": {'alias': 'part_org_carb',
|
|
@@ -9053,7 +9217,7 @@ class Biosample(Sample):
|
|
|
9053
9217
|
'storage_units': {'tag': 'storage_units',
|
|
9054
9218
|
'value': 'ug/L|mg/L'}},
|
|
9055
9219
|
'domain_of': ['Biosample'],
|
|
9056
|
-
'examples': [{'value': '
|
|
9220
|
+
'examples': [{'value': '0.02 mg/L'}],
|
|
9057
9221
|
'is_a': 'core field',
|
|
9058
9222
|
'slot_uri': 'MIXS:0000515'} })
|
|
9059
9223
|
part_org_nitro: Optional[QuantityValue] = Field(default=None, title="particulate organic nitrogen", description="""Concentration of particulate organic nitrogen""", json_schema_extra = { "linkml_meta": {'alias': 'part_org_nitro',
|
|
@@ -9067,7 +9231,7 @@ class Biosample(Sample):
|
|
|
9067
9231
|
'storage_units': {'tag': 'storage_units',
|
|
9068
9232
|
'value': 'ug/L|umol/L|mg/L'}},
|
|
9069
9233
|
'domain_of': ['Biosample'],
|
|
9070
|
-
'examples': [{'value': '0.3
|
|
9234
|
+
'examples': [{'value': '0.3 umol/L'}],
|
|
9071
9235
|
'is_a': 'core field',
|
|
9072
9236
|
'slot_uri': 'MIXS:0000719'} })
|
|
9073
9237
|
particle_class: Optional[list[TextValue]] = Field(default=None, title="particle classification", description="""Particles are classified, based on their size, into six general categories:clay, silt, sand, gravel, cobbles, and boulders; should include amount of particle preceded by the name of the particle type; can include multiple values""", json_schema_extra = { "linkml_meta": {'alias': 'particle_class',
|
|
@@ -9132,7 +9296,7 @@ class Biosample(Sample):
|
|
|
9132
9296
|
'value': 'micromole per liter'},
|
|
9133
9297
|
'storage_units': {'tag': 'storage_units', 'value': 'umol/L'}},
|
|
9134
9298
|
'domain_of': ['Biosample'],
|
|
9135
|
-
'examples': [{'value': '0.05
|
|
9299
|
+
'examples': [{'value': '0.05 umol/L'}],
|
|
9136
9300
|
'is_a': 'core field',
|
|
9137
9301
|
'slot_uri': 'MIXS:0000516'} })
|
|
9138
9302
|
ph: Optional[float] = Field(default=None, title="pH", description="""Ph measurement of the sample, or liquid portion of sample, or aqueous phase of the fluid""", json_schema_extra = { "linkml_meta": {'alias': 'ph',
|
|
@@ -9190,7 +9354,7 @@ class Biosample(Sample):
|
|
|
9190
9354
|
'value': 'micromole per liter'},
|
|
9191
9355
|
'storage_units': {'tag': 'storage_units', 'value': 'umol/L'}},
|
|
9192
9356
|
'domain_of': ['Biosample'],
|
|
9193
|
-
'examples': [{'value': '0.7
|
|
9357
|
+
'examples': [{'value': '0.7 umol/L'}],
|
|
9194
9358
|
'is_a': 'core field',
|
|
9195
9359
|
'slot_uri': 'MIXS:0000505'} })
|
|
9196
9360
|
phosplipid_fatt_acid: Optional[list[TextValue]] = Field(default=None, title="phospholipid fatty acid", description="""Concentration of phospholipid fatty acids; can include multiple values""", json_schema_extra = { "linkml_meta": {'alias': 'phosplipid_fatt_acid',
|
|
@@ -9217,7 +9381,7 @@ class Biosample(Sample):
|
|
|
9217
9381
|
'storage_units': {'tag': 'storage_units',
|
|
9218
9382
|
'value': 'umol/m2/s'}},
|
|
9219
9383
|
'domain_of': ['Biosample'],
|
|
9220
|
-
'examples': [{'value': '3.926
|
|
9384
|
+
'examples': [{'value': '3.926 umol/m2/s'}],
|
|
9221
9385
|
'is_a': 'core field',
|
|
9222
9386
|
'slot_uri': 'MIXS:0000725'} })
|
|
9223
9387
|
plant_growth_med: Optional[Union[ControlledTermValue,ControlledIdentifiedTermValue]] = Field(default=None, title="plant growth medium", description="""Specification of the media for growing the plants or tissue cultured samples, e.g. soil, aeroponic, hydroponic, in vitro solid culture medium, in vitro liquid culture medium. Recommended value is a specific value from EO:plant growth medium (follow this link for terms http://purl.obolibrary.org/obo/EO_0007147) or other controlled vocabulary""", json_schema_extra = { "linkml_meta": {'alias': 'plant_growth_med',
|
|
@@ -9295,7 +9459,7 @@ class Biosample(Sample):
|
|
|
9295
9459
|
'storage_units': {'tag': 'storage_units',
|
|
9296
9460
|
'value': '[ppm]|mg/L|mg/kg'}},
|
|
9297
9461
|
'domain_of': ['Biosample'],
|
|
9298
|
-
'examples': [{'value': '463
|
|
9462
|
+
'examples': [{'value': '463 mg/L'}],
|
|
9299
9463
|
'is_a': 'core field',
|
|
9300
9464
|
'slot_uri': 'MIXS:0000430'} })
|
|
9301
9465
|
pour_point: Optional[QuantityValue] = Field(default=None, title="pour point", description="""Temperature at which a liquid becomes semi solid and loses its flow characteristics. In crude oil a high pour point is generally associated with a high paraffin content, typically found in crude deriving from a larger proportion of plant material. (soure: https://en.wikipedia.org/wiki/pour_point)""", json_schema_extra = { "linkml_meta": {'alias': 'pour_point',
|
|
@@ -9338,7 +9502,7 @@ class Biosample(Sample):
|
|
|
9338
9502
|
'value': 'atmosphere'},
|
|
9339
9503
|
'storage_units': {'tag': 'storage_units', 'value': 'atm'}},
|
|
9340
9504
|
'domain_of': ['Biosample'],
|
|
9341
|
-
'examples': [{'value': '50
|
|
9505
|
+
'examples': [{'value': '50 atm'}],
|
|
9342
9506
|
'is_a': 'core field',
|
|
9343
9507
|
'slot_uri': 'MIXS:0000412'} })
|
|
9344
9508
|
prev_land_use_meth: Optional[str] = Field(default=None, title="history/previous land use method", description="""Reference or method used in determining previous land use and dates""", json_schema_extra = { "linkml_meta": {'alias': 'prev_land_use_meth',
|
|
@@ -9373,7 +9537,7 @@ class Biosample(Sample):
|
|
|
9373
9537
|
'storage_units': {'tag': 'storage_units',
|
|
9374
9538
|
'value': 'g/m2/d|mg/m3/d'}},
|
|
9375
9539
|
'domain_of': ['Biosample'],
|
|
9376
|
-
'examples': [{'value': '100
|
|
9540
|
+
'examples': [{'value': '100 mg/m3/d'}],
|
|
9377
9541
|
'is_a': 'core field',
|
|
9378
9542
|
'slot_uri': 'MIXS:0000728'} })
|
|
9379
9543
|
primary_treatment: Optional[TextValue] = Field(default=None, title="primary treatment", description="""The process to produce both a generally homogeneous liquid capable of being treated biologically and a sludge that can be separately treated or processed""", json_schema_extra = { "linkml_meta": {'alias': 'primary_treatment',
|
|
@@ -9474,7 +9638,7 @@ class Biosample(Sample):
|
|
|
9474
9638
|
'value': 'millivolt'},
|
|
9475
9639
|
'storage_units': {'tag': 'storage_units', 'value': 'mV'}},
|
|
9476
9640
|
'domain_of': ['Biosample'],
|
|
9477
|
-
'examples': [{'value': '300
|
|
9641
|
+
'examples': [{'value': '300 mV'}],
|
|
9478
9642
|
'is_a': 'core field',
|
|
9479
9643
|
'slot_uri': 'MIXS:0000182'} })
|
|
9480
9644
|
rel_air_humidity: Optional[QuantityValue] = Field(default=None, title="relative air humidity", description="""Partial vapor and air pressure, density of the vapor and air, or by the actual mass of the vapor and air""", json_schema_extra = { "linkml_meta": {'alias': 'rel_air_humidity',
|
|
@@ -9814,7 +9978,7 @@ class Biosample(Sample):
|
|
|
9814
9978
|
'percentage'},
|
|
9815
9979
|
'storage_units': {'tag': 'storage_units', 'value': '%|mg/L'}},
|
|
9816
9980
|
'domain_of': ['Biosample'],
|
|
9817
|
-
'examples': [{'value': '
|
|
9981
|
+
'examples': [{'value': '70 mg/L'}],
|
|
9818
9982
|
'is_a': 'core field',
|
|
9819
9983
|
'slot_uri': 'MIXS:0000183'} })
|
|
9820
9984
|
salinity_meth: Optional[TextValue] = Field(default=None, title="salinity method", description="""Reference or method used in determining salinity""", json_schema_extra = { "linkml_meta": {'alias': 'salinity_meth',
|
|
@@ -9926,7 +10090,7 @@ class Biosample(Sample):
|
|
|
9926
10090
|
'preferred_unit': {'tag': 'preferred_unit', 'value': 'meter'},
|
|
9927
10091
|
'storage_units': {'tag': 'storage_units', 'value': 'm'}},
|
|
9928
10092
|
'domain_of': ['Biosample'],
|
|
9929
|
-
'examples': [{'value': '1534
|
|
10093
|
+
'examples': [{'value': '1534 m'}],
|
|
9930
10094
|
'is_a': 'core field',
|
|
9931
10095
|
'slot_uri': 'MIXS:0000413'} })
|
|
9932
10096
|
samp_name: Optional[str] = Field(default=None, title="sample name", description="""A local identifier or name that for the material sample used for extracting nucleic acids, and subsequent sequencing. It can refer either to the original material collected or to any derived sub-samples. It can have any format, but we suggest that you make it concise, unique and consistent within your lab, and as informative as possible. INSDC requires every sample name from a single Submitter to be unique. Use of a globally unique identifier for the field source_mat_id is recommended in addition to sample_name.""", json_schema_extra = { "linkml_meta": {'alias': 'samp_name',
|
|
@@ -9967,7 +10131,7 @@ class Biosample(Sample):
|
|
|
9967
10131
|
'storage_units': {'tag': 'storage_units',
|
|
9968
10132
|
'value': 'L|g|mL|mg'}},
|
|
9969
10133
|
'domain_of': ['Biosample'],
|
|
9970
|
-
'examples': [{'value': '5
|
|
10134
|
+
'examples': [{'value': '5 L'}],
|
|
9971
10135
|
'is_a': 'nucleic acid sequence source field',
|
|
9972
10136
|
'slot_uri': 'MIXS:0000001'} })
|
|
9973
10137
|
samp_sort_meth: Optional[list[TextValue]] = Field(default=None, title="sample size sorting method", description="""Method by which samples are sorted; open face filter collecting total suspended particles, prefilter to remove particles larger than X micrometers in diameter, where common values of X would be 10 and 2.5 full size sorting in a cascade impactor.""", json_schema_extra = { "linkml_meta": {'alias': 'samp_sort_meth',
|
|
@@ -10009,7 +10173,7 @@ class Biosample(Sample):
|
|
|
10009
10173
|
'value': 'degree Celsius'},
|
|
10010
10174
|
'storage_units': {'tag': 'storage_units', 'value': 'Cel'}},
|
|
10011
10175
|
'domain_of': ['Biosample'],
|
|
10012
|
-
'examples': [{'value': '-80
|
|
10176
|
+
'examples': [{'value': '-80 Cel'}],
|
|
10013
10177
|
'is_a': 'core field',
|
|
10014
10178
|
'slot_uri': 'MIXS:0000110'} })
|
|
10015
10179
|
samp_subtype: Optional[SampSubtypeEnum] = Field(default=None, title="sample subtype", description="""Name of sample sub-type. For example if \"sample type\" is \"Produced Water\" then subtype could be \"Oil Phase\" or \"Water Phase\". If \"other\" is specified, please propose entry in \"additional info\" field""", json_schema_extra = { "linkml_meta": {'alias': 'samp_subtype',
|
|
@@ -10138,7 +10302,7 @@ class Biosample(Sample):
|
|
|
10138
10302
|
'(June, July, August), autumn (September, October, November) and '
|
|
10139
10303
|
'winter (December, January, February).'],
|
|
10140
10304
|
'domain_of': ['Biosample'],
|
|
10141
|
-
'examples': [{'value': '
|
|
10305
|
+
'examples': [{'value': '10 mm'}],
|
|
10142
10306
|
'is_a': 'core field',
|
|
10143
10307
|
'notes': ['mean and average are the same thing, but it seems like bad '
|
|
10144
10308
|
'practice to not be consistent. Changed mean to average'],
|
|
@@ -10154,7 +10318,7 @@ class Biosample(Sample):
|
|
|
10154
10318
|
'value': 'degree Celsius'},
|
|
10155
10319
|
'storage_units': {'tag': 'storage_units', 'value': 'Cel'}},
|
|
10156
10320
|
'domain_of': ['Biosample'],
|
|
10157
|
-
'examples': [{'value': '18
|
|
10321
|
+
'examples': [{'value': '18 Cel'}],
|
|
10158
10322
|
'is_a': 'core field',
|
|
10159
10323
|
'slot_uri': 'MIXS:0000643'} })
|
|
10160
10324
|
season_use: Optional[SeasonUseEnum] = Field(default=None, title="seasonal use", description="""The seasons the space is occupied""", json_schema_extra = { "linkml_meta": {'alias': 'season_use',
|
|
@@ -10268,7 +10432,7 @@ class Biosample(Sample):
|
|
|
10268
10432
|
'value': 'micromole per liter'},
|
|
10269
10433
|
'storage_units': {'tag': 'storage_units', 'value': 'umol/L'}},
|
|
10270
10434
|
'domain_of': ['Biosample'],
|
|
10271
|
-
'examples': [{'value': '0.05
|
|
10435
|
+
'examples': [{'value': '0.05 umol/L'}],
|
|
10272
10436
|
'is_a': 'core field',
|
|
10273
10437
|
'slot_uri': 'MIXS:0000184'} })
|
|
10274
10438
|
size_frac: Optional[TextValue] = Field(default=None, title="size fraction selected", description="""Filtering pore size used in sample preparation""", json_schema_extra = { "linkml_meta": {'alias': 'size_frac',
|
|
@@ -10288,7 +10452,7 @@ class Biosample(Sample):
|
|
|
10288
10452
|
'value': 'micrometer'},
|
|
10289
10453
|
'storage_units': {'tag': 'storage_units', 'value': 'um'}},
|
|
10290
10454
|
'domain_of': ['Biosample'],
|
|
10291
|
-
'examples': [{'value': '0.2
|
|
10455
|
+
'examples': [{'value': '0.2 um'}],
|
|
10292
10456
|
'is_a': 'core field',
|
|
10293
10457
|
'slot_uri': 'MIXS:0000735'} })
|
|
10294
10458
|
size_frac_up: Optional[QuantityValue] = Field(default=None, title="size-fraction upper threshold", description="""Refers to the mesh/pore size used to retain the sample. Materials smaller than the size threshold are excluded from the sample""", json_schema_extra = { "linkml_meta": {'alias': 'size_frac_up',
|
|
@@ -10299,7 +10463,7 @@ class Biosample(Sample):
|
|
|
10299
10463
|
'value': 'micrometer'},
|
|
10300
10464
|
'storage_units': {'tag': 'storage_units', 'value': 'um'}},
|
|
10301
10465
|
'domain_of': ['Biosample'],
|
|
10302
|
-
'examples': [{'value': '20
|
|
10466
|
+
'examples': [{'value': '20 um'}],
|
|
10303
10467
|
'is_a': 'core field',
|
|
10304
10468
|
'slot_uri': 'MIXS:0000736'} })
|
|
10305
10469
|
slope_aspect: Optional[QuantityValue] = Field(default=None, title="slope aspect", description="""The direction a slope faces. While looking down a slope use a compass to record the direction you are facing (direction or degrees). This measure provides an indication of sun and wind exposure that will influence soil temperature and evapotranspiration.""", json_schema_extra = { "linkml_meta": {'alias': 'slope_aspect',
|
|
@@ -10313,7 +10477,7 @@ class Biosample(Sample):
|
|
|
10313
10477
|
'degrees from 0 to 360, where 0 is north-facing, 90 is '
|
|
10314
10478
|
'east-facing, 180 is south-facing, and 270 is west-facing.'],
|
|
10315
10479
|
'domain_of': ['Biosample'],
|
|
10316
|
-
'examples': [{'value': '35'}],
|
|
10480
|
+
'examples': [{'value': '35 deg'}],
|
|
10317
10481
|
'is_a': 'core field',
|
|
10318
10482
|
'slot_uri': 'MIXS:0000647'} })
|
|
10319
10483
|
slope_gradient: Optional[QuantityValue] = Field(default=None, title="slope gradient", description="""Commonly called 'slope'. The angle between ground surface and a horizontal line (in percent). This is the direction that overland water would flow. This measure is usually taken with a hand level meter or clinometer""", json_schema_extra = { "linkml_meta": {'alias': 'slope_gradient',
|
|
@@ -10352,7 +10516,7 @@ class Biosample(Sample):
|
|
|
10352
10516
|
'storage_units': {'tag': 'storage_units',
|
|
10353
10517
|
'value': '[ppm]|mg/L'}},
|
|
10354
10518
|
'domain_of': ['Biosample'],
|
|
10355
|
-
'examples': [{'value': '10.5
|
|
10519
|
+
'examples': [{'value': '10.5 mg/L'}],
|
|
10356
10520
|
'is_a': 'core field',
|
|
10357
10521
|
'slot_uri': 'MIXS:0000428'} })
|
|
10358
10522
|
soil_horizon: Optional[SoilHorizonEnum] = Field(default=None, title="soil horizon", description="""Specific layer in the land area which measures parallel to the soil surface and possesses physical characteristics which differ from the layers above and beneath""", json_schema_extra = { "linkml_meta": {'alias': 'soil_horizon',
|
|
@@ -10417,7 +10581,7 @@ class Biosample(Sample):
|
|
|
10417
10581
|
'storage_units': {'tag': 'storage_units',
|
|
10418
10582
|
'value': 'kW/m2/d|erg/cm2/s'}},
|
|
10419
10583
|
'domain_of': ['Biosample'],
|
|
10420
|
-
'examples': [{'value': '1.36
|
|
10584
|
+
'examples': [{'value': '1.36 kW/m2/d'}],
|
|
10421
10585
|
'is_a': 'core field',
|
|
10422
10586
|
'slot_uri': 'MIXS:0000112'} })
|
|
10423
10587
|
soluble_inorg_mat: Optional[list[TextValue]] = Field(default=None, title="soluble inorganic material", description="""Concentration of substances such as ammonia, road-salt, sea-salt, cyanide, hydrogen sulfide, thiocyanates, thiosulfates, etc.""", json_schema_extra = { "linkml_meta": {'alias': 'soluble_inorg_mat',
|
|
@@ -10461,7 +10625,7 @@ class Biosample(Sample):
|
|
|
10461
10625
|
'storage_units': {'tag': 'storage_units',
|
|
10462
10626
|
'value': '[ppm]|mg/L|umol/L|ug/L'}},
|
|
10463
10627
|
'domain_of': ['Biosample'],
|
|
10464
|
-
'examples': [{'value': '0.1
|
|
10628
|
+
'examples': [{'value': '0.1 mg/L'}],
|
|
10465
10629
|
'is_a': 'core field',
|
|
10466
10630
|
'slot_uri': 'MIXS:0000738'} })
|
|
10467
10631
|
source_mat_id: Optional[TextValue] = Field(default=None, title="source material identifier", description="""A globally unique identifier assigned to the biological sample.""", json_schema_extra = { "linkml_meta": {'alias': 'source_mat_id',
|
|
@@ -10597,7 +10761,7 @@ class Biosample(Sample):
|
|
|
10597
10761
|
'storage_units': {'tag': 'storage_units',
|
|
10598
10762
|
'value': '[ppm]|mg/L|umol/L'}},
|
|
10599
10763
|
'domain_of': ['Biosample'],
|
|
10600
|
-
'examples': [{'value': '5
|
|
10764
|
+
'examples': [{'value': '5 umol/L'}],
|
|
10601
10765
|
'is_a': 'core field',
|
|
10602
10766
|
'slot_uri': 'MIXS:0000423'} })
|
|
10603
10767
|
sulfate_fw: Optional[QuantityValue] = Field(default=None, title="sulfate in formation water", description="""Original sulfate concentration in the hydrocarbon resource""", json_schema_extra = { "linkml_meta": {'alias': 'sulfate_fw',
|
|
@@ -10623,7 +10787,7 @@ class Biosample(Sample):
|
|
|
10623
10787
|
'storage_units': {'tag': 'storage_units',
|
|
10624
10788
|
'value': '[ppm]|mg/L|umol/L'}},
|
|
10625
10789
|
'domain_of': ['Biosample'],
|
|
10626
|
-
'examples': [{'value': '2
|
|
10790
|
+
'examples': [{'value': '2 umol/L'}],
|
|
10627
10791
|
'is_a': 'core field',
|
|
10628
10792
|
'slot_uri': 'MIXS:0000424'} })
|
|
10629
10793
|
surf_air_cont: Optional[list[SurfAirContEnum]] = Field(default=None, title="surface-air contaminant", description="""Contaminant identified on surface""", json_schema_extra = { "linkml_meta": {'alias': 'surf_air_cont',
|
|
@@ -10668,7 +10832,7 @@ class Biosample(Sample):
|
|
|
10668
10832
|
'storage_units': {'tag': 'storage_units',
|
|
10669
10833
|
'value': '[ppm]|g/m2|g/m3'}},
|
|
10670
10834
|
'domain_of': ['Biosample'],
|
|
10671
|
-
'examples': [{'value': '0.01
|
|
10835
|
+
'examples': [{'value': '0.01 g/m2'}],
|
|
10672
10836
|
'is_a': 'core field',
|
|
10673
10837
|
'slot_uri': 'MIXS:0000128'} })
|
|
10674
10838
|
surf_moisture_ph: Optional[float] = Field(default=None, title="surface moisture pH", description="""ph measurement of surface""", json_schema_extra = { "linkml_meta": {'alias': 'surf_moisture_ph',
|
|
@@ -10689,7 +10853,7 @@ class Biosample(Sample):
|
|
|
10689
10853
|
'value': 'degree Celsius'},
|
|
10690
10854
|
'storage_units': {'tag': 'storage_units', 'value': 'Cel'}},
|
|
10691
10855
|
'domain_of': ['Biosample'],
|
|
10692
|
-
'examples': [{'value': '15
|
|
10856
|
+
'examples': [{'value': '15 Cel'}],
|
|
10693
10857
|
'is_a': 'core field',
|
|
10694
10858
|
'slot_uri': 'MIXS:0000125'} })
|
|
10695
10859
|
suspend_part_matter: Optional[QuantityValue] = Field(default=None, title="suspended particulate matter", description="""Concentration of suspended particulate matter""", json_schema_extra = { "linkml_meta": {'alias': 'suspend_part_matter',
|
|
@@ -10701,7 +10865,7 @@ class Biosample(Sample):
|
|
|
10701
10865
|
'value': 'milligram per liter'},
|
|
10702
10866
|
'storage_units': {'tag': 'storage_units', 'value': 'mg/L'}},
|
|
10703
10867
|
'domain_of': ['Biosample'],
|
|
10704
|
-
'examples': [{'value': '0.5
|
|
10868
|
+
'examples': [{'value': '0.5 mg/L'}],
|
|
10705
10869
|
'is_a': 'core field',
|
|
10706
10870
|
'slot_uri': 'MIXS:0000741'} })
|
|
10707
10871
|
suspend_solids: Optional[list[TextValue]] = Field(default=None, title="suspended solids", description="""Concentration of substances including a wide variety of material, such as silt, decaying plant and animal matter; can include multiple substances""", json_schema_extra = { "linkml_meta": {'alias': 'suspend_solids',
|
|
@@ -10739,7 +10903,7 @@ class Biosample(Sample):
|
|
|
10739
10903
|
'value': 'degree Celsius'},
|
|
10740
10904
|
'storage_units': {'tag': 'storage_units', 'value': 'Cel'}},
|
|
10741
10905
|
'domain_of': ['Biosample'],
|
|
10742
|
-
'examples': [{'value': '25
|
|
10906
|
+
'examples': [{'value': '25 Cel'}],
|
|
10743
10907
|
'is_a': 'environment field',
|
|
10744
10908
|
'slot_uri': 'MIXS:0000113'} })
|
|
10745
10909
|
temp_out: Optional[QuantityValue] = Field(default=None, title="temperature outside house", description="""The recorded temperature value at sampling time outside""", json_schema_extra = { "linkml_meta": {'alias': 'temp_out',
|
|
@@ -10751,7 +10915,7 @@ class Biosample(Sample):
|
|
|
10751
10915
|
'value': 'degree Celsius'},
|
|
10752
10916
|
'storage_units': {'tag': 'storage_units', 'value': 'Cel'}},
|
|
10753
10917
|
'domain_of': ['Biosample'],
|
|
10754
|
-
'examples': [{'value': '5
|
|
10918
|
+
'examples': [{'value': '5 Cel'}],
|
|
10755
10919
|
'is_a': 'core field',
|
|
10756
10920
|
'slot_uri': 'MIXS:0000197'} })
|
|
10757
10921
|
tertiary_treatment: Optional[TextValue] = Field(default=None, title="tertiary treatment", description="""The process providing a final treatment stage to raise the effluent quality before it is discharged to the receiving environment""", json_schema_extra = { "linkml_meta": {'alias': 'tertiary_treatment',
|
|
@@ -10830,7 +10994,7 @@ class Biosample(Sample):
|
|
|
10830
10994
|
'preferred_unit': {'tag': 'preferred_unit', 'value': 'meter'},
|
|
10831
10995
|
'storage_units': {'tag': 'storage_units', 'value': 'm'}},
|
|
10832
10996
|
'domain_of': ['Biosample'],
|
|
10833
|
-
'examples': [{'value': '500
|
|
10997
|
+
'examples': [{'value': '500 m'}],
|
|
10834
10998
|
'is_a': 'core field',
|
|
10835
10999
|
'slot_uri': 'MIXS:0000634'} })
|
|
10836
11000
|
tot_diss_nitro: Optional[QuantityValue] = Field(default=None, title="total dissolved nitrogen", description="""Total dissolved nitrogen concentration, reported as nitrogen, measured by: total dissolved nitrogen = NH4 + NO3NO2 + dissolved organic nitrogen""", json_schema_extra = { "linkml_meta": {'alias': 'tot_diss_nitro',
|
|
@@ -10843,7 +11007,7 @@ class Biosample(Sample):
|
|
|
10843
11007
|
'storage_units': {'tag': 'storage_units',
|
|
10844
11008
|
'value': 'ug/L|umol/L'}},
|
|
10845
11009
|
'domain_of': ['Biosample'],
|
|
10846
|
-
'examples': [{'value': '40
|
|
11010
|
+
'examples': [{'value': '40 ug/L'}],
|
|
10847
11011
|
'is_a': 'core field',
|
|
10848
11012
|
'slot_uri': 'MIXS:0000744'} })
|
|
10849
11013
|
tot_inorg_nitro: Optional[QuantityValue] = Field(default=None, title="total inorganic nitrogen", description="""Total inorganic nitrogen content""", json_schema_extra = { "linkml_meta": {'alias': 'tot_inorg_nitro',
|
|
@@ -10855,7 +11019,7 @@ class Biosample(Sample):
|
|
|
10855
11019
|
'value': 'microgram per liter'},
|
|
10856
11020
|
'storage_units': {'tag': 'storage_units', 'value': 'ug/L'}},
|
|
10857
11021
|
'domain_of': ['Biosample'],
|
|
10858
|
-
'examples': [{'value': '40
|
|
11022
|
+
'examples': [{'value': '40 ug/L'}],
|
|
10859
11023
|
'is_a': 'core field',
|
|
10860
11024
|
'slot_uri': 'MIXS:0000745'} })
|
|
10861
11025
|
tot_iron: Optional[QuantityValue] = Field(default=None, title="total iron", description="""Concentration of total iron in the sample""", json_schema_extra = { "linkml_meta": {'alias': 'tot_iron',
|
|
@@ -10883,7 +11047,7 @@ class Biosample(Sample):
|
|
|
10883
11047
|
'storage_units': {'tag': 'storage_units',
|
|
10884
11048
|
'value': 'mg/L|ug/L|umol/L|%'}},
|
|
10885
11049
|
'domain_of': ['Biosample'],
|
|
10886
|
-
'examples': [{'value': '50
|
|
11050
|
+
'examples': [{'value': '50 umol/L'}],
|
|
10887
11051
|
'is_a': 'core field',
|
|
10888
11052
|
'slot_uri': 'MIXS:0000102'} })
|
|
10889
11053
|
tot_nitro_cont_meth: Optional[str] = Field(default=None, title="total nitrogen content method", description="""Reference or method used in determining the total nitrogen""", json_schema_extra = { "linkml_meta": {'alias': 'tot_nitro_cont_meth',
|
|
@@ -10908,7 +11072,7 @@ class Biosample(Sample):
|
|
|
10908
11072
|
'storage_units': {'tag': 'storage_units',
|
|
10909
11073
|
'value': 'mg/L|ug/L|umol/L|%'}},
|
|
10910
11074
|
'domain_of': ['Biosample'],
|
|
10911
|
-
'examples': [{'value': '5 mg
|
|
11075
|
+
'examples': [{'value': '5 mg/L'}],
|
|
10912
11076
|
'is_a': 'core field',
|
|
10913
11077
|
'slot_uri': 'MIXS:0000530'} })
|
|
10914
11078
|
tot_org_c_meth: Optional[TextValue] = Field(default=None, title="total organic carbon method", description="""Reference or method used in determining total organic carbon""", json_schema_extra = { "linkml_meta": {'alias': 'tot_org_c_meth',
|
|
@@ -10931,7 +11095,7 @@ class Biosample(Sample):
|
|
|
10931
11095
|
'material'},
|
|
10932
11096
|
'storage_units': {'tag': 'storage_units', 'value': 'mg/L'}},
|
|
10933
11097
|
'domain_of': ['Biosample'],
|
|
10934
|
-
'examples': [{'value': '5 mg
|
|
11098
|
+
'examples': [{'value': '5 mg/L'}],
|
|
10935
11099
|
'is_a': 'core field',
|
|
10936
11100
|
'slot_uri': 'MIXS:0000533',
|
|
10937
11101
|
'todos': ['check description. How are they different?']} })
|
|
@@ -10946,7 +11110,7 @@ class Biosample(Sample):
|
|
|
10946
11110
|
'storage_units': {'tag': 'storage_units',
|
|
10947
11111
|
'value': 'ug/L|umol/L'}},
|
|
10948
11112
|
'domain_of': ['Biosample'],
|
|
10949
|
-
'examples': [{'value': '35
|
|
11113
|
+
'examples': [{'value': '35 umol/L'}],
|
|
10950
11114
|
'is_a': 'core field',
|
|
10951
11115
|
'slot_uri': 'MIXS:0000747'} })
|
|
10952
11116
|
tot_phosp: Optional[QuantityValue] = Field(default=None, title="total phosphorus", description="""Total phosphorus concentration in the sample, calculated by: total phosphorus = total dissolved phosphorus + particulate phosphorus""", json_schema_extra = { "linkml_meta": {'alias': 'tot_phosp',
|
|
@@ -10960,7 +11124,7 @@ class Biosample(Sample):
|
|
|
10960
11124
|
'storage_units': {'tag': 'storage_units',
|
|
10961
11125
|
'value': '[ppm]|mg/L|umol/L'}},
|
|
10962
11126
|
'domain_of': ['Biosample'],
|
|
10963
|
-
'examples': [{'value': '0.03
|
|
11127
|
+
'examples': [{'value': '0.03 mg/L'}],
|
|
10964
11128
|
'is_a': 'core field',
|
|
10965
11129
|
'slot_uri': 'MIXS:0000117'} })
|
|
10966
11130
|
tot_phosphate: Optional[QuantityValue] = Field(default=None, title="total phosphate", description="""Total amount or concentration of phosphate""", json_schema_extra = { "linkml_meta": {'alias': 'tot_phosphate',
|
|
@@ -11029,7 +11193,7 @@ class Biosample(Sample):
|
|
|
11029
11193
|
'storage_units': {'tag': 'storage_units',
|
|
11030
11194
|
'value': '[NTU]|[FNU]'}},
|
|
11031
11195
|
'domain_of': ['Biosample'],
|
|
11032
|
-
'examples': [{'value': '0.3
|
|
11196
|
+
'examples': [{'value': '0.3 [NTU]'}],
|
|
11033
11197
|
'is_a': 'core field',
|
|
11034
11198
|
'slot_uri': 'MIXS:0000191'} })
|
|
11035
11199
|
tvdss_of_hcr_press: Optional[QuantityValue] = Field(default=None, title="depth (TVDSS) of hydrocarbon resource pressure", description="""True vertical depth subsea (TVDSS) of the hydrocarbon resource where the original pressure was measured (e.g. 1578 m).""", json_schema_extra = { "linkml_meta": {'alias': 'tvdss_of_hcr_press',
|
|
@@ -11075,7 +11239,7 @@ class Biosample(Sample):
|
|
|
11075
11239
|
'storage_units': {'tag': 'storage_units',
|
|
11076
11240
|
'value': 'L/s|m3/min'}},
|
|
11077
11241
|
'domain_of': ['Biosample'],
|
|
11078
|
-
'examples': [{'value': '750
|
|
11242
|
+
'examples': [{'value': '750 m3/min'}],
|
|
11079
11243
|
'is_a': 'core field',
|
|
11080
11244
|
'slot_uri': 'MIXS:0000114'} })
|
|
11081
11245
|
ventilation_type: Optional[TextValue] = Field(default=None, title="ventilation type", description="""Ventilation system used in the sampled premises""", json_schema_extra = { "linkml_meta": {'alias': 'ventilation_type',
|
|
@@ -11298,7 +11462,7 @@ class Biosample(Sample):
|
|
|
11298
11462
|
'storage_units': {'tag': 'storage_units',
|
|
11299
11463
|
'value': '[kn_i]|m3/s'}},
|
|
11300
11464
|
'domain_of': ['Biosample'],
|
|
11301
|
-
'examples': [{'value': '10
|
|
11465
|
+
'examples': [{'value': '10 m3/s'}],
|
|
11302
11466
|
'is_a': 'core field',
|
|
11303
11467
|
'slot_uri': 'MIXS:0000203'} })
|
|
11304
11468
|
water_cut: Optional[QuantityValue] = Field(default=None, title="water cut", description="""Current amount of water (%) in a produced fluid stream; or the average of the combined streams""", json_schema_extra = { "linkml_meta": {'alias': 'water_cut',
|
|
@@ -11413,7 +11577,7 @@ class Biosample(Sample):
|
|
|
11413
11577
|
'storage_units': {'tag': 'storage_units',
|
|
11414
11578
|
'value': 'km/h|m/s'}},
|
|
11415
11579
|
'domain_of': ['Biosample'],
|
|
11416
|
-
'examples': [{'value': '21
|
|
11580
|
+
'examples': [{'value': '21 km/h'}],
|
|
11417
11581
|
'is_a': 'core field',
|
|
11418
11582
|
'slot_uri': 'MIXS:0000118'} })
|
|
11419
11583
|
window_cond: Optional[WindowCondEnum] = Field(default=None, title="window condition", description="""The physical condition of the window at the time of sampling""", json_schema_extra = { "linkml_meta": {'alias': 'window_cond',
|
|
@@ -11852,7 +12016,7 @@ class Biosample(Sample):
|
|
|
11852
12016
|
analysis_type: Optional[list[AnalysisTypeEnum]] = Field(default=None, title="analysis/data type", description="""Select all the data types associated or available for this biosample""", json_schema_extra = { "linkml_meta": {'alias': 'analysis_type',
|
|
11853
12017
|
'comments': ['MIxS:investigation_type was included as a `see_also` but that '
|
|
11854
12018
|
"term doesn't resolve any more"],
|
|
11855
|
-
'domain_of': ['Biosample'],
|
|
12019
|
+
'domain_of': ['Biosample', 'Protocol'],
|
|
11856
12020
|
'examples': [{'value': 'metagenomics; metabolomics; metaproteomics'}],
|
|
11857
12021
|
'rank': 3,
|
|
11858
12022
|
'recommended': True,
|
|
@@ -11951,7 +12115,7 @@ class Biosample(Sample):
|
|
|
11951
12115
|
'comments': ['This is the mass of lime, in mg, needed to raise the pH of one '
|
|
11952
12116
|
'kg of soil by one pH unit'],
|
|
11953
12117
|
'domain_of': ['Biosample'],
|
|
11954
|
-
'examples': [{'value': '543
|
|
12118
|
+
'examples': [{'value': '543 [ppm]'}],
|
|
11955
12119
|
'see_also': ['https://www.ornl.gov/content/bio-scales-0',
|
|
11956
12120
|
'https://secure.caes.uga.edu/extension/publications/files/pdf/C%20874_5.PDF']} })
|
|
11957
12121
|
lbceq: Optional[QuantityValue] = Field(default=None, title="lime buffer capacity (after 5 day incubation)", description="""lime buffer capacity, determined at equilibrium after 5 day incubation""", json_schema_extra = { "linkml_meta": {'alias': 'lbceq',
|
|
@@ -11965,7 +12129,7 @@ class Biosample(Sample):
|
|
|
11965
12129
|
'comments': ['This is the mass of lime, in mg, needed to raise the pH of one '
|
|
11966
12130
|
'kg of soil by one pH unit'],
|
|
11967
12131
|
'domain_of': ['Biosample'],
|
|
11968
|
-
'examples': [{'value': '1575
|
|
12132
|
+
'examples': [{'value': '1575 [ppm]'}],
|
|
11969
12133
|
'see_also': ['https://www.ornl.gov/content/bio-scales-0']} })
|
|
11970
12134
|
id: str = Field(default=..., description="""An NMDC assigned unique identifier for a biosample submitted to NMDC.""", json_schema_extra = { "linkml_meta": {'alias': 'id',
|
|
11971
12135
|
'domain_of': ['NamedThing'],
|
|
@@ -12600,7 +12764,7 @@ class FieldResearchSite(Site):
|
|
|
12600
12764
|
|
|
12601
12765
|
class Instrument(MaterialEntity):
|
|
12602
12766
|
"""
|
|
12603
|
-
A material entity that is designed to perform a function in a scientific investigation, but is not a reagent.
|
|
12767
|
+
A material entity that is designed to perform a function in a scientific investigation, but is not a reagent. This class models the make and model of the instrument, not the specific instance of the instrument.
|
|
12604
12768
|
"""
|
|
12605
12769
|
linkml_meta: ClassVar[LinkMLMeta] = LinkMLMeta({'aliases': ['device'],
|
|
12606
12770
|
'class_uri': 'nmdc:Instrument',
|
|
@@ -12609,7 +12773,11 @@ class Instrument(MaterialEntity):
|
|
|
12609
12773
|
'slot_usage': {'id': {'name': 'id',
|
|
12610
12774
|
'pattern': '^(nmdc):inst-([0-9][a-z]{0,6}[0-9])-([A-Za-z0-9]{1,})$',
|
|
12611
12775
|
'structured_pattern': {'interpolated': True,
|
|
12612
|
-
'syntax': '{id_nmdc_prefix}:inst-{id_shoulder}-{id_blade}$'}}}
|
|
12776
|
+
'syntax': '{id_nmdc_prefix}:inst-{id_shoulder}-{id_blade}$'}}},
|
|
12777
|
+
'unique_keys': {'main': {'description': 'A unique instrument is defined by '
|
|
12778
|
+
'its vendor and model.',
|
|
12779
|
+
'unique_key_name': 'main',
|
|
12780
|
+
'unique_key_slots': ['vendor', 'model']}}})
|
|
12613
12781
|
|
|
12614
12782
|
vendor: Optional[InstrumentVendorEnum] = Field(default=None, json_schema_extra = { "linkml_meta": {'alias': 'vendor', 'domain_of': ['Instrument']} })
|
|
12615
12783
|
model: Optional[InstrumentModelEnum] = Field(default=None, json_schema_extra = { "linkml_meta": {'alias': 'model', 'domain_of': ['Instrument']} })
|
|
@@ -15213,6 +15381,15 @@ class Protocol(ConfiguredBaseModel):
|
|
|
15213
15381
|
description: Optional[str] = Field(default=None, description="""a human-readable description of a thing""", json_schema_extra = { "linkml_meta": {'alias': 'description',
|
|
15214
15382
|
'domain_of': ['ImageValue', 'NamedThing', 'Protocol'],
|
|
15215
15383
|
'slot_uri': 'dcterms:description'} })
|
|
15384
|
+
protocol_for: Optional[ProtocolForEnum] = Field(default=None, description="""The type of planned process that the protocol describes.""", json_schema_extra = { "linkml_meta": {'alias': 'protocol_for', 'domain_of': ['Protocol']} })
|
|
15385
|
+
analysis_type: Optional[list[AnalysisTypeEnum]] = Field(default=None, title="analysis/data type", description="""Select all the data types associated or available for this biosample""", json_schema_extra = { "linkml_meta": {'alias': 'analysis_type',
|
|
15386
|
+
'comments': ['MIxS:investigation_type was included as a `see_also` but that '
|
|
15387
|
+
"term doesn't resolve any more"],
|
|
15388
|
+
'domain_of': ['Biosample', 'Protocol'],
|
|
15389
|
+
'examples': [{'value': 'metagenomics; metabolomics; metaproteomics'}],
|
|
15390
|
+
'rank': 3,
|
|
15391
|
+
'recommended': True,
|
|
15392
|
+
'slot_group': 'Sample ID'} })
|
|
15216
15393
|
|
|
15217
15394
|
|
|
15218
15395
|
class CreditAssociation(ConfiguredBaseModel):
|
|
@@ -21058,6 +21235,7 @@ TimestampValue.model_rebuild()
|
|
|
21058
21235
|
ControlledTermValue.model_rebuild()
|
|
21059
21236
|
ControlledIdentifiedTermValue.model_rebuild()
|
|
21060
21237
|
GeolocationValue.model_rebuild()
|
|
21238
|
+
PropertyAssertion.model_rebuild()
|
|
21061
21239
|
NamedThing.model_rebuild()
|
|
21062
21240
|
GeneProduct.model_rebuild()
|
|
21063
21241
|
OntologyClass.model_rebuild()
|