nmdc-schema 11.11.0__py3-none-any.whl → 11.12.0__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/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_10_0_to_11_11_0/migrator_from_11_10_0_to_11_11_0_part_1.py +2 -2
- 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 +901 -346
- nmdc_schema/nmdc.py +283 -50
- nmdc_schema/nmdc.schema.json +185 -17
- nmdc_schema/nmdc_materialized_patterns.json +1487 -244
- nmdc_schema/nmdc_materialized_patterns.schema.json +185 -17
- nmdc_schema/nmdc_materialized_patterns.yaml +1194 -210
- nmdc_schema/nmdc_schema_validation_plugin.py +103 -0
- {nmdc_schema-11.11.0.dist-info → nmdc_schema-11.12.0.dist-info}/METADATA +1 -1
- {nmdc_schema-11.11.0.dist-info → nmdc_schema-11.12.0.dist-info}/RECORD +20 -15
- {nmdc_schema-11.11.0.dist-info → nmdc_schema-11.12.0.dist-info}/WHEEL +1 -1
- {nmdc_schema-11.11.0.dist-info → nmdc_schema-11.12.0.dist-info}/entry_points.txt +8 -0
- {nmdc_schema-11.11.0.dist-info → nmdc_schema-11.12.0.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.
|
|
30
|
+
version = "11.12.0"
|
|
31
31
|
|
|
32
32
|
|
|
33
33
|
class ConfiguredBaseModel(BaseModel):
|
|
@@ -960,11 +960,11 @@ class UnitEnum(str, Enum):
|
|
|
960
960
|
"""
|
|
961
961
|
The Unified Code for Units of Measure (UCUM) representation of percent.
|
|
962
962
|
"""
|
|
963
|
-
|
|
963
|
+
JSOLIDUSdegree_Celsius = "J/K"
|
|
964
964
|
"""
|
|
965
965
|
The Unified Code for Units of Measure (UCUM) representation of joule per kelvin.
|
|
966
966
|
"""
|
|
967
|
-
|
|
967
|
+
degrees_Celsius = "Cel"
|
|
968
968
|
"""
|
|
969
969
|
The Unified Code for Units of Measure (UCUM) representation of degrees Celsius; a SI unit of temperature equal to one unit Kelvin.
|
|
970
970
|
"""
|
|
@@ -972,6 +972,10 @@ class UnitEnum(str, Enum):
|
|
|
972
972
|
"""
|
|
973
973
|
The Unified Code for Units of Measure (UCUM) representation of centimeter.
|
|
974
974
|
"""
|
|
975
|
+
cP = "cP"
|
|
976
|
+
"""
|
|
977
|
+
The Unified Code for Units of Measure (UCUM) representation of centipoise.
|
|
978
|
+
"""
|
|
975
979
|
d = "d"
|
|
976
980
|
"""
|
|
977
981
|
The Unified Code for Units of Measure (UCUM) representation of day.
|
|
@@ -1040,7 +1044,7 @@ class UnitEnum(str, Enum):
|
|
|
1040
1044
|
"""
|
|
1041
1045
|
The Unified Code for Units of Measure (UCUM) representation of watts per square meter.
|
|
1042
1046
|
"""
|
|
1043
|
-
|
|
1047
|
+
years = "a"
|
|
1044
1048
|
"""
|
|
1045
1049
|
The Unified Code for Units of Measure (UCUM) representation of year.
|
|
1046
1050
|
"""
|
|
@@ -1076,7 +1080,7 @@ class UnitEnum(str, Enum):
|
|
|
1076
1080
|
"""
|
|
1077
1081
|
The Unified Code for Units of Measure (UCUM) representation of micromoles per kilogram.
|
|
1078
1082
|
"""
|
|
1079
|
-
|
|
1083
|
+
micromoles_per_square_meter_per_second = "umol/m2/s"
|
|
1080
1084
|
"""
|
|
1081
1085
|
The Unified Code for Units of Measure (UCUM) representation of micromoles per square meter per second.
|
|
1082
1086
|
"""
|
|
@@ -1104,13 +1108,13 @@ class UnitEnum(str, Enum):
|
|
|
1104
1108
|
"""
|
|
1105
1109
|
The Unified Code for Units of Measure (UCUM) representation of atmosphere.
|
|
1106
1110
|
"""
|
|
1107
|
-
|
|
1111
|
+
V = "V"
|
|
1108
1112
|
"""
|
|
1109
|
-
The Unified Code for Units of Measure (UCUM) representation of
|
|
1113
|
+
The Unified Code for Units of Measure (UCUM) representation of volt.
|
|
1110
1114
|
"""
|
|
1111
|
-
|
|
1115
|
+
mV = "mV"
|
|
1112
1116
|
"""
|
|
1113
|
-
The Unified Code for Units of Measure (UCUM) representation of
|
|
1117
|
+
The Unified Code for Units of Measure (UCUM) representation of millivolt.
|
|
1114
1118
|
"""
|
|
1115
1119
|
L = "L"
|
|
1116
1120
|
"""
|
|
@@ -1120,11 +1124,7 @@ class UnitEnum(str, Enum):
|
|
|
1120
1124
|
"""
|
|
1121
1125
|
The Unified Code for Units of Measure (UCUM) representation of micrometer.
|
|
1122
1126
|
"""
|
|
1123
|
-
|
|
1124
|
-
"""
|
|
1125
|
-
The Unified Code for Units of Measure (UCUM) representation of year.
|
|
1126
|
-
"""
|
|
1127
|
-
number_1 = "1"
|
|
1127
|
+
ratioSOLIDUSunitless = "1"
|
|
1128
1128
|
"""
|
|
1129
1129
|
The Unified Code for Units of Measure (UCUM) representation of dimensionless quantity.
|
|
1130
1130
|
"""
|
|
@@ -1136,7 +1136,7 @@ class UnitEnum(str, Enum):
|
|
|
1136
1136
|
"""
|
|
1137
1137
|
The Unified Code for Units of Measure (UCUM) representation of kilogram.
|
|
1138
1138
|
"""
|
|
1139
|
-
|
|
1139
|
+
LEFT_SQUARE_BRACKETppthRIGHT_SQUARE_BRACKET = "[ppth]"
|
|
1140
1140
|
"""
|
|
1141
1141
|
The Unified Code for Units of Measure (UCUM) representation of parts per thousand.
|
|
1142
1142
|
"""
|
|
@@ -1144,7 +1144,7 @@ class UnitEnum(str, Enum):
|
|
|
1144
1144
|
"""
|
|
1145
1145
|
The Unified Code for Units of Measure (UCUM) representation of gram per gram.
|
|
1146
1146
|
"""
|
|
1147
|
-
|
|
1147
|
+
lux = "lx"
|
|
1148
1148
|
"""
|
|
1149
1149
|
The Unified Code for Units of Measure (UCUM) representation of lux.
|
|
1150
1150
|
"""
|
|
@@ -1292,6 +1292,10 @@ class UnitEnum(str, Enum):
|
|
|
1292
1292
|
"""
|
|
1293
1293
|
The Unified Code for Units of Measure (UCUM) representation of hertz.
|
|
1294
1294
|
"""
|
|
1295
|
+
number_1SOLIDUSd = "1/d"
|
|
1296
|
+
"""
|
|
1297
|
+
The Unified Code for Units of Measure (UCUM) representation of per day (frequency).
|
|
1298
|
+
"""
|
|
1295
1299
|
kHz = "kHz"
|
|
1296
1300
|
"""
|
|
1297
1301
|
The Unified Code for Units of Measure (UCUM) representation of kilohertz.
|
|
@@ -1332,42 +1336,14 @@ class UnitEnum(str, Enum):
|
|
|
1332
1336
|
"""
|
|
1333
1337
|
The Unified Code for Units of Measure (UCUM) representation of kilowatt.
|
|
1334
1338
|
"""
|
|
1335
|
-
API = "API"
|
|
1336
|
-
"""
|
|
1337
|
-
The Unified Code for Units of Measure (UCUM) representation of API units.
|
|
1338
|
-
"""
|
|
1339
1339
|
mbar = "mbar"
|
|
1340
1340
|
"""
|
|
1341
1341
|
The Unified Code for Units of Measure (UCUM) representation of millibar.
|
|
1342
1342
|
"""
|
|
1343
|
-
ratio = "ratio"
|
|
1344
|
-
"""
|
|
1345
|
-
The Unified Code for Units of Measure (UCUM) representation of ratio (dimensionless).
|
|
1346
|
-
"""
|
|
1347
|
-
JSOLIDUSCel = "J/Cel"
|
|
1348
|
-
"""
|
|
1349
|
-
The Unified Code for Units of Measure (UCUM) representation of joules per Celsius.
|
|
1350
|
-
"""
|
|
1351
|
-
uESOLIDUSm2SOLIDUSs = "uE/m2/s"
|
|
1352
|
-
"""
|
|
1353
|
-
The Unified Code for Units of Measure (UCUM) representation of microeinsteins per square meter per second.
|
|
1354
|
-
"""
|
|
1355
1343
|
kWSOLIDUSm2 = "kW/m2"
|
|
1356
1344
|
"""
|
|
1357
1345
|
The Unified Code for Units of Measure (UCUM) representation of kilowatts per square meter.
|
|
1358
1346
|
"""
|
|
1359
|
-
people = "people"
|
|
1360
|
-
"""
|
|
1361
|
-
The Unified Code for Units of Measure (UCUM) representation of people count.
|
|
1362
|
-
"""
|
|
1363
|
-
pets = "pets"
|
|
1364
|
-
"""
|
|
1365
|
-
The Unified Code for Units of Measure (UCUM) representation of pet count.
|
|
1366
|
-
"""
|
|
1367
|
-
plants = "plants"
|
|
1368
|
-
"""
|
|
1369
|
-
The Unified Code for Units of Measure (UCUM) representation of plant count.
|
|
1370
|
-
"""
|
|
1371
1347
|
umolSOLIDUSsSOLIDUSm2 = "umol/s/m2"
|
|
1372
1348
|
"""
|
|
1373
1349
|
The Unified Code for Units of Measure (UCUM) representation of micromoles per second per square meter.
|
|
@@ -1380,7 +1356,7 @@ class UnitEnum(str, Enum):
|
|
|
1380
1356
|
"""
|
|
1381
1357
|
The Unified Code for Units of Measure (UCUM) representation of liters per hour.
|
|
1382
1358
|
"""
|
|
1383
|
-
|
|
1359
|
+
LEFT_SQUARE_BRACKETpHRIGHT_SQUARE_BRACKET = "[pH]"
|
|
1384
1360
|
"""
|
|
1385
1361
|
The Unified Code for Units of Measure (UCUM) representation of pH units.
|
|
1386
1362
|
"""
|
|
@@ -1388,10 +1364,14 @@ class UnitEnum(str, Enum):
|
|
|
1388
1364
|
"""
|
|
1389
1365
|
The Unified Code for Units of Measure (UCUM) representation of kilowatts per square meter per day.
|
|
1390
1366
|
"""
|
|
1391
|
-
|
|
1367
|
+
Nephelometric_Turbidity_Units = "[NTU]"
|
|
1392
1368
|
"""
|
|
1393
1369
|
The Unified Code for Units of Measure (UCUM) representation of Nephelometric Turbidity Units.
|
|
1394
1370
|
"""
|
|
1371
|
+
Formazin_Nephelometric_Units = "[FNU]"
|
|
1372
|
+
"""
|
|
1373
|
+
The Unified Code for Units of Measure (UCUM) representation of Formazin Nephelometric Units.
|
|
1374
|
+
"""
|
|
1395
1375
|
m3SOLIDUSmin = "m3/min"
|
|
1396
1376
|
"""
|
|
1397
1377
|
The Unified Code for Units of Measure (UCUM) representation of cubic meters per minute.
|
|
@@ -1400,6 +1380,122 @@ class UnitEnum(str, Enum):
|
|
|
1400
1380
|
"""
|
|
1401
1381
|
The Unified Code for Units of Measure (UCUM) representation of kilometers per hour.
|
|
1402
1382
|
"""
|
|
1383
|
+
pounds_LEFT_PARENTHESISavoirdupoisRIGHT_PARENTHESIS = "[lb_av]"
|
|
1384
|
+
"""
|
|
1385
|
+
The Unified Code for Units of Measure (UCUM) representation of pound (avoirdupois).
|
|
1386
|
+
"""
|
|
1387
|
+
kgSOLIDUSkg = "kg/kg"
|
|
1388
|
+
"""
|
|
1389
|
+
The Unified Code for Units of Measure (UCUM) representation of kilogram per kilogram.
|
|
1390
|
+
"""
|
|
1391
|
+
ugSOLIDUSm3 = "ug/m3"
|
|
1392
|
+
"""
|
|
1393
|
+
The Unified Code for Units of Measure (UCUM) representation of micrograms per cubic meter.
|
|
1394
|
+
"""
|
|
1395
|
+
meqSOLIDUSL = "meq/L"
|
|
1396
|
+
"""
|
|
1397
|
+
The Unified Code for Units of Measure (UCUM) representation of milliequivalents per liter.
|
|
1398
|
+
"""
|
|
1399
|
+
lmSOLIDUSm2 = "lm/m2"
|
|
1400
|
+
"""
|
|
1401
|
+
The Unified Code for Units of Measure (UCUM) representation of lumens per square meter.
|
|
1402
|
+
"""
|
|
1403
|
+
mg = "mg"
|
|
1404
|
+
"""
|
|
1405
|
+
The Unified Code for Units of Measure (UCUM) representation of milligram.
|
|
1406
|
+
"""
|
|
1407
|
+
umolSOLIDUSLSOLIDUSh = "umol/L/h"
|
|
1408
|
+
"""
|
|
1409
|
+
The Unified Code for Units of Measure (UCUM) representation of micromoles per liter per hour.
|
|
1410
|
+
"""
|
|
1411
|
+
gSOLIDUScm3 = "g/cm3"
|
|
1412
|
+
"""
|
|
1413
|
+
The Unified Code for Units of Measure (UCUM) representation of grams per cubic centimeter.
|
|
1414
|
+
"""
|
|
1415
|
+
gSOLIDUSL = "g/L"
|
|
1416
|
+
"""
|
|
1417
|
+
The Unified Code for Units of Measure (UCUM) representation of grams per liter.
|
|
1418
|
+
"""
|
|
1419
|
+
wk = "wk"
|
|
1420
|
+
"""
|
|
1421
|
+
The Unified Code for Units of Measure (UCUM) representation of week.
|
|
1422
|
+
"""
|
|
1423
|
+
standard_gravity = "[g]"
|
|
1424
|
+
"""
|
|
1425
|
+
The Unified Code for Units of Measure (UCUM) representation of standard gravity.
|
|
1426
|
+
"""
|
|
1427
|
+
mSOLIDUSs2 = "m/s2"
|
|
1428
|
+
"""
|
|
1429
|
+
The Unified Code for Units of Measure (UCUM) representation of meters per second squared.
|
|
1430
|
+
"""
|
|
1431
|
+
molSOLIDUSg = "mol/g"
|
|
1432
|
+
"""
|
|
1433
|
+
The Unified Code for Units of Measure (UCUM) representation of moles per gram.
|
|
1434
|
+
"""
|
|
1435
|
+
gSOLIDUSm2SOLIDUSd = "g/m2/d"
|
|
1436
|
+
"""
|
|
1437
|
+
The Unified Code for Units of Measure (UCUM) representation of grams per square meter per day.
|
|
1438
|
+
"""
|
|
1439
|
+
Gy = "Gy"
|
|
1440
|
+
"""
|
|
1441
|
+
The Unified Code for Units of Measure (UCUM) representation of gray (absorbed dose).
|
|
1442
|
+
"""
|
|
1443
|
+
rad_LEFT_PARENTHESISradiation_absorbed_doseRIGHT_PARENTHESIS = "RAD"
|
|
1444
|
+
"""
|
|
1445
|
+
The Unified Code for Units of Measure (UCUM) representation of rad (radiation absorbed dose).
|
|
1446
|
+
"""
|
|
1447
|
+
square_feet = "[sft_i]"
|
|
1448
|
+
"""
|
|
1449
|
+
The Unified Code for Units of Measure (UCUM) representation of square feet.
|
|
1450
|
+
"""
|
|
1451
|
+
cubic_feet = "[cft_i]"
|
|
1452
|
+
"""
|
|
1453
|
+
The Unified Code for Units of Measure (UCUM) representation of cubic feet.
|
|
1454
|
+
"""
|
|
1455
|
+
m3 = "m3"
|
|
1456
|
+
"""
|
|
1457
|
+
The Unified Code for Units of Measure (UCUM) representation of cubic meter.
|
|
1458
|
+
"""
|
|
1459
|
+
ug = "ug"
|
|
1460
|
+
"""
|
|
1461
|
+
The Unified Code for Units of Measure (UCUM) representation of microgram.
|
|
1462
|
+
"""
|
|
1463
|
+
millimeters_per_year = "mm/a"
|
|
1464
|
+
"""
|
|
1465
|
+
The Unified Code for Units of Measure (UCUM) representation of millimeters per year.
|
|
1466
|
+
"""
|
|
1467
|
+
cm2 = "cm2"
|
|
1468
|
+
"""
|
|
1469
|
+
The Unified Code for Units of Measure (UCUM) representation of square centimeter.
|
|
1470
|
+
"""
|
|
1471
|
+
ergSOLIDUScm2SOLIDUSs = "erg/cm2/s"
|
|
1472
|
+
"""
|
|
1473
|
+
The Unified Code for Units of Measure (UCUM) representation of ergs per square centimeter per second.
|
|
1474
|
+
"""
|
|
1475
|
+
gSOLIDUSm2 = "g/m2"
|
|
1476
|
+
"""
|
|
1477
|
+
The Unified Code for Units of Measure (UCUM) representation of grams per square meter.
|
|
1478
|
+
"""
|
|
1479
|
+
LSOLIDUSs = "L/s"
|
|
1480
|
+
"""
|
|
1481
|
+
The Unified Code for Units of Measure (UCUM) representation of liters per second.
|
|
1482
|
+
"""
|
|
1483
|
+
cm3SOLIDUScm3 = "cm3/cm3"
|
|
1484
|
+
"""
|
|
1485
|
+
The Unified Code for Units of Measure (UCUM) representation of cubic centimeters per cubic centimeter.
|
|
1486
|
+
"""
|
|
1487
|
+
knots = "[kn_i]"
|
|
1488
|
+
"""
|
|
1489
|
+
The Unified Code for Units of Measure (UCUM) representation of knot (nautical miles per hour).
|
|
1490
|
+
"""
|
|
1491
|
+
m3SOLIDUSs = "m3/s"
|
|
1492
|
+
"""
|
|
1493
|
+
The Unified Code for Units of Measure (UCUM) representation of cubic meters per second.
|
|
1494
|
+
"""
|
|
1495
|
+
inches = "[in_i]"
|
|
1496
|
+
"""
|
|
1497
|
+
The Unified Code for Units of Measure (UCUM) representation of inch.
|
|
1498
|
+
"""
|
|
1403
1499
|
|
|
1404
1500
|
|
|
1405
1501
|
class ExecutionResourceEnum(str, Enum):
|
|
@@ -3234,6 +3330,42 @@ class FailureWhereEnum(str, Enum):
|
|
|
3234
3330
|
"""
|
|
3235
3331
|
|
|
3236
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
|
+
|
|
3237
3369
|
class SampleTypeEnum(str, Enum):
|
|
3238
3370
|
soil = "soil"
|
|
3239
3371
|
soil___water_extract = "soil - water extract"
|
|
@@ -3555,6 +3687,7 @@ class MobilePhaseSegment(ConfiguredBaseModel):
|
|
|
3555
3687
|
'from_schema': 'https://w3id.org/nmdc/nmdc'})
|
|
3556
3688
|
|
|
3557
3689
|
duration: Optional[QuantityValue] = Field(default=None, description="""The elapsed time of an activity.""", json_schema_extra = { "linkml_meta": {'alias': 'duration',
|
|
3690
|
+
'annotations': {'storage_units': {'tag': 'storage_units', 'value': 'h|min'}},
|
|
3558
3691
|
'domain_of': ['MixingProcess',
|
|
3559
3692
|
'DissolvingProcess',
|
|
3560
3693
|
'ChemicalConversionProcess',
|
|
@@ -3594,6 +3727,7 @@ class MobilePhaseSegment(ConfiguredBaseModel):
|
|
|
3594
3727
|
'literal_form': 'workflow_execution_class',
|
|
3595
3728
|
'predicate': 'NARROW_SYNONYM'}}} })
|
|
3596
3729
|
volume: Optional[QuantityValue] = Field(default=None, description="""The volume of a substance.""", json_schema_extra = { "linkml_meta": {'alias': 'volume',
|
|
3730
|
+
'annotations': {'storage_units': {'tag': 'storage_units', 'value': 'mL|uL'}},
|
|
3597
3731
|
'contributors': ['ORCID:0009-0001-1555-1601', 'ORCID:0000-0002-8683-0050'],
|
|
3598
3732
|
'domain_of': ['Extraction',
|
|
3599
3733
|
'SubSamplingProcess',
|
|
@@ -3612,12 +3746,17 @@ class PortionOfSubstance(ConfiguredBaseModel):
|
|
|
3612
3746
|
'title': 'Portion of a Substance'})
|
|
3613
3747
|
|
|
3614
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',
|
|
3749
|
+
'annotations': {'storage_units': {'tag': 'storage_units',
|
|
3750
|
+
'value': '%|mmol/L|umol/L|mg/L|g/L'}},
|
|
3615
3751
|
'domain_of': ['PortionOfSubstance'],
|
|
3616
3752
|
'is_a': 'concentration'} })
|
|
3617
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',
|
|
3754
|
+
'annotations': {'storage_units': {'tag': 'storage_units', 'value': 'g'}},
|
|
3618
3755
|
'domain_of': ['SubSamplingProcess', 'PortionOfSubstance'],
|
|
3619
3756
|
'exact_mappings': ['PATO:0000125']} })
|
|
3620
3757
|
source_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 solution A""", json_schema_extra = { "linkml_meta": {'alias': 'source_concentration',
|
|
3758
|
+
'annotations': {'storage_units': {'tag': 'storage_units',
|
|
3759
|
+
'value': '%|mmol/L'}},
|
|
3621
3760
|
'domain_of': ['PortionOfSubstance'],
|
|
3622
3761
|
'is_a': 'concentration'} })
|
|
3623
3762
|
known_as: Optional[ChemicalEntityEnum] = Field(default=None, description="""The substance from which a portion was taken.""", json_schema_extra = { "linkml_meta": {'alias': 'known_as', 'domain_of': ['PortionOfSubstance']} })
|
|
@@ -3650,6 +3789,7 @@ class PortionOfSubstance(ConfiguredBaseModel):
|
|
|
3650
3789
|
'literal_form': 'workflow_execution_class',
|
|
3651
3790
|
'predicate': 'NARROW_SYNONYM'}}} })
|
|
3652
3791
|
volume: Optional[QuantityValue] = Field(default=None, description="""The volume of a substance.""", json_schema_extra = { "linkml_meta": {'alias': 'volume',
|
|
3792
|
+
'annotations': {'storage_units': {'tag': 'storage_units', 'value': 'mL|uL'}},
|
|
3653
3793
|
'contributors': ['ORCID:0009-0001-1555-1601', 'ORCID:0000-0002-8683-0050'],
|
|
3654
3794
|
'domain_of': ['Extraction',
|
|
3655
3795
|
'SubSamplingProcess',
|
|
@@ -4018,20 +4158,22 @@ class QuantityValue(AttributeValue):
|
|
|
4018
4158
|
'syntax {number} {unit}',
|
|
4019
4159
|
'name': 'has_raw_value'},
|
|
4020
4160
|
'has_unit': {'description': 'The unit of the quantity',
|
|
4021
|
-
'name': 'has_unit'
|
|
4161
|
+
'name': 'has_unit',
|
|
4162
|
+
'range': 'UnitEnum',
|
|
4163
|
+
'required': True}}})
|
|
4022
4164
|
|
|
4023
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',
|
|
4024
|
-
'domain_of': ['QuantityValue'],
|
|
4166
|
+
'domain_of': ['QuantityValue', 'PropertyAssertion'],
|
|
4025
4167
|
'is_a': 'has_numeric_value'} })
|
|
4026
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',
|
|
4027
|
-
'domain_of': ['QuantityValue'],
|
|
4169
|
+
'domain_of': ['QuantityValue', 'PropertyAssertion'],
|
|
4028
4170
|
'is_a': 'has_numeric_value'} })
|
|
4029
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',
|
|
4030
|
-
'domain_of': ['QuantityValue'],
|
|
4172
|
+
'domain_of': ['QuantityValue', 'PropertyAssertion'],
|
|
4031
4173
|
'mappings': ['qud:quantityValue', 'schema:value']} })
|
|
4032
4174
|
has_unit: UnitEnum = Field(default=..., description="""The unit of the quantity""", json_schema_extra = { "linkml_meta": {'alias': 'has_unit',
|
|
4033
4175
|
'aliases': ['scale'],
|
|
4034
|
-
'domain_of': ['QuantityValue'],
|
|
4176
|
+
'domain_of': ['QuantityValue', 'PropertyAssertion'],
|
|
4035
4177
|
'mappings': ['qud:unit', 'schema:unitCode']} })
|
|
4036
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']} })
|
|
4037
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',
|
|
@@ -4439,6 +4581,135 @@ class GeolocationValue(AttributeValue):
|
|
|
4439
4581
|
'predicate': 'NARROW_SYNONYM'}}} })
|
|
4440
4582
|
|
|
4441
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
|
+
|
|
4442
4713
|
class NamedThing(ConfiguredBaseModel):
|
|
4443
4714
|
"""
|
|
4444
4715
|
a databased entity or concept/class
|
|
@@ -5543,8 +5814,6 @@ class Biosample(Sample):
|
|
|
5543
5814
|
'has been submitted '
|
|
5544
5815
|
'to NMDC',
|
|
5545
5816
|
'name': 'alternative_identifiers'},
|
|
5546
|
-
'annual_precpt': {'examples': [{'value': '8.94 inch'}],
|
|
5547
|
-
'name': 'annual_precpt'},
|
|
5548
5817
|
'associated_studies': {'name': 'associated_studies',
|
|
5549
5818
|
'pattern': '^(nmdc):sty-([0-9][a-z]{0,6}[0-9])-([A-Za-z0-9]{1,})$',
|
|
5550
5819
|
'range': 'Study',
|
|
@@ -5744,8 +6013,6 @@ class Biosample(Sample):
|
|
|
5744
6013
|
'(September, October, November) '
|
|
5745
6014
|
'and winter (December, January, '
|
|
5746
6015
|
'February).'],
|
|
5747
|
-
'examples': [{'value': '0.4 inch'},
|
|
5748
|
-
{'value': '10.16 mm'}],
|
|
5749
6016
|
'name': 'season_precpt',
|
|
5750
6017
|
'notes': ['mean and average are the same '
|
|
5751
6018
|
'thing, but it seems like bad '
|
|
@@ -5784,7 +6051,6 @@ class Biosample(Sample):
|
|
|
5784
6051
|
'exposure that will influence '
|
|
5785
6052
|
'soil temperature and '
|
|
5786
6053
|
'evapotranspiration.',
|
|
5787
|
-
'examples': [{'value': '35'}],
|
|
5788
6054
|
'name': 'slope_aspect'},
|
|
5789
6055
|
'slope_gradient': {'examples': [{'value': '10%'},
|
|
5790
6056
|
{'value': '10 %'},
|
|
@@ -5833,12 +6099,9 @@ class Biosample(Sample):
|
|
|
5833
6099
|
'tot_nitro_cont_meth': {'examples': [{'value': 'https://doi.org/10.2134/agronmonogr9.2.c32'},
|
|
5834
6100
|
{'value': 'https://acsess.onlinelibrary.wiley.com/doi/full/10.2136/sssaj2009.0389?casa_token=bm0pYIUdNMgAAAAA%3AOWVRR0STHaOe-afTcTdxn5m1hM8n2ltM0wY-b1iYpYdD9dhwppk5j3LvC2IO5yhOIvyLVeQz4NZRCZo'}],
|
|
5835
6101
|
'name': 'tot_nitro_cont_meth'},
|
|
5836
|
-
'tot_nitro_content': {'examples': [{'value': '5 mg N/ L'}],
|
|
5837
|
-
'name': 'tot_nitro_content'},
|
|
5838
6102
|
'tot_org_c_meth': {'examples': [{'value': 'https://doi.org/10.1080/07352680902776556'}],
|
|
5839
6103
|
'name': 'tot_org_c_meth'},
|
|
5840
|
-
'tot_org_carb': {'
|
|
5841
|
-
'name': 'tot_org_carb',
|
|
6104
|
+
'tot_org_carb': {'name': 'tot_org_carb',
|
|
5842
6105
|
'todos': ['check description. How are they '
|
|
5843
6106
|
'different?']},
|
|
5844
6107
|
'water_cont_soil_meth': {'comments': ['Required if providing '
|
|
@@ -5992,9 +6255,11 @@ class Biosample(Sample):
|
|
|
5992
6255
|
'occurrence': {'tag': 'occurrence', 'value': '1'},
|
|
5993
6256
|
'preferred_unit': {'tag': 'preferred_unit',
|
|
5994
6257
|
'value': 'gram per gram, kilogram per '
|
|
5995
|
-
'kilogram, kilogram, pound'}
|
|
6258
|
+
'kilogram, kilogram, pound'},
|
|
6259
|
+
'storage_units': {'tag': 'storage_units',
|
|
6260
|
+
'value': '[lb_av]|g/g|kg|kg/kg'}},
|
|
5996
6261
|
'domain_of': ['Biosample'],
|
|
5997
|
-
'examples': [{'value': '9
|
|
6262
|
+
'examples': [{'value': '9 g/g'}],
|
|
5998
6263
|
'is_a': 'core field',
|
|
5999
6264
|
'slot_uri': 'MIXS:0000122'} })
|
|
6000
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',
|
|
@@ -6077,9 +6342,10 @@ class Biosample(Sample):
|
|
|
6077
6342
|
'value': 'measurement value'},
|
|
6078
6343
|
'occurrence': {'tag': 'occurrence', 'value': '1'},
|
|
6079
6344
|
'preferred_unit': {'tag': 'preferred_unit',
|
|
6080
|
-
'value': 'degree Celsius'}
|
|
6345
|
+
'value': 'degree Celsius'},
|
|
6346
|
+
'storage_units': {'tag': 'storage_units', 'value': 'Cel'}},
|
|
6081
6347
|
'domain_of': ['Biosample'],
|
|
6082
|
-
'examples': [{'value': '20
|
|
6348
|
+
'examples': [{'value': '20 Cel'}],
|
|
6083
6349
|
'is_a': 'core field',
|
|
6084
6350
|
'slot_uri': 'MIXS:0000124'} })
|
|
6085
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',
|
|
@@ -6101,7 +6367,8 @@ class Biosample(Sample):
|
|
|
6101
6367
|
'value': 'measurement value'},
|
|
6102
6368
|
'occurrence': {'tag': 'occurrence', 'value': '1'},
|
|
6103
6369
|
'preferred_unit': {'tag': 'preferred_unit',
|
|
6104
|
-
'value': 'percentage'}
|
|
6370
|
+
'value': 'percentage'},
|
|
6371
|
+
'storage_units': {'tag': 'storage_units', 'value': '%'}},
|
|
6105
6372
|
'domain_of': ['Biosample'],
|
|
6106
6373
|
'examples': [{'value': '27%'}],
|
|
6107
6374
|
'is_a': 'core field',
|
|
@@ -6134,9 +6401,11 @@ class Biosample(Sample):
|
|
|
6134
6401
|
'occurrence': {'tag': 'occurrence', 'value': '1'},
|
|
6135
6402
|
'preferred_unit': {'tag': 'preferred_unit',
|
|
6136
6403
|
'value': 'milliequivalent per liter, '
|
|
6137
|
-
'milligram per liter'}
|
|
6404
|
+
'milligram per liter'},
|
|
6405
|
+
'storage_units': {'tag': 'storage_units',
|
|
6406
|
+
'value': 'meq/L|mg/L'}},
|
|
6138
6407
|
'domain_of': ['Biosample'],
|
|
6139
|
-
'examples': [{'value': '50
|
|
6408
|
+
'examples': [{'value': '50 mg/L'}],
|
|
6140
6409
|
'is_a': 'core field',
|
|
6141
6410
|
'slot_uri': 'MIXS:0000421'} })
|
|
6142
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',
|
|
@@ -6155,17 +6424,19 @@ class Biosample(Sample):
|
|
|
6155
6424
|
'value': 'measurement value'},
|
|
6156
6425
|
'occurrence': {'tag': 'occurrence', 'value': '1'},
|
|
6157
6426
|
'preferred_unit': {'tag': 'preferred_unit',
|
|
6158
|
-
'value': 'mole per liter'}
|
|
6427
|
+
'value': 'mole per liter'},
|
|
6428
|
+
'storage_units': {'tag': 'storage_units', 'value': 'mol/L'}},
|
|
6159
6429
|
'domain_of': ['Biosample'],
|
|
6160
|
-
'examples': [{'value': '0.005
|
|
6430
|
+
'examples': [{'value': '0.005 mol/L'}],
|
|
6161
6431
|
'is_a': 'core field',
|
|
6162
6432
|
'slot_uri': 'MIXS:0000490'} })
|
|
6163
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',
|
|
6164
6434
|
'aliases': ['altitude'],
|
|
6165
6435
|
'annotations': {'expected_value': {'tag': 'expected_value',
|
|
6166
|
-
'value': 'measurement value'}
|
|
6436
|
+
'value': 'measurement value'},
|
|
6437
|
+
'storage_units': {'tag': 'storage_units', 'value': 'm'}},
|
|
6167
6438
|
'domain_of': ['Biosample'],
|
|
6168
|
-
'examples': [{'value': '100
|
|
6439
|
+
'examples': [{'value': '100 m'}],
|
|
6169
6440
|
'is_a': 'environment field',
|
|
6170
6441
|
'slot_uri': 'MIXS:0000094'} })
|
|
6171
6442
|
aminopept_act: Optional[QuantityValue] = Field(default=None, title="aminopeptidase activity", description="""Measurement of aminopeptidase activity""", json_schema_extra = { "linkml_meta": {'alias': 'aminopept_act',
|
|
@@ -6174,9 +6445,10 @@ class Biosample(Sample):
|
|
|
6174
6445
|
'value': 'measurement value'},
|
|
6175
6446
|
'occurrence': {'tag': 'occurrence', 'value': '1'},
|
|
6176
6447
|
'preferred_unit': {'tag': 'preferred_unit',
|
|
6177
|
-
'value': 'mole per liter per hour'}
|
|
6448
|
+
'value': 'mole per liter per hour'},
|
|
6449
|
+
'storage_units': {'tag': 'storage_units', 'value': 'mol/L/h'}},
|
|
6178
6450
|
'domain_of': ['Biosample'],
|
|
6179
|
-
'examples': [{'value': '0.269
|
|
6451
|
+
'examples': [{'value': '0.269 mol/L/h'}],
|
|
6180
6452
|
'is_a': 'core field',
|
|
6181
6453
|
'slot_uri': 'MIXS:0000172'} })
|
|
6182
6454
|
ammonium: Optional[QuantityValue] = Field(default=None, title="ammonium", description="""Concentration of ammonium in the sample""", json_schema_extra = { "linkml_meta": {'alias': 'ammonium',
|
|
@@ -6186,9 +6458,11 @@ class Biosample(Sample):
|
|
|
6186
6458
|
'occurrence': {'tag': 'occurrence', 'value': '1'},
|
|
6187
6459
|
'preferred_unit': {'tag': 'preferred_unit',
|
|
6188
6460
|
'value': 'micromole per liter, milligram '
|
|
6189
|
-
'per liter, parts per million'}
|
|
6461
|
+
'per liter, parts per million'},
|
|
6462
|
+
'storage_units': {'tag': 'storage_units',
|
|
6463
|
+
'value': '[ppm]|mg/L|umol/L'}},
|
|
6190
6464
|
'domain_of': ['Biosample'],
|
|
6191
|
-
'examples': [{'value': '1.5
|
|
6465
|
+
'examples': [{'value': '1.5 mg/L'}],
|
|
6192
6466
|
'is_a': 'core field',
|
|
6193
6467
|
'slot_uri': 'MIXS:0000427'} })
|
|
6194
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',
|
|
@@ -6197,7 +6471,9 @@ class Biosample(Sample):
|
|
|
6197
6471
|
'value': 'measurement value'},
|
|
6198
6472
|
'occurrence': {'tag': 'occurrence', 'value': '1'},
|
|
6199
6473
|
'preferred_unit': {'tag': 'preferred_unit',
|
|
6200
|
-
'value': 'lux, lumens per square meter'}
|
|
6474
|
+
'value': 'lux, lumens per square meter'},
|
|
6475
|
+
'storage_units': {'tag': 'storage_units',
|
|
6476
|
+
'value': 'lm/m2|lx'}},
|
|
6201
6477
|
'domain_of': ['Biosample'],
|
|
6202
6478
|
'examples': [{'value': ''}],
|
|
6203
6479
|
'is_a': 'core field',
|
|
@@ -6218,9 +6494,10 @@ class Biosample(Sample):
|
|
|
6218
6494
|
'value': 'measurement value'},
|
|
6219
6495
|
'occurrence': {'tag': 'occurrence', 'value': '1'},
|
|
6220
6496
|
'preferred_unit': {'tag': 'preferred_unit',
|
|
6221
|
-
'value': 'millimeter'}
|
|
6497
|
+
'value': 'millimeter'},
|
|
6498
|
+
'storage_units': {'tag': 'storage_units', 'value': 'mm'}},
|
|
6222
6499
|
'domain_of': ['Biosample'],
|
|
6223
|
-
'examples': [{'value': '
|
|
6500
|
+
'examples': [{'value': '225 mm'}],
|
|
6224
6501
|
'is_a': 'core field',
|
|
6225
6502
|
'slot_uri': 'MIXS:0000644'} })
|
|
6226
6503
|
annual_temp: Optional[QuantityValue] = Field(default=None, title="mean annual temperature", description="""Mean annual temperature""", json_schema_extra = { "linkml_meta": {'alias': 'annual_temp',
|
|
@@ -6229,9 +6506,10 @@ class Biosample(Sample):
|
|
|
6229
6506
|
'value': 'measurement value'},
|
|
6230
6507
|
'occurrence': {'tag': 'occurrence', 'value': '1'},
|
|
6231
6508
|
'preferred_unit': {'tag': 'preferred_unit',
|
|
6232
|
-
'value': 'degree Celsius'}
|
|
6509
|
+
'value': 'degree Celsius'},
|
|
6510
|
+
'storage_units': {'tag': 'storage_units', 'value': 'Cel'}},
|
|
6233
6511
|
'domain_of': ['Biosample'],
|
|
6234
|
-
'examples': [{'value': '12.5
|
|
6512
|
+
'examples': [{'value': '12.5 Cel'}],
|
|
6235
6513
|
'is_a': 'core field',
|
|
6236
6514
|
'slot_uri': 'MIXS:0000642'} })
|
|
6237
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',
|
|
@@ -6256,7 +6534,9 @@ class Biosample(Sample):
|
|
|
6256
6534
|
'value': 'measurement value'},
|
|
6257
6535
|
'occurrence': {'tag': 'occurrence', 'value': '1'},
|
|
6258
6536
|
'preferred_unit': {'tag': 'preferred_unit',
|
|
6259
|
-
'value': 'degrees API'}
|
|
6537
|
+
'value': 'degrees API'},
|
|
6538
|
+
'units_alignment_excuse': {'tag': 'units_alignment_excuse',
|
|
6539
|
+
'value': 'non_ucum_unit'}},
|
|
6260
6540
|
'domain_of': ['Biosample'],
|
|
6261
6541
|
'examples': [{'value': ''}],
|
|
6262
6542
|
'is_a': 'core field',
|
|
@@ -6311,9 +6591,10 @@ class Biosample(Sample):
|
|
|
6311
6591
|
'value': 'measurement value'},
|
|
6312
6592
|
'occurrence': {'tag': 'occurrence', 'value': '1'},
|
|
6313
6593
|
'preferred_unit': {'tag': 'preferred_unit',
|
|
6314
|
-
'value': 'degree Celsius'}
|
|
6594
|
+
'value': 'degree Celsius'},
|
|
6595
|
+
'storage_units': {'tag': 'storage_units', 'value': 'Cel'}},
|
|
6315
6596
|
'domain_of': ['Biosample'],
|
|
6316
|
-
'examples': [{'value': '25.5
|
|
6597
|
+
'examples': [{'value': '25.5 Cel'}],
|
|
6317
6598
|
'is_a': 'core field',
|
|
6318
6599
|
'slot_uri': 'MIXS:0000141'} })
|
|
6319
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',
|
|
@@ -6330,9 +6611,10 @@ class Biosample(Sample):
|
|
|
6330
6611
|
'value': 'measurement value'},
|
|
6331
6612
|
'occurrence': {'tag': 'occurrence', 'value': '1'},
|
|
6332
6613
|
'preferred_unit': {'tag': 'preferred_unit',
|
|
6333
|
-
'value': 'degree Celsius'}
|
|
6614
|
+
'value': 'degree Celsius'},
|
|
6615
|
+
'storage_units': {'tag': 'storage_units', 'value': 'Cel'}},
|
|
6334
6616
|
'domain_of': ['Biosample'],
|
|
6335
|
-
'examples': [{'value': '12.5
|
|
6617
|
+
'examples': [{'value': '12.5 Cel'}],
|
|
6336
6618
|
'is_a': 'core field',
|
|
6337
6619
|
'slot_uri': 'MIXS:0000142'} })
|
|
6338
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',
|
|
@@ -6342,9 +6624,10 @@ class Biosample(Sample):
|
|
|
6342
6624
|
'occurrence': {'tag': 'occurrence', 'value': '1'},
|
|
6343
6625
|
'preferred_unit': {'tag': 'preferred_unit',
|
|
6344
6626
|
'value': 'milligram per cubic meter per '
|
|
6345
|
-
'day'}
|
|
6627
|
+
'day'},
|
|
6628
|
+
'storage_units': {'tag': 'storage_units', 'value': 'mg/m3/d'}},
|
|
6346
6629
|
'domain_of': ['Biosample'],
|
|
6347
|
-
'examples': [{'value': '5
|
|
6630
|
+
'examples': [{'value': '5 mg/m3/d'}],
|
|
6348
6631
|
'is_a': 'core field',
|
|
6349
6632
|
'slot_uri': 'MIXS:0000683'} })
|
|
6350
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',
|
|
@@ -6355,9 +6638,11 @@ class Biosample(Sample):
|
|
|
6355
6638
|
'preferred_unit': {'tag': 'preferred_unit',
|
|
6356
6639
|
'value': 'milligram per cubic meter per '
|
|
6357
6640
|
'day, micromole oxygen per liter '
|
|
6358
|
-
'per hour'}
|
|
6641
|
+
'per hour'},
|
|
6642
|
+
'storage_units': {'tag': 'storage_units',
|
|
6643
|
+
'value': 'mg/m3/d|umol/L/h'}},
|
|
6359
6644
|
'domain_of': ['Biosample'],
|
|
6360
|
-
'examples': [{'value': '300
|
|
6645
|
+
'examples': [{'value': '300 umol/L/h'}],
|
|
6361
6646
|
'is_a': 'core field',
|
|
6362
6647
|
'slot_uri': 'MIXS:0000684'} })
|
|
6363
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',
|
|
@@ -6366,9 +6651,10 @@ class Biosample(Sample):
|
|
|
6366
6651
|
'value': 'measurement value'},
|
|
6367
6652
|
'occurrence': {'tag': 'occurrence', 'value': '1'},
|
|
6368
6653
|
'preferred_unit': {'tag': 'preferred_unit',
|
|
6369
|
-
'value': 'nanogram per hour'}
|
|
6654
|
+
'value': 'nanogram per hour'},
|
|
6655
|
+
'storage_units': {'tag': 'storage_units', 'value': 'ng/h'}},
|
|
6370
6656
|
'domain_of': ['Biosample'],
|
|
6371
|
-
'examples': [{'value': '
|
|
6657
|
+
'examples': [{'value': '50 ng/h'}],
|
|
6372
6658
|
'is_a': 'core field',
|
|
6373
6659
|
'slot_uri': 'MIXS:0000173'} })
|
|
6374
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',
|
|
@@ -6377,9 +6663,10 @@ class Biosample(Sample):
|
|
|
6377
6663
|
'value': 'measurement value'},
|
|
6378
6664
|
'occurrence': {'tag': 'occurrence', 'value': '1'},
|
|
6379
6665
|
'preferred_unit': {'tag': 'preferred_unit',
|
|
6380
|
-
'value': 'millibar'}
|
|
6666
|
+
'value': 'millibar'},
|
|
6667
|
+
'storage_units': {'tag': 'storage_units', 'value': 'mbar'}},
|
|
6381
6668
|
'domain_of': ['Biosample'],
|
|
6382
|
-
'examples': [{'value': '
|
|
6669
|
+
'examples': [{'value': '1013 mbar'}],
|
|
6383
6670
|
'is_a': 'core field',
|
|
6384
6671
|
'slot_uri': 'MIXS:0000096'} })
|
|
6385
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',
|
|
@@ -6414,7 +6701,9 @@ class Biosample(Sample):
|
|
|
6414
6701
|
'occurrence': {'tag': 'occurrence', 'value': '1'},
|
|
6415
6702
|
'preferred_unit': {'tag': 'preferred_unit',
|
|
6416
6703
|
'value': 'milligram per liter, parts per '
|
|
6417
|
-
'million'}
|
|
6704
|
+
'million'},
|
|
6705
|
+
'storage_units': {'tag': 'storage_units',
|
|
6706
|
+
'value': '[ppm]|mg/L'}},
|
|
6418
6707
|
'domain_of': ['Biosample'],
|
|
6419
6708
|
'examples': [{'value': ''}],
|
|
6420
6709
|
'is_a': 'core field',
|
|
@@ -6425,7 +6714,8 @@ class Biosample(Sample):
|
|
|
6425
6714
|
'value': 'measurement value'},
|
|
6426
6715
|
'occurrence': {'tag': 'occurrence', 'value': '1'},
|
|
6427
6716
|
'preferred_unit': {'tag': 'preferred_unit',
|
|
6428
|
-
'value': 'milligram per liter'}
|
|
6717
|
+
'value': 'milligram per liter'},
|
|
6718
|
+
'storage_units': {'tag': 'storage_units', 'value': 'mg/L'}},
|
|
6429
6719
|
'domain_of': ['Biosample'],
|
|
6430
6720
|
'examples': [{'value': ''}],
|
|
6431
6721
|
'is_a': 'core field',
|
|
@@ -6500,9 +6790,11 @@ class Biosample(Sample):
|
|
|
6500
6790
|
'occurrence': {'tag': 'occurrence', 'value': '1'},
|
|
6501
6791
|
'preferred_unit': {'tag': 'preferred_unit',
|
|
6502
6792
|
'value': 'microgram per liter, microgram '
|
|
6503
|
-
'per gram'}
|
|
6793
|
+
'per gram'},
|
|
6794
|
+
'storage_units': {'tag': 'storage_units',
|
|
6795
|
+
'value': 'ug/L|ug/g'}},
|
|
6504
6796
|
'domain_of': ['Biosample'],
|
|
6505
|
-
'examples': [{'value': '14
|
|
6797
|
+
'examples': [{'value': '14 ug/L'}],
|
|
6506
6798
|
'is_a': 'core field',
|
|
6507
6799
|
'slot_uri': 'MIXS:0000175'} })
|
|
6508
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',
|
|
@@ -6511,7 +6803,8 @@ class Biosample(Sample):
|
|
|
6511
6803
|
'value': 'measurement value'},
|
|
6512
6804
|
'occurrence': {'tag': 'occurrence', 'value': '1'},
|
|
6513
6805
|
'preferred_unit': {'tag': 'preferred_unit',
|
|
6514
|
-
'value': 'millimeter mercury'}
|
|
6806
|
+
'value': 'millimeter mercury'},
|
|
6807
|
+
'storage_units': {'tag': 'storage_units', 'value': 'mm[Hg]'}},
|
|
6515
6808
|
'domain_of': ['Biosample'],
|
|
6516
6809
|
'examples': [{'value': ''}],
|
|
6517
6810
|
'is_a': 'core field',
|
|
@@ -6522,7 +6815,8 @@ class Biosample(Sample):
|
|
|
6522
6815
|
'value': 'measurement value'},
|
|
6523
6816
|
'occurrence': {'tag': 'occurrence', 'value': '1'},
|
|
6524
6817
|
'preferred_unit': {'tag': 'preferred_unit',
|
|
6525
|
-
'value': 'millimeter mercury'}
|
|
6818
|
+
'value': 'millimeter mercury'},
|
|
6819
|
+
'storage_units': {'tag': 'storage_units', 'value': 'mm[Hg]'}},
|
|
6526
6820
|
'domain_of': ['Biosample'],
|
|
6527
6821
|
'examples': [{'value': ''}],
|
|
6528
6822
|
'is_a': 'core field',
|
|
@@ -6533,9 +6827,10 @@ class Biosample(Sample):
|
|
|
6533
6827
|
'value': 'measurement value'},
|
|
6534
6828
|
'occurrence': {'tag': 'occurrence', 'value': '1'},
|
|
6535
6829
|
'preferred_unit': {'tag': 'preferred_unit',
|
|
6536
|
-
'value': 'parts per million'}
|
|
6830
|
+
'value': 'parts per million'},
|
|
6831
|
+
'storage_units': {'tag': 'storage_units', 'value': '[ppm]'}},
|
|
6537
6832
|
'domain_of': ['Biosample'],
|
|
6538
|
-
'examples': [{'value': '0.05
|
|
6833
|
+
'examples': [{'value': '0.05 [ppm]'}],
|
|
6539
6834
|
'is_a': 'core field',
|
|
6540
6835
|
'slot_uri': 'MIXS:0000176'} })
|
|
6541
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',
|
|
@@ -6569,9 +6864,10 @@ class Biosample(Sample):
|
|
|
6569
6864
|
'aliases': ['built structure age'],
|
|
6570
6865
|
'annotations': {'expected_value': {'tag': 'expected_value', 'value': 'value'},
|
|
6571
6866
|
'occurrence': {'tag': 'occurrence', 'value': '1'},
|
|
6572
|
-
'preferred_unit': {'tag': 'preferred_unit', 'value': 'year'}
|
|
6867
|
+
'preferred_unit': {'tag': 'preferred_unit', 'value': 'year'},
|
|
6868
|
+
'storage_units': {'tag': 'storage_units', 'value': 'a'}},
|
|
6573
6869
|
'domain_of': ['Biosample'],
|
|
6574
|
-
'examples': [{'value': '15'}],
|
|
6870
|
+
'examples': [{'value': '15 a'}],
|
|
6575
6871
|
'is_a': 'core field',
|
|
6576
6872
|
'slot_uri': 'MIXS:0000145'} })
|
|
6577
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',
|
|
@@ -6601,9 +6897,11 @@ class Biosample(Sample):
|
|
|
6601
6897
|
'occurrence': {'tag': 'occurrence', 'value': '1'},
|
|
6602
6898
|
'preferred_unit': {'tag': 'preferred_unit',
|
|
6603
6899
|
'value': 'milligram per liter, micromole '
|
|
6604
|
-
'per liter, parts per million'}
|
|
6900
|
+
'per liter, parts per million'},
|
|
6901
|
+
'storage_units': {'tag': 'storage_units',
|
|
6902
|
+
'value': '[ppm]|mg/L|umol/L|mg/kg'}},
|
|
6605
6903
|
'domain_of': ['Biosample'],
|
|
6606
|
-
'examples': [{'value': '0.2
|
|
6904
|
+
'examples': [{'value': '0.2 umol/L'}],
|
|
6607
6905
|
'is_a': 'core field',
|
|
6608
6906
|
'slot_uri': 'MIXS:0000432'} })
|
|
6609
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',
|
|
@@ -6613,9 +6911,11 @@ class Biosample(Sample):
|
|
|
6613
6911
|
'occurrence': {'tag': 'occurrence', 'value': '1'},
|
|
6614
6912
|
'preferred_unit': {'tag': 'preferred_unit',
|
|
6615
6913
|
'value': 'micromole per liter, parts per '
|
|
6616
|
-
'million'}
|
|
6914
|
+
'million'},
|
|
6915
|
+
'storage_units': {'tag': 'storage_units',
|
|
6916
|
+
'value': '[ppm]|umol/L'}},
|
|
6617
6917
|
'domain_of': ['Biosample'],
|
|
6618
|
-
'examples': [{'value': '410
|
|
6918
|
+
'examples': [{'value': '410 [ppm]'}],
|
|
6619
6919
|
'is_a': 'core field',
|
|
6620
6920
|
'slot_uri': 'MIXS:0000097'} })
|
|
6621
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',
|
|
@@ -6625,16 +6925,19 @@ class Biosample(Sample):
|
|
|
6625
6925
|
'occurrence': {'tag': 'occurrence', 'value': '1'},
|
|
6626
6926
|
'preferred_unit': {'tag': 'preferred_unit',
|
|
6627
6927
|
'value': 'micromole per liter, parts per '
|
|
6628
|
-
'million'}
|
|
6928
|
+
'million'},
|
|
6929
|
+
'storage_units': {'tag': 'storage_units',
|
|
6930
|
+
'value': '[ppm]|umol/L'}},
|
|
6629
6931
|
'domain_of': ['Biosample'],
|
|
6630
|
-
'examples': [{'value': '0.1
|
|
6932
|
+
'examples': [{'value': '0.1 [ppm]'}],
|
|
6631
6933
|
'is_a': 'core field',
|
|
6632
6934
|
'slot_uri': 'MIXS:0000098'} })
|
|
6633
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',
|
|
6634
6936
|
'aliases': ['carbon/nitrogen ratio'],
|
|
6635
6937
|
'annotations': {'expected_value': {'tag': 'expected_value',
|
|
6636
6938
|
'value': 'measurement value'},
|
|
6637
|
-
'occurrence': {'tag': 'occurrence', 'value': '1'}
|
|
6939
|
+
'occurrence': {'tag': 'occurrence', 'value': '1'},
|
|
6940
|
+
'storage_units': {'tag': 'storage_units', 'value': '1'}},
|
|
6638
6941
|
'domain_of': ['Biosample'],
|
|
6639
6942
|
'examples': [{'value': '0.417361111'}],
|
|
6640
6943
|
'is_a': 'core field',
|
|
@@ -6645,9 +6948,10 @@ class Biosample(Sample):
|
|
|
6645
6948
|
'value': 'measurement value'},
|
|
6646
6949
|
'occurrence': {'tag': 'occurrence', 'value': '1'},
|
|
6647
6950
|
'preferred_unit': {'tag': 'preferred_unit',
|
|
6648
|
-
'value': 'square meter'}
|
|
6951
|
+
'value': 'square meter'},
|
|
6952
|
+
'storage_units': {'tag': 'storage_units', 'value': 'm2'}},
|
|
6649
6953
|
'domain_of': ['Biosample'],
|
|
6650
|
-
'examples': [{'value': '25
|
|
6954
|
+
'examples': [{'value': '25 m2'}],
|
|
6651
6955
|
'is_a': 'core field',
|
|
6652
6956
|
'slot_uri': 'MIXS:0000148'} })
|
|
6653
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',
|
|
@@ -6693,7 +6997,8 @@ class Biosample(Sample):
|
|
|
6693
6997
|
'value': 'measurement value'},
|
|
6694
6998
|
'occurrence': {'tag': 'occurrence', 'value': '1'},
|
|
6695
6999
|
'preferred_unit': {'tag': 'preferred_unit',
|
|
6696
|
-
'value': 'joule per degree Celsius'}
|
|
7000
|
+
'value': 'joule per degree Celsius'},
|
|
7001
|
+
'storage_units': {'tag': 'storage_units', 'value': 'J/K'}},
|
|
6697
7002
|
'domain_of': ['Biosample'],
|
|
6698
7003
|
'examples': [{'value': ''}],
|
|
6699
7004
|
'is_a': 'core field',
|
|
@@ -6750,7 +7055,8 @@ class Biosample(Sample):
|
|
|
6750
7055
|
'value': 'measurement value'},
|
|
6751
7056
|
'occurrence': {'tag': 'occurrence', 'value': '1'},
|
|
6752
7057
|
'preferred_unit': {'tag': 'preferred_unit',
|
|
6753
|
-
'value': 'milligram per liter'}
|
|
7058
|
+
'value': 'milligram per liter'},
|
|
7059
|
+
'storage_units': {'tag': 'storage_units', 'value': 'mg/L'}},
|
|
6754
7060
|
'domain_of': ['Biosample'],
|
|
6755
7061
|
'examples': [{'value': ''}],
|
|
6756
7062
|
'is_a': 'core field',
|
|
@@ -6786,9 +7092,11 @@ class Biosample(Sample):
|
|
|
6786
7092
|
'occurrence': {'tag': 'occurrence', 'value': '1'},
|
|
6787
7093
|
'preferred_unit': {'tag': 'preferred_unit',
|
|
6788
7094
|
'value': 'milligram per liter, parts per '
|
|
6789
|
-
'million'}
|
|
7095
|
+
'million'},
|
|
7096
|
+
'storage_units': {'tag': 'storage_units',
|
|
7097
|
+
'value': '[ppm]|mg/L'}},
|
|
6790
7098
|
'domain_of': ['Biosample'],
|
|
6791
|
-
'examples': [{'value': '5000
|
|
7099
|
+
'examples': [{'value': '5000 mg/L'}],
|
|
6792
7100
|
'is_a': 'core field',
|
|
6793
7101
|
'slot_uri': 'MIXS:0000429'} })
|
|
6794
7102
|
chlorophyll: Optional[QuantityValue] = Field(default=None, title="chlorophyll", description="""Concentration of chlorophyll""", json_schema_extra = { "linkml_meta": {'alias': 'chlorophyll',
|
|
@@ -6798,9 +7106,11 @@ class Biosample(Sample):
|
|
|
6798
7106
|
'occurrence': {'tag': 'occurrence', 'value': '1'},
|
|
6799
7107
|
'preferred_unit': {'tag': 'preferred_unit',
|
|
6800
7108
|
'value': 'milligram per cubic meter, '
|
|
6801
|
-
'microgram per liter'}
|
|
7109
|
+
'microgram per liter'},
|
|
7110
|
+
'storage_units': {'tag': 'storage_units',
|
|
7111
|
+
'value': 'mg/m3|ug/L'}},
|
|
6802
7112
|
'domain_of': ['Biosample'],
|
|
6803
|
-
'examples': [{'value': '5
|
|
7113
|
+
'examples': [{'value': '5 mg/m3'}],
|
|
6804
7114
|
'is_a': 'core field',
|
|
6805
7115
|
'slot_uri': 'MIXS:0000177'} })
|
|
6806
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',
|
|
@@ -6833,9 +7143,11 @@ class Biosample(Sample):
|
|
|
6833
7143
|
'value': 'measurement value'},
|
|
6834
7144
|
'occurrence': {'tag': 'occurrence', 'value': '1'},
|
|
6835
7145
|
'preferred_unit': {'tag': 'preferred_unit',
|
|
6836
|
-
'value': 'milliSiemens per centimeter'}
|
|
7146
|
+
'value': 'milliSiemens per centimeter'},
|
|
7147
|
+
'storage_units': {'tag': 'storage_units',
|
|
7148
|
+
'value': 'mS/cm|uS/cm'}},
|
|
6837
7149
|
'domain_of': ['Biosample'],
|
|
6838
|
-
'examples': [{'value': '10
|
|
7150
|
+
'examples': [{'value': '10 uS/cm'}],
|
|
6839
7151
|
'is_a': 'core field',
|
|
6840
7152
|
'slot_uri': 'MIXS:0000692'} })
|
|
6841
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',
|
|
@@ -6922,9 +7234,11 @@ class Biosample(Sample):
|
|
|
6922
7234
|
'occurrence': {'tag': 'occurrence', 'value': '1'},
|
|
6923
7235
|
'preferred_unit': {'tag': 'preferred_unit',
|
|
6924
7236
|
'value': 'gram per cubic meter, gram per '
|
|
6925
|
-
'cubic centimeter'}
|
|
7237
|
+
'cubic centimeter'},
|
|
7238
|
+
'storage_units': {'tag': 'storage_units',
|
|
7239
|
+
'value': 'g/cm3|g/m3|kg/m3'}},
|
|
6926
7240
|
'domain_of': ['Biosample'],
|
|
6927
|
-
'examples': [{'value': '1000
|
|
7241
|
+
'examples': [{'value': '1000 kg/m3'}],
|
|
6928
7242
|
'is_a': 'core field',
|
|
6929
7243
|
'slot_uri': 'MIXS:0000435'} })
|
|
6930
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',
|
|
@@ -6939,9 +7253,10 @@ class Biosample(Sample):
|
|
|
6939
7253
|
depth: Optional[QuantityValue] = Field(default=None, title="depth", description="""The vertical distance below local surface, e.g. for sediment or soil samples depth is measured from sediment or soil surface, respectively. Depth can be reported as an interval for subsurface samples.""", json_schema_extra = { "linkml_meta": {'alias': 'depth',
|
|
6940
7254
|
'aliases': ['depth'],
|
|
6941
7255
|
'annotations': {'expected_value': {'tag': 'expected_value',
|
|
6942
|
-
'value': 'measurement value'}
|
|
7256
|
+
'value': 'measurement value'},
|
|
7257
|
+
'storage_units': {'tag': 'storage_units', 'value': 'm'}},
|
|
6943
7258
|
'domain_of': ['Biosample'],
|
|
6944
|
-
'examples': [{'value': '10
|
|
7259
|
+
'examples': [{'value': '10 m'}],
|
|
6945
7260
|
'is_a': 'environment field',
|
|
6946
7261
|
'slot_uri': 'MIXS:0000018'} })
|
|
6947
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',
|
|
@@ -6950,9 +7265,10 @@ class Biosample(Sample):
|
|
|
6950
7265
|
'value': 'measurement value'},
|
|
6951
7266
|
'occurrence': {'tag': 'occurrence', 'value': '1'},
|
|
6952
7267
|
'preferred_unit': {'tag': 'preferred_unit',
|
|
6953
|
-
'value': 'degree Celsius'}
|
|
7268
|
+
'value': 'degree Celsius'},
|
|
7269
|
+
'storage_units': {'tag': 'storage_units', 'value': 'Cel'}},
|
|
6954
7270
|
'domain_of': ['Biosample'],
|
|
6955
|
-
'examples': [{'value': '22
|
|
7271
|
+
'examples': [{'value': '22 Cel'}],
|
|
6956
7272
|
'is_a': 'core field',
|
|
6957
7273
|
'slot_uri': 'MIXS:0000129'} })
|
|
6958
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',
|
|
@@ -6975,9 +7291,11 @@ class Biosample(Sample):
|
|
|
6975
7291
|
'occurrence': {'tag': 'occurrence', 'value': '1'},
|
|
6976
7292
|
'preferred_unit': {'tag': 'preferred_unit',
|
|
6977
7293
|
'value': 'micromole per liter, milligram '
|
|
6978
|
-
'per liter'}
|
|
7294
|
+
'per liter'},
|
|
7295
|
+
'storage_units': {'tag': 'storage_units',
|
|
7296
|
+
'value': 'mg/L|umol/L'}},
|
|
6979
7297
|
'domain_of': ['Biosample'],
|
|
6980
|
-
'examples': [{'value': '5
|
|
7298
|
+
'examples': [{'value': '5 mg/L'}],
|
|
6981
7299
|
'is_a': 'core field',
|
|
6982
7300
|
'slot_uri': 'MIXS:0000436'} })
|
|
6983
7301
|
diss_hydrogen: Optional[QuantityValue] = Field(default=None, title="dissolved hydrogen", description="""Concentration of dissolved hydrogen""", json_schema_extra = { "linkml_meta": {'alias': 'diss_hydrogen',
|
|
@@ -6986,9 +7304,10 @@ class Biosample(Sample):
|
|
|
6986
7304
|
'value': 'measurement value'},
|
|
6987
7305
|
'occurrence': {'tag': 'occurrence', 'value': '1'},
|
|
6988
7306
|
'preferred_unit': {'tag': 'preferred_unit',
|
|
6989
|
-
'value': 'micromole per liter'}
|
|
7307
|
+
'value': 'micromole per liter'},
|
|
7308
|
+
'storage_units': {'tag': 'storage_units', 'value': 'umol/L'}},
|
|
6990
7309
|
'domain_of': ['Biosample'],
|
|
6991
|
-
'examples': [{'value': '0.3
|
|
7310
|
+
'examples': [{'value': '0.3 umol/L'}],
|
|
6992
7311
|
'is_a': 'core field',
|
|
6993
7312
|
'slot_uri': 'MIXS:0000179'} })
|
|
6994
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',
|
|
@@ -6998,9 +7317,11 @@ class Biosample(Sample):
|
|
|
6998
7317
|
'occurrence': {'tag': 'occurrence', 'value': '1'},
|
|
6999
7318
|
'preferred_unit': {'tag': 'preferred_unit',
|
|
7000
7319
|
'value': 'microgram per liter, milligram '
|
|
7001
|
-
'per liter, parts per million'}
|
|
7320
|
+
'per liter, parts per million'},
|
|
7321
|
+
'storage_units': {'tag': 'storage_units',
|
|
7322
|
+
'value': '[ppm]|mg/L|ug/L|umol/kg'}},
|
|
7002
7323
|
'domain_of': ['Biosample'],
|
|
7003
|
-
'examples': [{'value': '2059
|
|
7324
|
+
'examples': [{'value': '2059 umol/kg'}],
|
|
7004
7325
|
'is_a': 'core field',
|
|
7005
7326
|
'slot_uri': 'MIXS:0000434'} })
|
|
7006
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',
|
|
@@ -7010,9 +7331,11 @@ class Biosample(Sample):
|
|
|
7010
7331
|
'occurrence': {'tag': 'occurrence', 'value': '1'},
|
|
7011
7332
|
'preferred_unit': {'tag': 'preferred_unit',
|
|
7012
7333
|
'value': 'microgram per liter, micromole '
|
|
7013
|
-
'per liter'}
|
|
7334
|
+
'per liter'},
|
|
7335
|
+
'storage_units': {'tag': 'storage_units',
|
|
7336
|
+
'value': 'ug/L|umol/L|mg/L'}},
|
|
7014
7337
|
'domain_of': ['Biosample'],
|
|
7015
|
-
'examples': [{'value': '761
|
|
7338
|
+
'examples': [{'value': '761 umol/L'}],
|
|
7016
7339
|
'is_a': 'core field',
|
|
7017
7340
|
'slot_uri': 'MIXS:0000698'} })
|
|
7018
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',
|
|
@@ -7022,9 +7345,11 @@ class Biosample(Sample):
|
|
|
7022
7345
|
'occurrence': {'tag': 'occurrence', 'value': '1'},
|
|
7023
7346
|
'preferred_unit': {'tag': 'preferred_unit',
|
|
7024
7347
|
'value': 'microgram per liter, milligram '
|
|
7025
|
-
'per liter, parts per million'}
|
|
7348
|
+
'per liter, parts per million'},
|
|
7349
|
+
'storage_units': {'tag': 'storage_units',
|
|
7350
|
+
'value': '[ppm]|mg/L|ug/L|umol/L'}},
|
|
7026
7351
|
'domain_of': ['Biosample'],
|
|
7027
|
-
'examples': [{'value': '56.5
|
|
7352
|
+
'examples': [{'value': '56.5 umol/L'}],
|
|
7028
7353
|
'is_a': 'core field',
|
|
7029
7354
|
'slot_uri': 'MIXS:0000106'} })
|
|
7030
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',
|
|
@@ -7033,7 +7358,8 @@ class Biosample(Sample):
|
|
|
7033
7358
|
'value': 'measurement value'},
|
|
7034
7359
|
'occurrence': {'tag': 'occurrence', 'value': '1'},
|
|
7035
7360
|
'preferred_unit': {'tag': 'preferred_unit',
|
|
7036
|
-
'value': 'milligram per liter'}
|
|
7361
|
+
'value': 'milligram per liter'},
|
|
7362
|
+
'storage_units': {'tag': 'storage_units', 'value': 'mg/L'}},
|
|
7037
7363
|
'domain_of': ['Biosample'],
|
|
7038
7364
|
'examples': [{'value': ''}],
|
|
7039
7365
|
'is_a': 'core field',
|
|
@@ -7045,9 +7371,11 @@ class Biosample(Sample):
|
|
|
7045
7371
|
'occurrence': {'tag': 'occurrence', 'value': '1'},
|
|
7046
7372
|
'preferred_unit': {'tag': 'preferred_unit',
|
|
7047
7373
|
'value': 'micromole per liter, milligram '
|
|
7048
|
-
'per liter'}
|
|
7374
|
+
'per liter'},
|
|
7375
|
+
'storage_units': {'tag': 'storage_units',
|
|
7376
|
+
'value': 'mg/L|umol/L|ug/L'}},
|
|
7049
7377
|
'domain_of': ['Biosample'],
|
|
7050
|
-
'examples': [{'value': '197
|
|
7378
|
+
'examples': [{'value': '197 umol/L'}],
|
|
7051
7379
|
'is_a': 'core field',
|
|
7052
7380
|
'slot_uri': 'MIXS:0000433'} })
|
|
7053
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',
|
|
@@ -7057,9 +7385,11 @@ class Biosample(Sample):
|
|
|
7057
7385
|
'occurrence': {'tag': 'occurrence', 'value': '1'},
|
|
7058
7386
|
'preferred_unit': {'tag': 'preferred_unit',
|
|
7059
7387
|
'value': 'microgram per liter, milligram '
|
|
7060
|
-
'per liter'}
|
|
7388
|
+
'per liter'},
|
|
7389
|
+
'storage_units': {'tag': 'storage_units',
|
|
7390
|
+
'value': 'mg/L|ug/L'}},
|
|
7061
7391
|
'domain_of': ['Biosample'],
|
|
7062
|
-
'examples': [{'value': '0.05
|
|
7392
|
+
'examples': [{'value': '0.05 mg/L'}],
|
|
7063
7393
|
'is_a': 'core field',
|
|
7064
7394
|
'slot_uri': 'MIXS:0000162'} })
|
|
7065
7395
|
diss_oxygen: Optional[QuantityValue] = Field(default=None, title="dissolved oxygen", description="""Concentration of dissolved oxygen""", json_schema_extra = { "linkml_meta": {'alias': 'diss_oxygen',
|
|
@@ -7069,9 +7399,11 @@ class Biosample(Sample):
|
|
|
7069
7399
|
'occurrence': {'tag': 'occurrence', 'value': '1'},
|
|
7070
7400
|
'preferred_unit': {'tag': 'preferred_unit',
|
|
7071
7401
|
'value': 'micromole per kilogram, '
|
|
7072
|
-
'milligram per liter'}
|
|
7402
|
+
'milligram per liter'},
|
|
7403
|
+
'storage_units': {'tag': 'storage_units',
|
|
7404
|
+
'value': 'mg/L|umol/kg|umol/L'}},
|
|
7073
7405
|
'domain_of': ['Biosample'],
|
|
7074
|
-
'examples': [{'value': '175
|
|
7406
|
+
'examples': [{'value': '175 umol/L'}],
|
|
7075
7407
|
'is_a': 'core field',
|
|
7076
7408
|
'slot_uri': 'MIXS:0000119'} })
|
|
7077
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',
|
|
@@ -7081,7 +7413,9 @@ class Biosample(Sample):
|
|
|
7081
7413
|
'occurrence': {'tag': 'occurrence', 'value': '1'},
|
|
7082
7414
|
'preferred_unit': {'tag': 'preferred_unit',
|
|
7083
7415
|
'value': 'micromole per kilogram, '
|
|
7084
|
-
'milligram per liter'}
|
|
7416
|
+
'milligram per liter'},
|
|
7417
|
+
'storage_units': {'tag': 'storage_units',
|
|
7418
|
+
'value': 'mg/L|umol/kg'}},
|
|
7085
7419
|
'domain_of': ['Biosample'],
|
|
7086
7420
|
'examples': [{'value': ''}],
|
|
7087
7421
|
'is_a': 'core field',
|
|
@@ -7146,9 +7480,10 @@ class Biosample(Sample):
|
|
|
7146
7480
|
'value': 'measurement value'},
|
|
7147
7481
|
'occurrence': {'tag': 'occurrence', 'value': '1'},
|
|
7148
7482
|
'preferred_unit': {'tag': 'preferred_unit',
|
|
7149
|
-
'value': 'square meter'}
|
|
7483
|
+
'value': 'square meter'},
|
|
7484
|
+
'storage_units': {'tag': 'storage_units', 'value': 'm2'}},
|
|
7150
7485
|
'domain_of': ['Biosample'],
|
|
7151
|
-
'examples': [{'value': '2.5
|
|
7486
|
+
'examples': [{'value': '2.5 m2'}],
|
|
7152
7487
|
'is_a': 'core field',
|
|
7153
7488
|
'slot_uri': 'MIXS:0000158'} })
|
|
7154
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',
|
|
@@ -7197,9 +7532,11 @@ class Biosample(Sample):
|
|
|
7197
7532
|
'preferred_unit': {'tag': 'preferred_unit',
|
|
7198
7533
|
'value': 'microEinstein per square meter '
|
|
7199
7534
|
'per second, microEinstein per '
|
|
7200
|
-
'square centimeter per second'}
|
|
7535
|
+
'square centimeter per second'},
|
|
7536
|
+
'storage_units': {'tag': 'storage_units',
|
|
7537
|
+
'value': 'umol/m2/s'}},
|
|
7201
7538
|
'domain_of': ['Biosample'],
|
|
7202
|
-
'examples': [{'value': '28.71
|
|
7539
|
+
'examples': [{'value': '28.71 umol/m2/s'}],
|
|
7203
7540
|
'is_a': 'core field',
|
|
7204
7541
|
'slot_uri': 'MIXS:0000703'} })
|
|
7205
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',
|
|
@@ -7226,7 +7563,9 @@ class Biosample(Sample):
|
|
|
7226
7563
|
'value': 'measurement value'},
|
|
7227
7564
|
'occurrence': {'tag': 'occurrence', 'value': '1'},
|
|
7228
7565
|
'preferred_unit': {'tag': 'preferred_unit',
|
|
7229
|
-
'value': 'micromole per liter'}
|
|
7566
|
+
'value': 'micromole per liter'},
|
|
7567
|
+
'units_alignment_excuse': {'tag': 'units_alignment_excuse',
|
|
7568
|
+
'value': 'mixs_inconsistent'}},
|
|
7230
7569
|
'domain_of': ['Biosample'],
|
|
7231
7570
|
'examples': [{'value': ''}],
|
|
7232
7571
|
'is_a': 'core field',
|
|
@@ -7364,7 +7703,9 @@ class Biosample(Sample):
|
|
|
7364
7703
|
'occurrence': {'tag': 'occurrence', 'value': '1'},
|
|
7365
7704
|
'preferred_unit': {'tag': 'preferred_unit',
|
|
7366
7705
|
'value': 'milligram per liter, parts per '
|
|
7367
|
-
'million'}
|
|
7706
|
+
'million'},
|
|
7707
|
+
'storage_units': {'tag': 'storage_units',
|
|
7708
|
+
'value': '[ppm]|mg/L'}},
|
|
7368
7709
|
'domain_of': ['Biosample'],
|
|
7369
7710
|
'examples': [{'value': ''}],
|
|
7370
7711
|
'is_a': 'core field',
|
|
@@ -7375,7 +7716,8 @@ class Biosample(Sample):
|
|
|
7375
7716
|
'value': 'measurement value'},
|
|
7376
7717
|
'occurrence': {'tag': 'occurrence', 'value': '1'},
|
|
7377
7718
|
'preferred_unit': {'tag': 'preferred_unit',
|
|
7378
|
-
'value': 'square meter'}
|
|
7719
|
+
'value': 'square meter'},
|
|
7720
|
+
'storage_units': {'tag': 'storage_units', 'value': 'm2'}},
|
|
7379
7721
|
'domain_of': ['Biosample'],
|
|
7380
7722
|
'examples': [{'value': ''}],
|
|
7381
7723
|
'is_a': 'core field',
|
|
@@ -7384,7 +7726,9 @@ class Biosample(Sample):
|
|
|
7384
7726
|
'aliases': ['exposed pipes'],
|
|
7385
7727
|
'annotations': {'expected_value': {'tag': 'expected_value',
|
|
7386
7728
|
'value': 'measurement value'},
|
|
7387
|
-
'occurrence': {'tag': 'occurrence', 'value': '1'}
|
|
7729
|
+
'occurrence': {'tag': 'occurrence', 'value': '1'},
|
|
7730
|
+
'units_alignment_excuse': {'tag': 'units_alignment_excuse',
|
|
7731
|
+
'value': 'pending_analysis'}},
|
|
7388
7732
|
'domain_of': ['Biosample'],
|
|
7389
7733
|
'examples': [{'value': ''}],
|
|
7390
7734
|
'is_a': 'core field',
|
|
@@ -7516,7 +7860,8 @@ class Biosample(Sample):
|
|
|
7516
7860
|
'annotations': {'expected_value': {'tag': 'expected_value', 'value': 'value'},
|
|
7517
7861
|
'occurrence': {'tag': 'occurrence', 'value': '1'},
|
|
7518
7862
|
'preferred_unit': {'tag': 'preferred_unit',
|
|
7519
|
-
'value': 'years, weeks, days'}
|
|
7863
|
+
'value': 'years, weeks, days'},
|
|
7864
|
+
'storage_units': {'tag': 'storage_units', 'value': 'a|d|wk'}},
|
|
7520
7865
|
'domain_of': ['Biosample'],
|
|
7521
7866
|
'examples': [{'value': ''}],
|
|
7522
7867
|
'is_a': 'core field',
|
|
@@ -7527,7 +7872,8 @@ class Biosample(Sample):
|
|
|
7527
7872
|
'value': 'measurement value'},
|
|
7528
7873
|
'occurrence': {'tag': 'occurrence', 'value': '1'},
|
|
7529
7874
|
'preferred_unit': {'tag': 'preferred_unit',
|
|
7530
|
-
'value': 'square meter'}
|
|
7875
|
+
'value': 'square meter'},
|
|
7876
|
+
'storage_units': {'tag': 'storage_units', 'value': 'm2'}},
|
|
7531
7877
|
'domain_of': ['Biosample'],
|
|
7532
7878
|
'examples': [{'value': ''}],
|
|
7533
7879
|
'is_a': 'core field',
|
|
@@ -7573,7 +7919,8 @@ class Biosample(Sample):
|
|
|
7573
7919
|
'value': 'measurement value'},
|
|
7574
7920
|
'occurrence': {'tag': 'occurrence', 'value': '1'},
|
|
7575
7921
|
'preferred_unit': {'tag': 'preferred_unit',
|
|
7576
|
-
'value': 'joule per degree Celsius'}
|
|
7922
|
+
'value': 'joule per degree Celsius'},
|
|
7923
|
+
'storage_units': {'tag': 'storage_units', 'value': 'J/K'}},
|
|
7577
7924
|
'domain_of': ['Biosample'],
|
|
7578
7925
|
'examples': [{'value': ''}],
|
|
7579
7926
|
'is_a': 'core field',
|
|
@@ -7594,16 +7941,18 @@ class Biosample(Sample):
|
|
|
7594
7941
|
'occurrence': {'tag': 'occurrence', 'value': '1'},
|
|
7595
7942
|
'preferred_unit': {'tag': 'preferred_unit',
|
|
7596
7943
|
'value': 'milligram chlorophyll a per '
|
|
7597
|
-
'cubic meter, volts'}
|
|
7944
|
+
'cubic meter, volts'},
|
|
7945
|
+
'storage_units': {'tag': 'storage_units', 'value': 'mg/m3|V'}},
|
|
7598
7946
|
'domain_of': ['Biosample'],
|
|
7599
|
-
'examples': [{'value': '2.5
|
|
7947
|
+
'examples': [{'value': '2.5 V'}],
|
|
7600
7948
|
'is_a': 'core field',
|
|
7601
7949
|
'slot_uri': 'MIXS:0000704'} })
|
|
7602
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',
|
|
7603
7951
|
'aliases': ['frequency of cleaning'],
|
|
7604
7952
|
'annotations': {'expected_value': {'tag': 'expected_value',
|
|
7605
7953
|
'value': 'enumeration or {text}'},
|
|
7606
|
-
'occurrence': {'tag': 'occurrence', 'value': '1'}
|
|
7954
|
+
'occurrence': {'tag': 'occurrence', 'value': '1'},
|
|
7955
|
+
'storage_units': {'tag': 'storage_units', 'value': '1/d'}},
|
|
7607
7956
|
'domain_of': ['Biosample'],
|
|
7608
7957
|
'examples': [{'value': ''}],
|
|
7609
7958
|
'is_a': 'core field',
|
|
@@ -7612,7 +7961,8 @@ class Biosample(Sample):
|
|
|
7612
7961
|
'aliases': ['frequency of cooking'],
|
|
7613
7962
|
'annotations': {'expected_value': {'tag': 'expected_value',
|
|
7614
7963
|
'value': 'measurement value'},
|
|
7615
|
-
'occurrence': {'tag': 'occurrence', 'value': '1'}
|
|
7964
|
+
'occurrence': {'tag': 'occurrence', 'value': '1'},
|
|
7965
|
+
'storage_units': {'tag': 'storage_units', 'value': '1/d'}},
|
|
7616
7966
|
'domain_of': ['Biosample'],
|
|
7617
7967
|
'examples': [{'value': ''}],
|
|
7618
7968
|
'is_a': 'core field',
|
|
@@ -7714,9 +8064,10 @@ class Biosample(Sample):
|
|
|
7714
8064
|
'value': 'measurement value'},
|
|
7715
8065
|
'occurrence': {'tag': 'occurrence', 'value': '1'},
|
|
7716
8066
|
'preferred_unit': {'tag': 'preferred_unit',
|
|
7717
|
-
'value': 'mol per liter per hour'}
|
|
8067
|
+
'value': 'mol per liter per hour'},
|
|
8068
|
+
'storage_units': {'tag': 'storage_units', 'value': 'mol/L/h'}},
|
|
7718
8069
|
'domain_of': ['Biosample'],
|
|
7719
|
-
'examples': [{'value': '5 mol
|
|
8070
|
+
'examples': [{'value': '5 mol/L/h'}],
|
|
7720
8071
|
'is_a': 'core field',
|
|
7721
8072
|
'slot_uri': 'MIXS:0000137'} })
|
|
7722
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',
|
|
@@ -7819,7 +8170,8 @@ class Biosample(Sample):
|
|
|
7819
8170
|
'value': 'measurement value'},
|
|
7820
8171
|
'occurrence': {'tag': 'occurrence', 'value': '1'},
|
|
7821
8172
|
'preferred_unit': {'tag': 'preferred_unit',
|
|
7822
|
-
'value': 'milligram per liter'}
|
|
8173
|
+
'value': 'milligram per liter'},
|
|
8174
|
+
'storage_units': {'tag': 'storage_units', 'value': 'mg/L'}},
|
|
7823
8175
|
'domain_of': ['Biosample'],
|
|
7824
8176
|
'examples': [{'value': ''}],
|
|
7825
8177
|
'is_a': 'core field',
|
|
@@ -7934,7 +8286,8 @@ class Biosample(Sample):
|
|
|
7934
8286
|
'annotations': {'expected_value': {'tag': 'expected_value', 'value': 'value'},
|
|
7935
8287
|
'occurrence': {'tag': 'occurrence', 'value': '1'},
|
|
7936
8288
|
'preferred_unit': {'tag': 'preferred_unit',
|
|
7937
|
-
'value': 'centimeter'}
|
|
8289
|
+
'value': 'centimeter'},
|
|
8290
|
+
'storage_units': {'tag': 'storage_units', 'value': 'cm'}},
|
|
7938
8291
|
'domain_of': ['Biosample'],
|
|
7939
8292
|
'examples': [{'value': ''}],
|
|
7940
8293
|
'is_a': 'core field',
|
|
@@ -7971,9 +8324,10 @@ class Biosample(Sample):
|
|
|
7971
8324
|
'annotations': {'expected_value': {'tag': 'expected_value', 'value': 'value'},
|
|
7972
8325
|
'occurrence': {'tag': 'occurrence', 'value': '1'},
|
|
7973
8326
|
'preferred_unit': {'tag': 'preferred_unit',
|
|
7974
|
-
'value': 'year, day, hour'}
|
|
8327
|
+
'value': 'year, day, hour'},
|
|
8328
|
+
'storage_units': {'tag': 'storage_units', 'value': 'a|d|h'}},
|
|
7975
8329
|
'domain_of': ['Biosample'],
|
|
7976
|
-
'examples': [{'value': '10
|
|
8330
|
+
'examples': [{'value': '10 d'}],
|
|
7977
8331
|
'is_a': 'core field',
|
|
7978
8332
|
'slot_uri': 'MIXS:0000255'} })
|
|
7979
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',
|
|
@@ -8012,9 +8366,10 @@ class Biosample(Sample):
|
|
|
8012
8366
|
'value': 'measurement value'},
|
|
8013
8367
|
'occurrence': {'tag': 'occurrence', 'value': '1'},
|
|
8014
8368
|
'preferred_unit': {'tag': 'preferred_unit',
|
|
8015
|
-
'value': 'degree Celsius'}
|
|
8369
|
+
'value': 'degree Celsius'},
|
|
8370
|
+
'storage_units': {'tag': 'storage_units', 'value': 'Cel'}},
|
|
8016
8371
|
'domain_of': ['Biosample'],
|
|
8017
|
-
'examples': [{'value': '15
|
|
8372
|
+
'examples': [{'value': '15 Cel'}],
|
|
8018
8373
|
'is_a': 'core field',
|
|
8019
8374
|
'slot_uri': 'MIXS:0000274'} })
|
|
8020
8375
|
host_color: Optional[TextValue] = Field(default=None, title="host color", description="""The color of host""", json_schema_extra = { "linkml_meta": {'alias': 'host_color',
|
|
@@ -8052,9 +8407,10 @@ class Biosample(Sample):
|
|
|
8052
8407
|
'value': 'measurement value'},
|
|
8053
8408
|
'occurrence': {'tag': 'occurrence', 'value': '1'},
|
|
8054
8409
|
'preferred_unit': {'tag': 'preferred_unit',
|
|
8055
|
-
'value': 'kilogram, gram'}
|
|
8410
|
+
'value': 'kilogram, gram'},
|
|
8411
|
+
'storage_units': {'tag': 'storage_units', 'value': 'g|kg'}},
|
|
8056
8412
|
'domain_of': ['Biosample'],
|
|
8057
|
-
'examples': [{'value': '500
|
|
8413
|
+
'examples': [{'value': '500 g'}],
|
|
8058
8414
|
'is_a': 'core field',
|
|
8059
8415
|
'slot_uri': 'MIXS:0000257'} })
|
|
8060
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',
|
|
@@ -8094,9 +8450,10 @@ class Biosample(Sample):
|
|
|
8094
8450
|
'value': 'measurement value'},
|
|
8095
8451
|
'occurrence': {'tag': 'occurrence', 'value': '1'},
|
|
8096
8452
|
'preferred_unit': {'tag': 'preferred_unit',
|
|
8097
|
-
'value': 'centimeter, millimeter, meter'}
|
|
8453
|
+
'value': 'centimeter, millimeter, meter'},
|
|
8454
|
+
'storage_units': {'tag': 'storage_units', 'value': 'cm|m|mm'}},
|
|
8098
8455
|
'domain_of': ['Biosample'],
|
|
8099
|
-
'examples': [{'value': '0.1
|
|
8456
|
+
'examples': [{'value': '0.1 m'}],
|
|
8100
8457
|
'is_a': 'core field',
|
|
8101
8458
|
'slot_uri': 'MIXS:0000264'} })
|
|
8102
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',
|
|
@@ -8115,9 +8472,10 @@ class Biosample(Sample):
|
|
|
8115
8472
|
'value': 'measurement value'},
|
|
8116
8473
|
'occurrence': {'tag': 'occurrence', 'value': '1'},
|
|
8117
8474
|
'preferred_unit': {'tag': 'preferred_unit',
|
|
8118
|
-
'value': 'centimeter, millimeter, meter'}
|
|
8475
|
+
'value': 'centimeter, millimeter, meter'},
|
|
8476
|
+
'storage_units': {'tag': 'storage_units', 'value': 'cm|m|mm'}},
|
|
8119
8477
|
'domain_of': ['Biosample'],
|
|
8120
|
-
'examples': [{'value': '1
|
|
8478
|
+
'examples': [{'value': '1 m'}],
|
|
8121
8479
|
'is_a': 'core field',
|
|
8122
8480
|
'slot_uri': 'MIXS:0000256'} })
|
|
8123
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',
|
|
@@ -8218,9 +8576,10 @@ class Biosample(Sample):
|
|
|
8218
8576
|
'value': 'measurement value'},
|
|
8219
8577
|
'occurrence': {'tag': 'occurrence', 'value': '1'},
|
|
8220
8578
|
'preferred_unit': {'tag': 'preferred_unit',
|
|
8221
|
-
'value': 'kilogram, gram'}
|
|
8579
|
+
'value': 'kilogram, gram'},
|
|
8580
|
+
'storage_units': {'tag': 'storage_units', 'value': 'g|kg'}},
|
|
8222
8581
|
'domain_of': ['Biosample'],
|
|
8223
|
-
'examples': [{'value': '2500
|
|
8582
|
+
'examples': [{'value': '2500 g'}],
|
|
8224
8583
|
'is_a': 'core field',
|
|
8225
8584
|
'slot_uri': 'MIXS:0000263'} })
|
|
8226
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',
|
|
@@ -8229,9 +8588,10 @@ class Biosample(Sample):
|
|
|
8229
8588
|
'value': 'measurement value'},
|
|
8230
8589
|
'occurrence': {'tag': 'occurrence', 'value': '1'},
|
|
8231
8590
|
'preferred_unit': {'tag': 'preferred_unit',
|
|
8232
|
-
'value': 'kilogram, gram'}
|
|
8591
|
+
'value': 'kilogram, gram'},
|
|
8592
|
+
'storage_units': {'tag': 'storage_units', 'value': 'g|kg'}},
|
|
8233
8593
|
'domain_of': ['Biosample'],
|
|
8234
|
-
'examples': [{'value': '1500
|
|
8594
|
+
'examples': [{'value': '1500 g'}],
|
|
8235
8595
|
'is_a': 'core field',
|
|
8236
8596
|
'slot_uri': 'MIXS:0000567'} })
|
|
8237
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',
|
|
@@ -8240,9 +8600,10 @@ class Biosample(Sample):
|
|
|
8240
8600
|
'value': 'measurement value'},
|
|
8241
8601
|
'occurrence': {'tag': 'occurrence', 'value': '1'},
|
|
8242
8602
|
'preferred_unit': {'tag': 'preferred_unit',
|
|
8243
|
-
'value': 'gram per cubic meter'}
|
|
8603
|
+
'value': 'gram per cubic meter'},
|
|
8604
|
+
'storage_units': {'tag': 'storage_units', 'value': 'g/m3|%'}},
|
|
8244
8605
|
'domain_of': ['Biosample'],
|
|
8245
|
-
'examples': [{'value': '25
|
|
8606
|
+
'examples': [{'value': '25 g/m3'}],
|
|
8246
8607
|
'is_a': 'core field',
|
|
8247
8608
|
'slot_uri': 'MIXS:0000100'} })
|
|
8248
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',
|
|
@@ -8283,7 +8644,8 @@ class Biosample(Sample):
|
|
|
8283
8644
|
'value': 'measurement value'},
|
|
8284
8645
|
'occurrence': {'tag': 'occurrence', 'value': '1'},
|
|
8285
8646
|
'preferred_unit': {'tag': 'preferred_unit',
|
|
8286
|
-
'value': 'percentage'}
|
|
8647
|
+
'value': 'percentage'},
|
|
8648
|
+
'storage_units': {'tag': 'storage_units', 'value': '%'}},
|
|
8287
8649
|
'domain_of': ['Biosample'],
|
|
8288
8650
|
'examples': [{'value': ''}],
|
|
8289
8651
|
'is_a': 'core field',
|
|
@@ -8308,7 +8670,9 @@ class Biosample(Sample):
|
|
|
8308
8670
|
'value': 'measurement value'},
|
|
8309
8671
|
'occurrence': {'tag': 'occurrence', 'value': '1'},
|
|
8310
8672
|
'preferred_unit': {'tag': 'preferred_unit',
|
|
8311
|
-
'value': 'kilowatt per square metre'}
|
|
8673
|
+
'value': 'kilowatt per square metre'},
|
|
8674
|
+
'units_alignment_excuse': {'tag': 'units_alignment_excuse',
|
|
8675
|
+
'value': 'mixs_inconsistent'}},
|
|
8312
8676
|
'domain_of': ['Biosample'],
|
|
8313
8677
|
'examples': [{'value': ''}],
|
|
8314
8678
|
'is_a': 'core field',
|
|
@@ -8337,7 +8701,8 @@ class Biosample(Sample):
|
|
|
8337
8701
|
'value': 'measurement value'},
|
|
8338
8702
|
'occurrence': {'tag': 'occurrence', 'value': '1'},
|
|
8339
8703
|
'preferred_unit': {'tag': 'preferred_unit',
|
|
8340
|
-
'value': 'percent'}
|
|
8704
|
+
'value': 'percent'},
|
|
8705
|
+
'storage_units': {'tag': 'storage_units', 'value': '%'}},
|
|
8341
8706
|
'domain_of': ['Biosample'],
|
|
8342
8707
|
'examples': [{'value': ''}],
|
|
8343
8708
|
'is_a': 'core field',
|
|
@@ -8368,9 +8733,10 @@ class Biosample(Sample):
|
|
|
8368
8733
|
'annotations': {'expected_value': {'tag': 'expected_value',
|
|
8369
8734
|
'value': 'measurement value'},
|
|
8370
8735
|
'occurrence': {'tag': 'occurrence', 'value': '1'},
|
|
8371
|
-
'preferred_unit': {'tag': 'preferred_unit', 'value': 'lux'}
|
|
8736
|
+
'preferred_unit': {'tag': 'preferred_unit', 'value': 'lux'},
|
|
8737
|
+
'storage_units': {'tag': 'storage_units', 'value': 'lx'}},
|
|
8372
8738
|
'domain_of': ['Biosample'],
|
|
8373
|
-
'examples': [{'value': '0.3
|
|
8739
|
+
'examples': [{'value': '0.3 lx'}],
|
|
8374
8740
|
'is_a': 'core field',
|
|
8375
8741
|
'slot_uri': 'MIXS:0000706'} })
|
|
8376
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',
|
|
@@ -8463,16 +8829,19 @@ class Biosample(Sample):
|
|
|
8463
8829
|
'preferred_unit': {'tag': 'preferred_unit',
|
|
8464
8830
|
'value': 'mole per liter, milligram per '
|
|
8465
8831
|
'liter, parts per million, '
|
|
8466
|
-
'micromole per kilogram'}
|
|
8832
|
+
'micromole per kilogram'},
|
|
8833
|
+
'storage_units': {'tag': 'storage_units',
|
|
8834
|
+
'value': '[ppm]|mg/L|mol/L|umol/kg|mg/kg'}},
|
|
8467
8835
|
'domain_of': ['Biosample'],
|
|
8468
|
-
'examples': [{'value': '52.8
|
|
8836
|
+
'examples': [{'value': '52.8 umol/kg'}],
|
|
8469
8837
|
'is_a': 'core field',
|
|
8470
8838
|
'slot_uri': 'MIXS:0000431'} })
|
|
8471
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',
|
|
8472
8840
|
'aliases': ['maximum occupancy'],
|
|
8473
8841
|
'annotations': {'expected_value': {'tag': 'expected_value',
|
|
8474
8842
|
'value': 'measurement value'},
|
|
8475
|
-
'occurrence': {'tag': 'occurrence', 'value': '1'}
|
|
8843
|
+
'occurrence': {'tag': 'occurrence', 'value': '1'},
|
|
8844
|
+
'storage_units': {'tag': 'storage_units', 'value': '1'}},
|
|
8476
8845
|
'domain_of': ['Biosample'],
|
|
8477
8846
|
'examples': [{'value': ''}],
|
|
8478
8847
|
'is_a': 'core field',
|
|
@@ -8483,9 +8852,10 @@ class Biosample(Sample):
|
|
|
8483
8852
|
'value': 'measurement value'},
|
|
8484
8853
|
'occurrence': {'tag': 'occurrence', 'value': '1'},
|
|
8485
8854
|
'preferred_unit': {'tag': 'preferred_unit',
|
|
8486
|
-
'value': 'meter per second'}
|
|
8855
|
+
'value': 'meter per second'},
|
|
8856
|
+
'storage_units': {'tag': 'storage_units', 'value': 'm/s'}},
|
|
8487
8857
|
'domain_of': ['Biosample'],
|
|
8488
|
-
'examples': [{'value': '0.5
|
|
8858
|
+
'examples': [{'value': '0.5 m/s'}],
|
|
8489
8859
|
'is_a': 'core field',
|
|
8490
8860
|
'slot_uri': 'MIXS:0000498'} })
|
|
8491
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',
|
|
@@ -8494,9 +8864,10 @@ class Biosample(Sample):
|
|
|
8494
8864
|
'value': 'measurement value'},
|
|
8495
8865
|
'occurrence': {'tag': 'occurrence', 'value': '1'},
|
|
8496
8866
|
'preferred_unit': {'tag': 'preferred_unit',
|
|
8497
|
-
'value': 'meter per second'}
|
|
8867
|
+
'value': 'meter per second'},
|
|
8868
|
+
'storage_units': {'tag': 'storage_units', 'value': 'm/s'}},
|
|
8498
8869
|
'domain_of': ['Biosample'],
|
|
8499
|
-
'examples': [{'value': '1
|
|
8870
|
+
'examples': [{'value': '1 m/s'}],
|
|
8500
8871
|
'is_a': 'core field',
|
|
8501
8872
|
'slot_uri': 'MIXS:0000502'} })
|
|
8502
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',
|
|
@@ -8525,9 +8896,11 @@ class Biosample(Sample):
|
|
|
8525
8896
|
'occurrence': {'tag': 'occurrence', 'value': '1'},
|
|
8526
8897
|
'preferred_unit': {'tag': 'preferred_unit',
|
|
8527
8898
|
'value': 'micromole per liter, parts per '
|
|
8528
|
-
'billion, parts per million'}
|
|
8899
|
+
'billion, parts per million'},
|
|
8900
|
+
'storage_units': {'tag': 'storage_units',
|
|
8901
|
+
'value': '[ppb]|[ppm]|umol/L'}},
|
|
8529
8902
|
'domain_of': ['Biosample'],
|
|
8530
|
-
'examples': [{'value': '1800
|
|
8903
|
+
'examples': [{'value': '1800 [ppb]'}],
|
|
8531
8904
|
'is_a': 'core field',
|
|
8532
8905
|
'slot_uri': 'MIXS:0000101'} })
|
|
8533
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',
|
|
@@ -8547,7 +8920,9 @@ class Biosample(Sample):
|
|
|
8547
8920
|
'occurrence': {'tag': 'occurrence', 'value': '1'},
|
|
8548
8921
|
'preferred_unit': {'tag': 'preferred_unit',
|
|
8549
8922
|
'value': 'ton, kilogram, gram per kilogram '
|
|
8550
|
-
'soil'}
|
|
8923
|
+
'soil'},
|
|
8924
|
+
'units_alignment_excuse': {'tag': 'units_alignment_excuse',
|
|
8925
|
+
'value': 'complex_unit'}},
|
|
8551
8926
|
'domain_of': ['Biosample'],
|
|
8552
8927
|
'examples': [{'value': ''}],
|
|
8553
8928
|
'is_a': 'core field',
|
|
@@ -8569,7 +8944,7 @@ class Biosample(Sample):
|
|
|
8569
8944
|
'slot_uri': 'MIXS:0000570',
|
|
8570
8945
|
'string_serialization': '{text};{float} '
|
|
8571
8946
|
'{unit};{Rn/start_time/end_time/duration}'} })
|
|
8572
|
-
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',
|
|
8573
8948
|
'aliases': ['miscellaneous parameter'],
|
|
8574
8949
|
'annotations': {'expected_value': {'tag': 'expected_value',
|
|
8575
8950
|
'value': 'parameter name;measurement '
|
|
@@ -8580,7 +8955,8 @@ class Biosample(Sample):
|
|
|
8580
8955
|
'kilogram'}],
|
|
8581
8956
|
'is_a': 'core field',
|
|
8582
8957
|
'slot_uri': 'MIXS:0000752',
|
|
8583
|
-
'string_serialization': '{text};{float} {unit}'
|
|
8958
|
+
'string_serialization': '{text};{float} {unit}',
|
|
8959
|
+
'todos': ['This slot should not be available in the submission portal.']} })
|
|
8584
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',
|
|
8585
8961
|
'aliases': ['n-alkanes'],
|
|
8586
8962
|
'annotations': {'expected_value': {'tag': 'expected_value',
|
|
@@ -8600,9 +8976,11 @@ class Biosample(Sample):
|
|
|
8600
8976
|
'occurrence': {'tag': 'occurrence', 'value': '1'},
|
|
8601
8977
|
'preferred_unit': {'tag': 'preferred_unit',
|
|
8602
8978
|
'value': 'micromole per liter, milligram '
|
|
8603
|
-
'per liter, parts per million'}
|
|
8979
|
+
'per liter, parts per million'},
|
|
8980
|
+
'storage_units': {'tag': 'storage_units',
|
|
8981
|
+
'value': '[ppm]|mg/L|umol/L'}},
|
|
8604
8982
|
'domain_of': ['Biosample'],
|
|
8605
|
-
'examples': [{'value': '65
|
|
8983
|
+
'examples': [{'value': '65 umol/L'}],
|
|
8606
8984
|
'is_a': 'core field',
|
|
8607
8985
|
'slot_uri': 'MIXS:0000425'} })
|
|
8608
8986
|
nitrite: Optional[QuantityValue] = Field(default=None, title="nitrite", description="""Concentration of nitrite in the sample""", json_schema_extra = { "linkml_meta": {'alias': 'nitrite',
|
|
@@ -8612,9 +8990,11 @@ class Biosample(Sample):
|
|
|
8612
8990
|
'occurrence': {'tag': 'occurrence', 'value': '1'},
|
|
8613
8991
|
'preferred_unit': {'tag': 'preferred_unit',
|
|
8614
8992
|
'value': 'micromole per liter, milligram '
|
|
8615
|
-
'per liter, parts per million'}
|
|
8993
|
+
'per liter, parts per million'},
|
|
8994
|
+
'storage_units': {'tag': 'storage_units',
|
|
8995
|
+
'value': '[ppm]|mg/L|umol/L'}},
|
|
8616
8996
|
'domain_of': ['Biosample'],
|
|
8617
|
-
'examples': [{'value': '0.5
|
|
8997
|
+
'examples': [{'value': '0.5 umol/L'}],
|
|
8618
8998
|
'is_a': 'core field',
|
|
8619
8999
|
'slot_uri': 'MIXS:0000426'} })
|
|
8620
9000
|
nitro: Optional[QuantityValue] = Field(default=None, title="nitrogen", description="""Concentration of nitrogen (total)""", json_schema_extra = { "linkml_meta": {'alias': 'nitro',
|
|
@@ -8623,9 +9003,11 @@ class Biosample(Sample):
|
|
|
8623
9003
|
'value': 'measurement value'},
|
|
8624
9004
|
'occurrence': {'tag': 'occurrence', 'value': '1'},
|
|
8625
9005
|
'preferred_unit': {'tag': 'preferred_unit',
|
|
8626
|
-
'value': 'micromole per liter'}
|
|
9006
|
+
'value': 'micromole per liter'},
|
|
9007
|
+
'storage_units': {'tag': 'storage_units',
|
|
9008
|
+
'value': 'umol/L|%'}},
|
|
8627
9009
|
'domain_of': ['Biosample'],
|
|
8628
|
-
'examples': [{'value': '4.2
|
|
9010
|
+
'examples': [{'value': '4.2 umol/L'}],
|
|
8629
9011
|
'is_a': 'core field',
|
|
8630
9012
|
'slot_uri': 'MIXS:0000504'} })
|
|
8631
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',
|
|
@@ -8650,7 +9032,8 @@ class Biosample(Sample):
|
|
|
8650
9032
|
'aliases': ['number of pets'],
|
|
8651
9033
|
'annotations': {'expected_value': {'tag': 'expected_value',
|
|
8652
9034
|
'value': 'measurement value'},
|
|
8653
|
-
'occurrence': {'tag': 'occurrence', 'value': '1'}
|
|
9035
|
+
'occurrence': {'tag': 'occurrence', 'value': '1'},
|
|
9036
|
+
'storage_units': {'tag': 'storage_units', 'value': '1'}},
|
|
8654
9037
|
'domain_of': ['Biosample'],
|
|
8655
9038
|
'examples': [{'value': ''}],
|
|
8656
9039
|
'is_a': 'core field',
|
|
@@ -8659,7 +9042,8 @@ class Biosample(Sample):
|
|
|
8659
9042
|
'aliases': ['number of houseplants'],
|
|
8660
9043
|
'annotations': {'expected_value': {'tag': 'expected_value',
|
|
8661
9044
|
'value': 'measurement value'},
|
|
8662
|
-
'occurrence': {'tag': 'occurrence', 'value': '1'}
|
|
9045
|
+
'occurrence': {'tag': 'occurrence', 'value': '1'},
|
|
9046
|
+
'storage_units': {'tag': 'storage_units', 'value': '1'}},
|
|
8663
9047
|
'domain_of': ['Biosample'],
|
|
8664
9048
|
'examples': [{'value': ''}],
|
|
8665
9049
|
'is_a': 'core field',
|
|
@@ -8668,7 +9052,8 @@ class Biosample(Sample):
|
|
|
8668
9052
|
'aliases': ['number of residents'],
|
|
8669
9053
|
'annotations': {'expected_value': {'tag': 'expected_value',
|
|
8670
9054
|
'value': 'measurement value'},
|
|
8671
|
-
'occurrence': {'tag': 'occurrence', 'value': '1'}
|
|
9055
|
+
'occurrence': {'tag': 'occurrence', 'value': '1'},
|
|
9056
|
+
'storage_units': {'tag': 'storage_units', 'value': '1'}},
|
|
8672
9057
|
'domain_of': ['Biosample'],
|
|
8673
9058
|
'examples': [{'value': ''}],
|
|
8674
9059
|
'is_a': 'core field',
|
|
@@ -8677,7 +9062,9 @@ class Biosample(Sample):
|
|
|
8677
9062
|
'aliases': ['occupant density at sampling'],
|
|
8678
9063
|
'annotations': {'expected_value': {'tag': 'expected_value',
|
|
8679
9064
|
'value': 'measurement value'},
|
|
8680
|
-
'occurrence': {'tag': 'occurrence', 'value': '1'}
|
|
9065
|
+
'occurrence': {'tag': 'occurrence', 'value': '1'},
|
|
9066
|
+
'units_alignment_excuse': {'tag': 'units_alignment_excuse',
|
|
9067
|
+
'value': 'pending_analysis'}},
|
|
8681
9068
|
'domain_of': ['Biosample'],
|
|
8682
9069
|
'examples': [{'value': ''}],
|
|
8683
9070
|
'is_a': 'core field',
|
|
@@ -8695,7 +9082,8 @@ class Biosample(Sample):
|
|
|
8695
9082
|
'aliases': ['occupancy at sampling'],
|
|
8696
9083
|
'annotations': {'expected_value': {'tag': 'expected_value',
|
|
8697
9084
|
'value': 'measurement value'},
|
|
8698
|
-
'occurrence': {'tag': 'occurrence', 'value': '1'}
|
|
9085
|
+
'occurrence': {'tag': 'occurrence', 'value': '1'},
|
|
9086
|
+
'storage_units': {'tag': 'storage_units', 'value': '1'}},
|
|
8699
9087
|
'domain_of': ['Biosample'],
|
|
8700
9088
|
'examples': [{'value': '10'}],
|
|
8701
9089
|
'is_a': 'core field',
|
|
@@ -8706,9 +9094,11 @@ class Biosample(Sample):
|
|
|
8706
9094
|
'value': 'measurement value'},
|
|
8707
9095
|
'occurrence': {'tag': 'occurrence', 'value': '1'},
|
|
8708
9096
|
'preferred_unit': {'tag': 'preferred_unit',
|
|
8709
|
-
'value': 'micromole per liter'}
|
|
9097
|
+
'value': 'micromole per liter'},
|
|
9098
|
+
'storage_units': {'tag': 'storage_units',
|
|
9099
|
+
'value': 'umol/L|%|mg/L'}},
|
|
8710
9100
|
'domain_of': ['Biosample'],
|
|
8711
|
-
'examples': [{'value': '
|
|
9101
|
+
'examples': [{'value': '0.015 mg/L'}],
|
|
8712
9102
|
'is_a': 'core field',
|
|
8713
9103
|
'slot_uri': 'MIXS:0000508'} })
|
|
8714
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',
|
|
@@ -8737,9 +9127,10 @@ class Biosample(Sample):
|
|
|
8737
9127
|
'value': 'measurement value'},
|
|
8738
9128
|
'occurrence': {'tag': 'occurrence', 'value': '1'},
|
|
8739
9129
|
'preferred_unit': {'tag': 'preferred_unit',
|
|
8740
|
-
'value': 'microgram per liter'}
|
|
9130
|
+
'value': 'microgram per liter'},
|
|
9131
|
+
'storage_units': {'tag': 'storage_units', 'value': 'ug/L'}},
|
|
8741
9132
|
'domain_of': ['Biosample'],
|
|
8742
|
-
'examples': [{'value': '
|
|
9133
|
+
'examples': [{'value': '200 ug/L'}],
|
|
8743
9134
|
'is_a': 'core field',
|
|
8744
9135
|
'slot_uri': 'MIXS:0000204'} })
|
|
8745
9136
|
org_nitro: Optional[QuantityValue] = Field(default=None, title="organic nitrogen", description="""Concentration of organic nitrogen""", json_schema_extra = { "linkml_meta": {'alias': 'org_nitro',
|
|
@@ -8748,9 +9139,10 @@ class Biosample(Sample):
|
|
|
8748
9139
|
'value': 'measurement value'},
|
|
8749
9140
|
'occurrence': {'tag': 'occurrence', 'value': '1'},
|
|
8750
9141
|
'preferred_unit': {'tag': 'preferred_unit',
|
|
8751
|
-
'value': 'microgram per liter'}
|
|
9142
|
+
'value': 'microgram per liter'},
|
|
9143
|
+
'storage_units': {'tag': 'storage_units', 'value': 'ug/L'}},
|
|
8752
9144
|
'domain_of': ['Biosample'],
|
|
8753
|
-
'examples': [{'value': '4
|
|
9145
|
+
'examples': [{'value': '4 ug/L'}],
|
|
8754
9146
|
'is_a': 'core field',
|
|
8755
9147
|
'slot_uri': 'MIXS:0000205'} })
|
|
8756
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',
|
|
@@ -8775,7 +9167,8 @@ class Biosample(Sample):
|
|
|
8775
9167
|
'value': 'number of cells per cubic meter, '
|
|
8776
9168
|
'number of cells per milliliter, '
|
|
8777
9169
|
'number of cells per cubic '
|
|
8778
|
-
'centimeter'}
|
|
9170
|
+
'centimeter'},
|
|
9171
|
+
'storage_units': {'tag': 'storage_units', 'value': '1'}},
|
|
8779
9172
|
'domain_of': ['Biosample'],
|
|
8780
9173
|
'examples': [{'value': 'total prokaryotes;3.5e7 cells per milliliter;qPCR'}],
|
|
8781
9174
|
'is_a': 'core field',
|
|
@@ -8785,7 +9178,8 @@ class Biosample(Sample):
|
|
|
8785
9178
|
'annotations': {'expected_value': {'tag': 'expected_value',
|
|
8786
9179
|
'value': 'measurement value'},
|
|
8787
9180
|
'occurrence': {'tag': 'occurrence', 'value': '1'},
|
|
8788
|
-
'preferred_unit': {'tag': 'preferred_unit', 'value': 'meter'}
|
|
9181
|
+
'preferred_unit': {'tag': 'preferred_unit', 'value': 'meter'},
|
|
9182
|
+
'storage_units': {'tag': 'storage_units', 'value': 'm'}},
|
|
8789
9183
|
'domain_of': ['Biosample'],
|
|
8790
9184
|
'examples': [{'value': ''}],
|
|
8791
9185
|
'is_a': 'core field',
|
|
@@ -8806,9 +9200,11 @@ class Biosample(Sample):
|
|
|
8806
9200
|
'occurrence': {'tag': 'occurrence', 'value': '1'},
|
|
8807
9201
|
'preferred_unit': {'tag': 'preferred_unit',
|
|
8808
9202
|
'value': 'milligram per liter, parts per '
|
|
8809
|
-
'million'}
|
|
9203
|
+
'million'},
|
|
9204
|
+
'storage_units': {'tag': 'storage_units',
|
|
9205
|
+
'value': '[ppm]|mg/L'}},
|
|
8810
9206
|
'domain_of': ['Biosample'],
|
|
8811
|
-
'examples': [{'value': '600
|
|
9207
|
+
'examples': [{'value': '600 [ppm]'}],
|
|
8812
9208
|
'is_a': 'core field',
|
|
8813
9209
|
'slot_uri': 'MIXS:0000104'} })
|
|
8814
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',
|
|
@@ -8817,9 +9213,11 @@ class Biosample(Sample):
|
|
|
8817
9213
|
'value': 'measurement value'},
|
|
8818
9214
|
'occurrence': {'tag': 'occurrence', 'value': '1'},
|
|
8819
9215
|
'preferred_unit': {'tag': 'preferred_unit',
|
|
8820
|
-
'value': 'microgram per liter'}
|
|
9216
|
+
'value': 'microgram per liter'},
|
|
9217
|
+
'storage_units': {'tag': 'storage_units',
|
|
9218
|
+
'value': 'ug/L|mg/L'}},
|
|
8821
9219
|
'domain_of': ['Biosample'],
|
|
8822
|
-
'examples': [{'value': '
|
|
9220
|
+
'examples': [{'value': '0.02 mg/L'}],
|
|
8823
9221
|
'is_a': 'core field',
|
|
8824
9222
|
'slot_uri': 'MIXS:0000515'} })
|
|
8825
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',
|
|
@@ -8829,9 +9227,11 @@ class Biosample(Sample):
|
|
|
8829
9227
|
'occurrence': {'tag': 'occurrence', 'value': '1'},
|
|
8830
9228
|
'preferred_unit': {'tag': 'preferred_unit',
|
|
8831
9229
|
'value': 'microgram per liter, micromole '
|
|
8832
|
-
'per liter'}
|
|
9230
|
+
'per liter'},
|
|
9231
|
+
'storage_units': {'tag': 'storage_units',
|
|
9232
|
+
'value': 'ug/L|umol/L|mg/L'}},
|
|
8833
9233
|
'domain_of': ['Biosample'],
|
|
8834
|
-
'examples': [{'value': '0.3
|
|
9234
|
+
'examples': [{'value': '0.3 umol/L'}],
|
|
8835
9235
|
'is_a': 'core field',
|
|
8836
9236
|
'slot_uri': 'MIXS:0000719'} })
|
|
8837
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',
|
|
@@ -8893,9 +9293,10 @@ class Biosample(Sample):
|
|
|
8893
9293
|
'value': 'measurement value'},
|
|
8894
9294
|
'occurrence': {'tag': 'occurrence', 'value': '1'},
|
|
8895
9295
|
'preferred_unit': {'tag': 'preferred_unit',
|
|
8896
|
-
'value': 'micromole per liter'}
|
|
9296
|
+
'value': 'micromole per liter'},
|
|
9297
|
+
'storage_units': {'tag': 'storage_units', 'value': 'umol/L'}},
|
|
8897
9298
|
'domain_of': ['Biosample'],
|
|
8898
|
-
'examples': [{'value': '0.05
|
|
9299
|
+
'examples': [{'value': '0.05 umol/L'}],
|
|
8899
9300
|
'is_a': 'core field',
|
|
8900
9301
|
'slot_uri': 'MIXS:0000516'} })
|
|
8901
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',
|
|
@@ -8950,9 +9351,10 @@ class Biosample(Sample):
|
|
|
8950
9351
|
'value': 'measurement value'},
|
|
8951
9352
|
'occurrence': {'tag': 'occurrence', 'value': '1'},
|
|
8952
9353
|
'preferred_unit': {'tag': 'preferred_unit',
|
|
8953
|
-
'value': 'micromole per liter'}
|
|
9354
|
+
'value': 'micromole per liter'},
|
|
9355
|
+
'storage_units': {'tag': 'storage_units', 'value': 'umol/L'}},
|
|
8954
9356
|
'domain_of': ['Biosample'],
|
|
8955
|
-
'examples': [{'value': '0.7
|
|
9357
|
+
'examples': [{'value': '0.7 umol/L'}],
|
|
8956
9358
|
'is_a': 'core field',
|
|
8957
9359
|
'slot_uri': 'MIXS:0000505'} })
|
|
8958
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',
|
|
@@ -8975,9 +9377,11 @@ class Biosample(Sample):
|
|
|
8975
9377
|
'occurrence': {'tag': 'occurrence', 'value': '1'},
|
|
8976
9378
|
'preferred_unit': {'tag': 'preferred_unit',
|
|
8977
9379
|
'value': 'number of photons per second per '
|
|
8978
|
-
'unit area'}
|
|
9380
|
+
'unit area'},
|
|
9381
|
+
'storage_units': {'tag': 'storage_units',
|
|
9382
|
+
'value': 'umol/m2/s'}},
|
|
8979
9383
|
'domain_of': ['Biosample'],
|
|
8980
|
-
'examples': [{'value': '3.926
|
|
9384
|
+
'examples': [{'value': '3.926 umol/m2/s'}],
|
|
8981
9385
|
'is_a': 'core field',
|
|
8982
9386
|
'slot_uri': 'MIXS:0000725'} })
|
|
8983
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',
|
|
@@ -9051,9 +9455,11 @@ class Biosample(Sample):
|
|
|
9051
9455
|
'occurrence': {'tag': 'occurrence', 'value': '1'},
|
|
9052
9456
|
'preferred_unit': {'tag': 'preferred_unit',
|
|
9053
9457
|
'value': 'milligram per liter, parts per '
|
|
9054
|
-
'million'}
|
|
9458
|
+
'million'},
|
|
9459
|
+
'storage_units': {'tag': 'storage_units',
|
|
9460
|
+
'value': '[ppm]|mg/L|mg/kg'}},
|
|
9055
9461
|
'domain_of': ['Biosample'],
|
|
9056
|
-
'examples': [{'value': '463
|
|
9462
|
+
'examples': [{'value': '463 mg/L'}],
|
|
9057
9463
|
'is_a': 'core field',
|
|
9058
9464
|
'slot_uri': 'MIXS:0000430'} })
|
|
9059
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',
|
|
@@ -9062,7 +9468,8 @@ class Biosample(Sample):
|
|
|
9062
9468
|
'value': 'measurement value'},
|
|
9063
9469
|
'occurrence': {'tag': 'occurrence', 'value': '1'},
|
|
9064
9470
|
'preferred_unit': {'tag': 'preferred_unit',
|
|
9065
|
-
'value': 'degree Celsius'}
|
|
9471
|
+
'value': 'degree Celsius'},
|
|
9472
|
+
'storage_units': {'tag': 'storage_units', 'value': 'Cel'}},
|
|
9066
9473
|
'domain_of': ['Biosample'],
|
|
9067
9474
|
'examples': [{'value': ''}],
|
|
9068
9475
|
'is_a': 'core field',
|
|
@@ -9092,9 +9499,10 @@ class Biosample(Sample):
|
|
|
9092
9499
|
'value': 'measurement value'},
|
|
9093
9500
|
'occurrence': {'tag': 'occurrence', 'value': '1'},
|
|
9094
9501
|
'preferred_unit': {'tag': 'preferred_unit',
|
|
9095
|
-
'value': 'atmosphere'}
|
|
9502
|
+
'value': 'atmosphere'},
|
|
9503
|
+
'storage_units': {'tag': 'storage_units', 'value': 'atm'}},
|
|
9096
9504
|
'domain_of': ['Biosample'],
|
|
9097
|
-
'examples': [{'value': '50
|
|
9505
|
+
'examples': [{'value': '50 atm'}],
|
|
9098
9506
|
'is_a': 'core field',
|
|
9099
9507
|
'slot_uri': 'MIXS:0000412'} })
|
|
9100
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',
|
|
@@ -9125,9 +9533,11 @@ class Biosample(Sample):
|
|
|
9125
9533
|
'preferred_unit': {'tag': 'preferred_unit',
|
|
9126
9534
|
'value': 'milligram per cubic meter per '
|
|
9127
9535
|
'day, gram per square meter per '
|
|
9128
|
-
'day'}
|
|
9536
|
+
'day'},
|
|
9537
|
+
'storage_units': {'tag': 'storage_units',
|
|
9538
|
+
'value': 'g/m2/d|mg/m3/d'}},
|
|
9129
9539
|
'domain_of': ['Biosample'],
|
|
9130
|
-
'examples': [{'value': '100
|
|
9540
|
+
'examples': [{'value': '100 mg/m3/d'}],
|
|
9131
9541
|
'is_a': 'core field',
|
|
9132
9542
|
'slot_uri': 'MIXS:0000728'} })
|
|
9133
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',
|
|
@@ -9146,7 +9556,8 @@ class Biosample(Sample):
|
|
|
9146
9556
|
'value': 'measurement value'},
|
|
9147
9557
|
'occurrence': {'tag': 'occurrence', 'value': '1'},
|
|
9148
9558
|
'preferred_unit': {'tag': 'preferred_unit',
|
|
9149
|
-
'value': 'cubic meter per day'}
|
|
9559
|
+
'value': 'cubic meter per day'},
|
|
9560
|
+
'storage_units': {'tag': 'storage_units', 'value': 'm3/d'}},
|
|
9150
9561
|
'domain_of': ['Biosample'],
|
|
9151
9562
|
'examples': [{'value': ''}],
|
|
9152
9563
|
'is_a': 'core field',
|
|
@@ -9224,9 +9635,10 @@ class Biosample(Sample):
|
|
|
9224
9635
|
'value': 'measurement value'},
|
|
9225
9636
|
'occurrence': {'tag': 'occurrence', 'value': '1'},
|
|
9226
9637
|
'preferred_unit': {'tag': 'preferred_unit',
|
|
9227
|
-
'value': 'millivolt'}
|
|
9638
|
+
'value': 'millivolt'},
|
|
9639
|
+
'storage_units': {'tag': 'storage_units', 'value': 'mV'}},
|
|
9228
9640
|
'domain_of': ['Biosample'],
|
|
9229
|
-
'examples': [{'value': '300
|
|
9641
|
+
'examples': [{'value': '300 mV'}],
|
|
9230
9642
|
'is_a': 'core field',
|
|
9231
9643
|
'slot_uri': 'MIXS:0000182'} })
|
|
9232
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',
|
|
@@ -9235,7 +9647,8 @@ class Biosample(Sample):
|
|
|
9235
9647
|
'value': 'measurement value'},
|
|
9236
9648
|
'occurrence': {'tag': 'occurrence', 'value': '1'},
|
|
9237
9649
|
'preferred_unit': {'tag': 'preferred_unit',
|
|
9238
|
-
'value': 'percentage'}
|
|
9650
|
+
'value': 'percentage'},
|
|
9651
|
+
'storage_units': {'tag': 'storage_units', 'value': '%'}},
|
|
9239
9652
|
'domain_of': ['Biosample'],
|
|
9240
9653
|
'examples': [{'value': '80%'}],
|
|
9241
9654
|
'is_a': 'core field',
|
|
@@ -9246,7 +9659,9 @@ class Biosample(Sample):
|
|
|
9246
9659
|
'value': 'measurement value'},
|
|
9247
9660
|
'occurrence': {'tag': 'occurrence', 'value': '1'},
|
|
9248
9661
|
'preferred_unit': {'tag': 'preferred_unit',
|
|
9249
|
-
'value': 'gram of air, kilogram of air'}
|
|
9662
|
+
'value': 'gram of air, kilogram of air'},
|
|
9663
|
+
'units_alignment_excuse': {'tag': 'units_alignment_excuse',
|
|
9664
|
+
'value': 'mixs_inconsistent'}},
|
|
9250
9665
|
'domain_of': ['Biosample'],
|
|
9251
9666
|
'examples': [{'value': '12 per kilogram of air'}],
|
|
9252
9667
|
'is_a': 'core field',
|
|
@@ -9287,7 +9702,8 @@ class Biosample(Sample):
|
|
|
9287
9702
|
'value': 'measurement value'},
|
|
9288
9703
|
'occurrence': {'tag': 'occurrence', 'value': '1'},
|
|
9289
9704
|
'preferred_unit': {'tag': 'preferred_unit',
|
|
9290
|
-
'value': 'liter per hour'}
|
|
9705
|
+
'value': 'liter per hour'},
|
|
9706
|
+
'storage_units': {'tag': 'storage_units', 'value': 'L/h'}},
|
|
9291
9707
|
'domain_of': ['Biosample'],
|
|
9292
9708
|
'examples': [{'value': ''}],
|
|
9293
9709
|
'is_a': 'core field',
|
|
@@ -9404,7 +9820,8 @@ class Biosample(Sample):
|
|
|
9404
9820
|
'aliases': ['room occupancy'],
|
|
9405
9821
|
'annotations': {'expected_value': {'tag': 'expected_value',
|
|
9406
9822
|
'value': 'measurement value'},
|
|
9407
|
-
'occurrence': {'tag': 'occurrence', 'value': '1'}
|
|
9823
|
+
'occurrence': {'tag': 'occurrence', 'value': '1'},
|
|
9824
|
+
'storage_units': {'tag': 'storage_units', 'value': '1'}},
|
|
9408
9825
|
'domain_of': ['Biosample'],
|
|
9409
9826
|
'examples': [{'value': ''}],
|
|
9410
9827
|
'is_a': 'core field',
|
|
@@ -9510,7 +9927,8 @@ class Biosample(Sample):
|
|
|
9510
9927
|
'aliases': ['rooting medium pH'],
|
|
9511
9928
|
'annotations': {'expected_value': {'tag': 'expected_value',
|
|
9512
9929
|
'value': 'measurement value'},
|
|
9513
|
-
'occurrence': {'tag': 'occurrence', 'value': '1'}
|
|
9930
|
+
'occurrence': {'tag': 'occurrence', 'value': '1'},
|
|
9931
|
+
'storage_units': {'tag': 'storage_units', 'value': '[pH]'}},
|
|
9514
9932
|
'domain_of': ['Biosample'],
|
|
9515
9933
|
'examples': [{'value': '7.5'}],
|
|
9516
9934
|
'is_a': 'core field',
|
|
@@ -9557,9 +9975,10 @@ class Biosample(Sample):
|
|
|
9557
9975
|
'occurrence': {'tag': 'occurrence', 'value': '1'},
|
|
9558
9976
|
'preferred_unit': {'tag': 'preferred_unit',
|
|
9559
9977
|
'value': 'practical salinity unit, '
|
|
9560
|
-
'percentage'}
|
|
9978
|
+
'percentage'},
|
|
9979
|
+
'storage_units': {'tag': 'storage_units', 'value': '%|mg/L'}},
|
|
9561
9980
|
'domain_of': ['Biosample'],
|
|
9562
|
-
'examples': [{'value': '
|
|
9981
|
+
'examples': [{'value': '70 mg/L'}],
|
|
9563
9982
|
'is_a': 'core field',
|
|
9564
9983
|
'slot_uri': 'MIXS:0000183'} })
|
|
9565
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',
|
|
@@ -9668,9 +10087,10 @@ class Biosample(Sample):
|
|
|
9668
10087
|
'annotations': {'expected_value': {'tag': 'expected_value',
|
|
9669
10088
|
'value': 'measurement value;enumeration'},
|
|
9670
10089
|
'occurrence': {'tag': 'occurrence', 'value': '1'},
|
|
9671
|
-
'preferred_unit': {'tag': 'preferred_unit', 'value': 'meter'}
|
|
10090
|
+
'preferred_unit': {'tag': 'preferred_unit', 'value': 'meter'},
|
|
10091
|
+
'storage_units': {'tag': 'storage_units', 'value': 'm'}},
|
|
9672
10092
|
'domain_of': ['Biosample'],
|
|
9673
|
-
'examples': [{'value': '1534
|
|
10093
|
+
'examples': [{'value': '1534 m'}],
|
|
9674
10094
|
'is_a': 'core field',
|
|
9675
10095
|
'slot_uri': 'MIXS:0000413'} })
|
|
9676
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',
|
|
@@ -9707,9 +10127,11 @@ class Biosample(Sample):
|
|
|
9707
10127
|
'value': 'measurement value'},
|
|
9708
10128
|
'preferred_unit': {'tag': 'preferred_unit',
|
|
9709
10129
|
'value': 'millliter, gram, milligram, '
|
|
9710
|
-
'liter'}
|
|
10130
|
+
'liter'},
|
|
10131
|
+
'storage_units': {'tag': 'storage_units',
|
|
10132
|
+
'value': 'L|g|mL|mg'}},
|
|
9711
10133
|
'domain_of': ['Biosample'],
|
|
9712
|
-
'examples': [{'value': '5
|
|
10134
|
+
'examples': [{'value': '5 L'}],
|
|
9713
10135
|
'is_a': 'nucleic acid sequence source field',
|
|
9714
10136
|
'slot_uri': 'MIXS:0000001'} })
|
|
9715
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',
|
|
@@ -9748,9 +10170,10 @@ class Biosample(Sample):
|
|
|
9748
10170
|
'value': 'measurement value'},
|
|
9749
10171
|
'occurrence': {'tag': 'occurrence', 'value': '1'},
|
|
9750
10172
|
'preferred_unit': {'tag': 'preferred_unit',
|
|
9751
|
-
'value': 'degree Celsius'}
|
|
10173
|
+
'value': 'degree Celsius'},
|
|
10174
|
+
'storage_units': {'tag': 'storage_units', 'value': 'Cel'}},
|
|
9752
10175
|
'domain_of': ['Biosample'],
|
|
9753
|
-
'examples': [{'value': '-80
|
|
10176
|
+
'examples': [{'value': '-80 Cel'}],
|
|
9754
10177
|
'is_a': 'core field',
|
|
9755
10178
|
'slot_uri': 'MIXS:0000110'} })
|
|
9756
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',
|
|
@@ -9873,12 +10296,13 @@ class Biosample(Sample):
|
|
|
9873
10296
|
'value': 'measurement value'},
|
|
9874
10297
|
'occurrence': {'tag': 'occurrence', 'value': '1'},
|
|
9875
10298
|
'preferred_unit': {'tag': 'preferred_unit',
|
|
9876
|
-
'value': 'millimeter'}
|
|
10299
|
+
'value': 'millimeter'},
|
|
10300
|
+
'storage_units': {'tag': 'storage_units', 'value': 'mm'}},
|
|
9877
10301
|
'comments': ['Seasons are defined as spring (March, April, May), summer '
|
|
9878
10302
|
'(June, July, August), autumn (September, October, November) and '
|
|
9879
10303
|
'winter (December, January, February).'],
|
|
9880
10304
|
'domain_of': ['Biosample'],
|
|
9881
|
-
'examples': [{'value': '
|
|
10305
|
+
'examples': [{'value': '10 mm'}],
|
|
9882
10306
|
'is_a': 'core field',
|
|
9883
10307
|
'notes': ['mean and average are the same thing, but it seems like bad '
|
|
9884
10308
|
'practice to not be consistent. Changed mean to average'],
|
|
@@ -9891,9 +10315,10 @@ class Biosample(Sample):
|
|
|
9891
10315
|
'value': 'measurement value'},
|
|
9892
10316
|
'occurrence': {'tag': 'occurrence', 'value': '1'},
|
|
9893
10317
|
'preferred_unit': {'tag': 'preferred_unit',
|
|
9894
|
-
'value': 'degree Celsius'}
|
|
10318
|
+
'value': 'degree Celsius'},
|
|
10319
|
+
'storage_units': {'tag': 'storage_units', 'value': 'Cel'}},
|
|
9895
10320
|
'domain_of': ['Biosample'],
|
|
9896
|
-
'examples': [{'value': '18
|
|
10321
|
+
'examples': [{'value': '18 Cel'}],
|
|
9897
10322
|
'is_a': 'core field',
|
|
9898
10323
|
'slot_uri': 'MIXS:0000643'} })
|
|
9899
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',
|
|
@@ -10004,9 +10429,10 @@ class Biosample(Sample):
|
|
|
10004
10429
|
'value': 'measurement value'},
|
|
10005
10430
|
'occurrence': {'tag': 'occurrence', 'value': '1'},
|
|
10006
10431
|
'preferred_unit': {'tag': 'preferred_unit',
|
|
10007
|
-
'value': 'micromole per liter'}
|
|
10432
|
+
'value': 'micromole per liter'},
|
|
10433
|
+
'storage_units': {'tag': 'storage_units', 'value': 'umol/L'}},
|
|
10008
10434
|
'domain_of': ['Biosample'],
|
|
10009
|
-
'examples': [{'value': '0.05
|
|
10435
|
+
'examples': [{'value': '0.05 umol/L'}],
|
|
10010
10436
|
'is_a': 'core field',
|
|
10011
10437
|
'slot_uri': 'MIXS:0000184'} })
|
|
10012
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',
|
|
@@ -10023,9 +10449,10 @@ class Biosample(Sample):
|
|
|
10023
10449
|
'annotations': {'expected_value': {'tag': 'expected_value', 'value': 'value'},
|
|
10024
10450
|
'occurrence': {'tag': 'occurrence', 'value': '1'},
|
|
10025
10451
|
'preferred_unit': {'tag': 'preferred_unit',
|
|
10026
|
-
'value': 'micrometer'}
|
|
10452
|
+
'value': 'micrometer'},
|
|
10453
|
+
'storage_units': {'tag': 'storage_units', 'value': 'um'}},
|
|
10027
10454
|
'domain_of': ['Biosample'],
|
|
10028
|
-
'examples': [{'value': '0.2
|
|
10455
|
+
'examples': [{'value': '0.2 um'}],
|
|
10029
10456
|
'is_a': 'core field',
|
|
10030
10457
|
'slot_uri': 'MIXS:0000735'} })
|
|
10031
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',
|
|
@@ -10033,9 +10460,10 @@ class Biosample(Sample):
|
|
|
10033
10460
|
'annotations': {'expected_value': {'tag': 'expected_value', 'value': 'value'},
|
|
10034
10461
|
'occurrence': {'tag': 'occurrence', 'value': '1'},
|
|
10035
10462
|
'preferred_unit': {'tag': 'preferred_unit',
|
|
10036
|
-
'value': 'micrometer'}
|
|
10463
|
+
'value': 'micrometer'},
|
|
10464
|
+
'storage_units': {'tag': 'storage_units', 'value': 'um'}},
|
|
10037
10465
|
'domain_of': ['Biosample'],
|
|
10038
|
-
'examples': [{'value': '20
|
|
10466
|
+
'examples': [{'value': '20 um'}],
|
|
10039
10467
|
'is_a': 'core field',
|
|
10040
10468
|
'slot_uri': 'MIXS:0000736'} })
|
|
10041
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',
|
|
@@ -10043,13 +10471,13 @@ class Biosample(Sample):
|
|
|
10043
10471
|
'annotations': {'expected_value': {'tag': 'expected_value',
|
|
10044
10472
|
'value': 'measurement value'},
|
|
10045
10473
|
'occurrence': {'tag': 'occurrence', 'value': '1'},
|
|
10046
|
-
'preferred_unit': {'tag': 'preferred_unit',
|
|
10047
|
-
|
|
10474
|
+
'preferred_unit': {'tag': 'preferred_unit', 'value': 'degree'},
|
|
10475
|
+
'storage_units': {'tag': 'storage_units', 'value': 'deg'}},
|
|
10048
10476
|
'comments': ['Aspect is the orientation of slope, measured clockwise in '
|
|
10049
10477
|
'degrees from 0 to 360, where 0 is north-facing, 90 is '
|
|
10050
10478
|
'east-facing, 180 is south-facing, and 270 is west-facing.'],
|
|
10051
10479
|
'domain_of': ['Biosample'],
|
|
10052
|
-
'examples': [{'value': '35'}],
|
|
10480
|
+
'examples': [{'value': '35 deg'}],
|
|
10053
10481
|
'is_a': 'core field',
|
|
10054
10482
|
'slot_uri': 'MIXS:0000647'} })
|
|
10055
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',
|
|
@@ -10058,7 +10486,8 @@ class Biosample(Sample):
|
|
|
10058
10486
|
'value': 'measurement value'},
|
|
10059
10487
|
'occurrence': {'tag': 'occurrence', 'value': '1'},
|
|
10060
10488
|
'preferred_unit': {'tag': 'preferred_unit',
|
|
10061
|
-
'value': 'percentage'}
|
|
10489
|
+
'value': 'percentage'},
|
|
10490
|
+
'storage_units': {'tag': 'storage_units', 'value': '%'}},
|
|
10062
10491
|
'domain_of': ['Biosample'],
|
|
10063
10492
|
'examples': [{'value': '10%'}, {'value': '10 %'}, {'value': '0.10'}],
|
|
10064
10493
|
'is_a': 'core field',
|
|
@@ -10070,7 +10499,8 @@ class Biosample(Sample):
|
|
|
10070
10499
|
'annotations': {'expected_value': {'tag': 'expected_value',
|
|
10071
10500
|
'value': 'measurement value'},
|
|
10072
10501
|
'occurrence': {'tag': 'occurrence', 'value': '1'},
|
|
10073
|
-
'preferred_unit': {'tag': 'preferred_unit', 'value': 'hours'}
|
|
10502
|
+
'preferred_unit': {'tag': 'preferred_unit', 'value': 'hours'},
|
|
10503
|
+
'storage_units': {'tag': 'storage_units', 'value': 'h'}},
|
|
10074
10504
|
'domain_of': ['Biosample'],
|
|
10075
10505
|
'examples': [{'value': ''}],
|
|
10076
10506
|
'is_a': 'core field',
|
|
@@ -10082,9 +10512,11 @@ class Biosample(Sample):
|
|
|
10082
10512
|
'occurrence': {'tag': 'occurrence', 'value': '1'},
|
|
10083
10513
|
'preferred_unit': {'tag': 'preferred_unit',
|
|
10084
10514
|
'value': 'milligram per liter, parts per '
|
|
10085
|
-
'million'}
|
|
10515
|
+
'million'},
|
|
10516
|
+
'storage_units': {'tag': 'storage_units',
|
|
10517
|
+
'value': '[ppm]|mg/L'}},
|
|
10086
10518
|
'domain_of': ['Biosample'],
|
|
10087
|
-
'examples': [{'value': '10.5
|
|
10519
|
+
'examples': [{'value': '10.5 mg/L'}],
|
|
10088
10520
|
'is_a': 'core field',
|
|
10089
10521
|
'slot_uri': 'MIXS:0000428'} })
|
|
10090
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',
|
|
@@ -10100,7 +10532,9 @@ class Biosample(Sample):
|
|
|
10100
10532
|
'aliases': ['soil texture measurement'],
|
|
10101
10533
|
'annotations': {'expected_value': {'tag': 'expected_value',
|
|
10102
10534
|
'value': 'measurement value'},
|
|
10103
|
-
'occurrence': {'tag': 'occurrence', 'value': '1'}
|
|
10535
|
+
'occurrence': {'tag': 'occurrence', 'value': '1'},
|
|
10536
|
+
'units_alignment_excuse': {'tag': 'units_alignment_excuse',
|
|
10537
|
+
'value': 'pending_analysis'}},
|
|
10104
10538
|
'domain_of': ['Biosample'],
|
|
10105
10539
|
'examples': [{'value': ''}],
|
|
10106
10540
|
'is_a': 'core field',
|
|
@@ -10143,9 +10577,11 @@ class Biosample(Sample):
|
|
|
10143
10577
|
'preferred_unit': {'tag': 'preferred_unit',
|
|
10144
10578
|
'value': 'kilowatts per square meter per '
|
|
10145
10579
|
'day, ergs per square centimeter '
|
|
10146
|
-
'per second'}
|
|
10580
|
+
'per second'},
|
|
10581
|
+
'storage_units': {'tag': 'storage_units',
|
|
10582
|
+
'value': 'kW/m2/d|erg/cm2/s'}},
|
|
10147
10583
|
'domain_of': ['Biosample'],
|
|
10148
|
-
'examples': [{'value': '1.36
|
|
10584
|
+
'examples': [{'value': '1.36 kW/m2/d'}],
|
|
10149
10585
|
'is_a': 'core field',
|
|
10150
10586
|
'slot_uri': 'MIXS:0000112'} })
|
|
10151
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',
|
|
@@ -10185,9 +10621,11 @@ class Biosample(Sample):
|
|
|
10185
10621
|
'occurrence': {'tag': 'occurrence', 'value': '1'},
|
|
10186
10622
|
'preferred_unit': {'tag': 'preferred_unit',
|
|
10187
10623
|
'value': 'micromole per liter, milligram '
|
|
10188
|
-
'per liter, parts per million'}
|
|
10624
|
+
'per liter, parts per million'},
|
|
10625
|
+
'storage_units': {'tag': 'storage_units',
|
|
10626
|
+
'value': '[ppm]|mg/L|umol/L|ug/L'}},
|
|
10189
10627
|
'domain_of': ['Biosample'],
|
|
10190
|
-
'examples': [{'value': '0.1
|
|
10628
|
+
'examples': [{'value': '0.1 mg/L'}],
|
|
10191
10629
|
'is_a': 'core field',
|
|
10192
10630
|
'slot_uri': 'MIXS:0000738'} })
|
|
10193
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',
|
|
@@ -10238,7 +10676,9 @@ class Biosample(Sample):
|
|
|
10238
10676
|
'value': 'measurement value'},
|
|
10239
10677
|
'occurrence': {'tag': 'occurrence', 'value': '1'},
|
|
10240
10678
|
'preferred_unit': {'tag': 'preferred_unit',
|
|
10241
|
-
'value': 'gram of air, kilogram of air'}
|
|
10679
|
+
'value': 'gram of air, kilogram of air'},
|
|
10680
|
+
'units_alignment_excuse': {'tag': 'units_alignment_excuse',
|
|
10681
|
+
'value': 'mixs_inconsistent'}},
|
|
10242
10682
|
'domain_of': ['Biosample'],
|
|
10243
10683
|
'examples': [{'value': '15 per kilogram of air'}],
|
|
10244
10684
|
'is_a': 'core field',
|
|
@@ -10317,9 +10757,11 @@ class Biosample(Sample):
|
|
|
10317
10757
|
'occurrence': {'tag': 'occurrence', 'value': '1'},
|
|
10318
10758
|
'preferred_unit': {'tag': 'preferred_unit',
|
|
10319
10759
|
'value': 'micromole per liter, milligram '
|
|
10320
|
-
'per liter, parts per million'}
|
|
10760
|
+
'per liter, parts per million'},
|
|
10761
|
+
'storage_units': {'tag': 'storage_units',
|
|
10762
|
+
'value': '[ppm]|mg/L|umol/L'}},
|
|
10321
10763
|
'domain_of': ['Biosample'],
|
|
10322
|
-
'examples': [{'value': '5
|
|
10764
|
+
'examples': [{'value': '5 umol/L'}],
|
|
10323
10765
|
'is_a': 'core field',
|
|
10324
10766
|
'slot_uri': 'MIXS:0000423'} })
|
|
10325
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',
|
|
@@ -10328,7 +10770,8 @@ class Biosample(Sample):
|
|
|
10328
10770
|
'value': 'measurement value'},
|
|
10329
10771
|
'occurrence': {'tag': 'occurrence', 'value': '1'},
|
|
10330
10772
|
'preferred_unit': {'tag': 'preferred_unit',
|
|
10331
|
-
'value': 'milligram per liter'}
|
|
10773
|
+
'value': 'milligram per liter'},
|
|
10774
|
+
'storage_units': {'tag': 'storage_units', 'value': 'mg/L'}},
|
|
10332
10775
|
'domain_of': ['Biosample'],
|
|
10333
10776
|
'examples': [{'value': ''}],
|
|
10334
10777
|
'is_a': 'core field',
|
|
@@ -10340,9 +10783,11 @@ class Biosample(Sample):
|
|
|
10340
10783
|
'occurrence': {'tag': 'occurrence', 'value': '1'},
|
|
10341
10784
|
'preferred_unit': {'tag': 'preferred_unit',
|
|
10342
10785
|
'value': 'micromole per liter, milligram '
|
|
10343
|
-
'per liter, parts per million'}
|
|
10786
|
+
'per liter, parts per million'},
|
|
10787
|
+
'storage_units': {'tag': 'storage_units',
|
|
10788
|
+
'value': '[ppm]|mg/L|umol/L'}},
|
|
10344
10789
|
'domain_of': ['Biosample'],
|
|
10345
|
-
'examples': [{'value': '2
|
|
10790
|
+
'examples': [{'value': '2 umol/L'}],
|
|
10346
10791
|
'is_a': 'core field',
|
|
10347
10792
|
'slot_uri': 'MIXS:0000424'} })
|
|
10348
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',
|
|
@@ -10360,7 +10805,8 @@ class Biosample(Sample):
|
|
|
10360
10805
|
'value': 'measurement value'},
|
|
10361
10806
|
'occurrence': {'tag': 'occurrence', 'value': '1'},
|
|
10362
10807
|
'preferred_unit': {'tag': 'preferred_unit',
|
|
10363
|
-
'value': 'percentage'}
|
|
10808
|
+
'value': 'percentage'},
|
|
10809
|
+
'storage_units': {'tag': 'storage_units', 'value': '%'}},
|
|
10364
10810
|
'domain_of': ['Biosample'],
|
|
10365
10811
|
'examples': [{'value': '10%'}],
|
|
10366
10812
|
'is_a': 'core field',
|
|
@@ -10382,9 +10828,11 @@ class Biosample(Sample):
|
|
|
10382
10828
|
'preferred_unit': {'tag': 'preferred_unit',
|
|
10383
10829
|
'value': 'parts per million, gram per '
|
|
10384
10830
|
'cubic meter, gram per square '
|
|
10385
|
-
'meter'}
|
|
10831
|
+
'meter'},
|
|
10832
|
+
'storage_units': {'tag': 'storage_units',
|
|
10833
|
+
'value': '[ppm]|g/m2|g/m3'}},
|
|
10386
10834
|
'domain_of': ['Biosample'],
|
|
10387
|
-
'examples': [{'value': '0.01
|
|
10835
|
+
'examples': [{'value': '0.01 g/m2'}],
|
|
10388
10836
|
'is_a': 'core field',
|
|
10389
10837
|
'slot_uri': 'MIXS:0000128'} })
|
|
10390
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',
|
|
@@ -10402,9 +10850,10 @@ class Biosample(Sample):
|
|
|
10402
10850
|
'value': 'measurement value'},
|
|
10403
10851
|
'occurrence': {'tag': 'occurrence', 'value': '1'},
|
|
10404
10852
|
'preferred_unit': {'tag': 'preferred_unit',
|
|
10405
|
-
'value': 'degree Celsius'}
|
|
10853
|
+
'value': 'degree Celsius'},
|
|
10854
|
+
'storage_units': {'tag': 'storage_units', 'value': 'Cel'}},
|
|
10406
10855
|
'domain_of': ['Biosample'],
|
|
10407
|
-
'examples': [{'value': '15
|
|
10856
|
+
'examples': [{'value': '15 Cel'}],
|
|
10408
10857
|
'is_a': 'core field',
|
|
10409
10858
|
'slot_uri': 'MIXS:0000125'} })
|
|
10410
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',
|
|
@@ -10413,9 +10862,10 @@ class Biosample(Sample):
|
|
|
10413
10862
|
'value': 'measurement value'},
|
|
10414
10863
|
'occurrence': {'tag': 'occurrence', 'value': '1'},
|
|
10415
10864
|
'preferred_unit': {'tag': 'preferred_unit',
|
|
10416
|
-
'value': 'milligram per liter'}
|
|
10865
|
+
'value': 'milligram per liter'},
|
|
10866
|
+
'storage_units': {'tag': 'storage_units', 'value': 'mg/L'}},
|
|
10417
10867
|
'domain_of': ['Biosample'],
|
|
10418
|
-
'examples': [{'value': '0.5
|
|
10868
|
+
'examples': [{'value': '0.5 mg/L'}],
|
|
10419
10869
|
'is_a': 'core field',
|
|
10420
10870
|
'slot_uri': 'MIXS:0000741'} })
|
|
10421
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',
|
|
@@ -10439,7 +10889,8 @@ class Biosample(Sample):
|
|
|
10439
10889
|
'value': 'measurement value'},
|
|
10440
10890
|
'occurrence': {'tag': 'occurrence', 'value': '1'},
|
|
10441
10891
|
'preferred_unit': {'tag': 'preferred_unit',
|
|
10442
|
-
'value': 'milligram per liter'}
|
|
10892
|
+
'value': 'milligram per liter'},
|
|
10893
|
+
'storage_units': {'tag': 'storage_units', 'value': 'mg/L'}},
|
|
10443
10894
|
'domain_of': ['Biosample'],
|
|
10444
10895
|
'examples': [{'value': ''}],
|
|
10445
10896
|
'is_a': 'core field',
|
|
@@ -10449,9 +10900,10 @@ class Biosample(Sample):
|
|
|
10449
10900
|
'annotations': {'expected_value': {'tag': 'expected_value',
|
|
10450
10901
|
'value': 'measurement value'},
|
|
10451
10902
|
'preferred_unit': {'tag': 'preferred_unit',
|
|
10452
|
-
'value': 'degree Celsius'}
|
|
10903
|
+
'value': 'degree Celsius'},
|
|
10904
|
+
'storage_units': {'tag': 'storage_units', 'value': 'Cel'}},
|
|
10453
10905
|
'domain_of': ['Biosample'],
|
|
10454
|
-
'examples': [{'value': '25
|
|
10906
|
+
'examples': [{'value': '25 Cel'}],
|
|
10455
10907
|
'is_a': 'environment field',
|
|
10456
10908
|
'slot_uri': 'MIXS:0000113'} })
|
|
10457
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',
|
|
@@ -10460,9 +10912,10 @@ class Biosample(Sample):
|
|
|
10460
10912
|
'value': 'measurement value'},
|
|
10461
10913
|
'occurrence': {'tag': 'occurrence', 'value': '1'},
|
|
10462
10914
|
'preferred_unit': {'tag': 'preferred_unit',
|
|
10463
|
-
'value': 'degree Celsius'}
|
|
10915
|
+
'value': 'degree Celsius'},
|
|
10916
|
+
'storage_units': {'tag': 'storage_units', 'value': 'Cel'}},
|
|
10464
10917
|
'domain_of': ['Biosample'],
|
|
10465
|
-
'examples': [{'value': '5
|
|
10918
|
+
'examples': [{'value': '5 Cel'}],
|
|
10466
10919
|
'is_a': 'core field',
|
|
10467
10920
|
'slot_uri': 'MIXS:0000197'} })
|
|
10468
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',
|
|
@@ -10510,7 +10963,9 @@ class Biosample(Sample):
|
|
|
10510
10963
|
'occurrence': {'tag': 'occurrence', 'value': '1'},
|
|
10511
10964
|
'preferred_unit': {'tag': 'preferred_unit',
|
|
10512
10965
|
'value': 'milligram per liter, parts per '
|
|
10513
|
-
'million'}
|
|
10966
|
+
'million'},
|
|
10967
|
+
'storage_units': {'tag': 'storage_units',
|
|
10968
|
+
'value': '[ppm]|mg/L'}},
|
|
10514
10969
|
'domain_of': ['Biosample'],
|
|
10515
10970
|
'examples': [{'value': ''}],
|
|
10516
10971
|
'is_a': 'core field',
|
|
@@ -10521,7 +10976,8 @@ class Biosample(Sample):
|
|
|
10521
10976
|
'value': 'measurement value'},
|
|
10522
10977
|
'occurrence': {'tag': 'occurrence', 'value': '1'},
|
|
10523
10978
|
'preferred_unit': {'tag': 'preferred_unit',
|
|
10524
|
-
'value': 'microgram per liter'}
|
|
10979
|
+
'value': 'microgram per liter'},
|
|
10980
|
+
'storage_units': {'tag': 'storage_units', 'value': 'ug/L|%'}},
|
|
10525
10981
|
'domain_of': ['Biosample'],
|
|
10526
10982
|
'examples': [{'value': '1 ug/L'}],
|
|
10527
10983
|
'is_a': 'core field',
|
|
@@ -10535,9 +10991,10 @@ class Biosample(Sample):
|
|
|
10535
10991
|
'annotations': {'expected_value': {'tag': 'expected_value',
|
|
10536
10992
|
'value': 'measurement value'},
|
|
10537
10993
|
'occurrence': {'tag': 'occurrence', 'value': '1'},
|
|
10538
|
-
'preferred_unit': {'tag': 'preferred_unit', 'value': 'meter'}
|
|
10994
|
+
'preferred_unit': {'tag': 'preferred_unit', 'value': 'meter'},
|
|
10995
|
+
'storage_units': {'tag': 'storage_units', 'value': 'm'}},
|
|
10539
10996
|
'domain_of': ['Biosample'],
|
|
10540
|
-
'examples': [{'value': '500
|
|
10997
|
+
'examples': [{'value': '500 m'}],
|
|
10541
10998
|
'is_a': 'core field',
|
|
10542
10999
|
'slot_uri': 'MIXS:0000634'} })
|
|
10543
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',
|
|
@@ -10546,9 +11003,11 @@ class Biosample(Sample):
|
|
|
10546
11003
|
'value': 'measurement value'},
|
|
10547
11004
|
'occurrence': {'tag': 'occurrence', 'value': '1'},
|
|
10548
11005
|
'preferred_unit': {'tag': 'preferred_unit',
|
|
10549
|
-
'value': 'microgram per liter'}
|
|
11006
|
+
'value': 'microgram per liter'},
|
|
11007
|
+
'storage_units': {'tag': 'storage_units',
|
|
11008
|
+
'value': 'ug/L|umol/L'}},
|
|
10550
11009
|
'domain_of': ['Biosample'],
|
|
10551
|
-
'examples': [{'value': '40
|
|
11010
|
+
'examples': [{'value': '40 ug/L'}],
|
|
10552
11011
|
'is_a': 'core field',
|
|
10553
11012
|
'slot_uri': 'MIXS:0000744'} })
|
|
10554
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',
|
|
@@ -10557,9 +11016,10 @@ class Biosample(Sample):
|
|
|
10557
11016
|
'value': 'measurement value'},
|
|
10558
11017
|
'occurrence': {'tag': 'occurrence', 'value': '1'},
|
|
10559
11018
|
'preferred_unit': {'tag': 'preferred_unit',
|
|
10560
|
-
'value': 'microgram per liter'}
|
|
11019
|
+
'value': 'microgram per liter'},
|
|
11020
|
+
'storage_units': {'tag': 'storage_units', 'value': 'ug/L'}},
|
|
10561
11021
|
'domain_of': ['Biosample'],
|
|
10562
|
-
'examples': [{'value': '40
|
|
11022
|
+
'examples': [{'value': '40 ug/L'}],
|
|
10563
11023
|
'is_a': 'core field',
|
|
10564
11024
|
'slot_uri': 'MIXS:0000745'} })
|
|
10565
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',
|
|
@@ -10569,7 +11029,9 @@ class Biosample(Sample):
|
|
|
10569
11029
|
'occurrence': {'tag': 'occurrence', 'value': '1'},
|
|
10570
11030
|
'preferred_unit': {'tag': 'preferred_unit',
|
|
10571
11031
|
'value': 'milligram per liter, milligram '
|
|
10572
|
-
'per kilogram'}
|
|
11032
|
+
'per kilogram'},
|
|
11033
|
+
'storage_units': {'tag': 'storage_units',
|
|
11034
|
+
'value': 'mg/L|mg/kg'}},
|
|
10573
11035
|
'domain_of': ['Biosample'],
|
|
10574
11036
|
'examples': [{'value': ''}],
|
|
10575
11037
|
'is_a': 'core field',
|
|
@@ -10581,9 +11043,11 @@ class Biosample(Sample):
|
|
|
10581
11043
|
'occurrence': {'tag': 'occurrence', 'value': '1'},
|
|
10582
11044
|
'preferred_unit': {'tag': 'preferred_unit',
|
|
10583
11045
|
'value': 'microgram per liter, micromole '
|
|
10584
|
-
'per liter, milligram per liter'}
|
|
11046
|
+
'per liter, milligram per liter'},
|
|
11047
|
+
'storage_units': {'tag': 'storage_units',
|
|
11048
|
+
'value': 'mg/L|ug/L|umol/L|%'}},
|
|
10585
11049
|
'domain_of': ['Biosample'],
|
|
10586
|
-
'examples': [{'value': '50
|
|
11050
|
+
'examples': [{'value': '50 umol/L'}],
|
|
10587
11051
|
'is_a': 'core field',
|
|
10588
11052
|
'slot_uri': 'MIXS:0000102'} })
|
|
10589
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',
|
|
@@ -10604,9 +11068,11 @@ class Biosample(Sample):
|
|
|
10604
11068
|
'occurrence': {'tag': 'occurrence', 'value': '1'},
|
|
10605
11069
|
'preferred_unit': {'tag': 'preferred_unit',
|
|
10606
11070
|
'value': 'microgram per liter, micromole '
|
|
10607
|
-
'per liter, milligram per liter'}
|
|
11071
|
+
'per liter, milligram per liter'},
|
|
11072
|
+
'storage_units': {'tag': 'storage_units',
|
|
11073
|
+
'value': 'mg/L|ug/L|umol/L|%'}},
|
|
10608
11074
|
'domain_of': ['Biosample'],
|
|
10609
|
-
'examples': [{'value': '5 mg
|
|
11075
|
+
'examples': [{'value': '5 mg/L'}],
|
|
10610
11076
|
'is_a': 'core field',
|
|
10611
11077
|
'slot_uri': 'MIXS:0000530'} })
|
|
10612
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',
|
|
@@ -10626,9 +11092,10 @@ class Biosample(Sample):
|
|
|
10626
11092
|
'occurrence': {'tag': 'occurrence', 'value': '1'},
|
|
10627
11093
|
'preferred_unit': {'tag': 'preferred_unit',
|
|
10628
11094
|
'value': 'gram Carbon per kilogram sample '
|
|
10629
|
-
'material'}
|
|
11095
|
+
'material'},
|
|
11096
|
+
'storage_units': {'tag': 'storage_units', 'value': 'mg/L'}},
|
|
10630
11097
|
'domain_of': ['Biosample'],
|
|
10631
|
-
'examples': [{'value': '5 mg
|
|
11098
|
+
'examples': [{'value': '5 mg/L'}],
|
|
10632
11099
|
'is_a': 'core field',
|
|
10633
11100
|
'slot_uri': 'MIXS:0000533',
|
|
10634
11101
|
'todos': ['check description. How are they different?']} })
|
|
@@ -10639,9 +11106,11 @@ class Biosample(Sample):
|
|
|
10639
11106
|
'occurrence': {'tag': 'occurrence', 'value': '1'},
|
|
10640
11107
|
'preferred_unit': {'tag': 'preferred_unit',
|
|
10641
11108
|
'value': 'microgram per liter, micromole '
|
|
10642
|
-
'per liter'}
|
|
11109
|
+
'per liter'},
|
|
11110
|
+
'storage_units': {'tag': 'storage_units',
|
|
11111
|
+
'value': 'ug/L|umol/L'}},
|
|
10643
11112
|
'domain_of': ['Biosample'],
|
|
10644
|
-
'examples': [{'value': '35
|
|
11113
|
+
'examples': [{'value': '35 umol/L'}],
|
|
10645
11114
|
'is_a': 'core field',
|
|
10646
11115
|
'slot_uri': 'MIXS:0000747'} })
|
|
10647
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',
|
|
@@ -10651,9 +11120,11 @@ class Biosample(Sample):
|
|
|
10651
11120
|
'occurrence': {'tag': 'occurrence', 'value': '1'},
|
|
10652
11121
|
'preferred_unit': {'tag': 'preferred_unit',
|
|
10653
11122
|
'value': 'micromole per liter, milligram '
|
|
10654
|
-
'per liter, parts per million'}
|
|
11123
|
+
'per liter, parts per million'},
|
|
11124
|
+
'storage_units': {'tag': 'storage_units',
|
|
11125
|
+
'value': '[ppm]|mg/L|umol/L'}},
|
|
10655
11126
|
'domain_of': ['Biosample'],
|
|
10656
|
-
'examples': [{'value': '0.03
|
|
11127
|
+
'examples': [{'value': '0.03 mg/L'}],
|
|
10657
11128
|
'is_a': 'core field',
|
|
10658
11129
|
'slot_uri': 'MIXS:0000117'} })
|
|
10659
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',
|
|
@@ -10663,7 +11134,9 @@ class Biosample(Sample):
|
|
|
10663
11134
|
'occurrence': {'tag': 'occurrence', 'value': '1'},
|
|
10664
11135
|
'preferred_unit': {'tag': 'preferred_unit',
|
|
10665
11136
|
'value': 'microgram per liter, micromole '
|
|
10666
|
-
'per liter'}
|
|
11137
|
+
'per liter'},
|
|
11138
|
+
'storage_units': {'tag': 'storage_units',
|
|
11139
|
+
'value': 'ug/L|umol/L'}},
|
|
10667
11140
|
'domain_of': ['Biosample'],
|
|
10668
11141
|
'examples': [{'value': ''}],
|
|
10669
11142
|
'is_a': 'core field',
|
|
@@ -10675,7 +11148,9 @@ class Biosample(Sample):
|
|
|
10675
11148
|
'occurrence': {'tag': 'occurrence', 'value': '1'},
|
|
10676
11149
|
'preferred_unit': {'tag': 'preferred_unit',
|
|
10677
11150
|
'value': 'milligram per liter, parts per '
|
|
10678
|
-
'million'}
|
|
11151
|
+
'million'},
|
|
11152
|
+
'storage_units': {'tag': 'storage_units',
|
|
11153
|
+
'value': '[ppm]|mg/L'}},
|
|
10679
11154
|
'domain_of': ['Biosample'],
|
|
10680
11155
|
'examples': [{'value': ''}],
|
|
10681
11156
|
'is_a': 'core field',
|
|
@@ -10714,9 +11189,11 @@ class Biosample(Sample):
|
|
|
10714
11189
|
'occurrence': {'tag': 'occurrence', 'value': '1'},
|
|
10715
11190
|
'preferred_unit': {'tag': 'preferred_unit',
|
|
10716
11191
|
'value': 'formazin turbidity unit, '
|
|
10717
|
-
'formazin nephelometric units'}
|
|
11192
|
+
'formazin nephelometric units'},
|
|
11193
|
+
'storage_units': {'tag': 'storage_units',
|
|
11194
|
+
'value': '[NTU]|[FNU]'}},
|
|
10718
11195
|
'domain_of': ['Biosample'],
|
|
10719
|
-
'examples': [{'value': '0.3
|
|
11196
|
+
'examples': [{'value': '0.3 [NTU]'}],
|
|
10720
11197
|
'is_a': 'core field',
|
|
10721
11198
|
'slot_uri': 'MIXS:0000191'} })
|
|
10722
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',
|
|
@@ -10724,7 +11201,8 @@ class Biosample(Sample):
|
|
|
10724
11201
|
'annotations': {'expected_value': {'tag': 'expected_value',
|
|
10725
11202
|
'value': 'measurement value'},
|
|
10726
11203
|
'occurrence': {'tag': 'occurrence', 'value': '1'},
|
|
10727
|
-
'preferred_unit': {'tag': 'preferred_unit', 'value': 'meter'}
|
|
11204
|
+
'preferred_unit': {'tag': 'preferred_unit', 'value': 'meter'},
|
|
11205
|
+
'storage_units': {'tag': 'storage_units', 'value': 'm'}},
|
|
10728
11206
|
'domain_of': ['Biosample'],
|
|
10729
11207
|
'examples': [{'value': ''}],
|
|
10730
11208
|
'is_a': 'core field',
|
|
@@ -10734,7 +11212,9 @@ class Biosample(Sample):
|
|
|
10734
11212
|
'annotations': {'expected_value': {'tag': 'expected_value',
|
|
10735
11213
|
'value': 'measurement value'},
|
|
10736
11214
|
'occurrence': {'tag': 'occurrence', 'value': '1'},
|
|
10737
|
-
'preferred_unit': {'tag': 'preferred_unit', 'value': 'meter'}
|
|
11215
|
+
'preferred_unit': {'tag': 'preferred_unit', 'value': 'meter'},
|
|
11216
|
+
'units_alignment_excuse': {'tag': 'units_alignment_excuse',
|
|
11217
|
+
'value': 'complex_unit'}},
|
|
10738
11218
|
'domain_of': ['Biosample'],
|
|
10739
11219
|
'examples': [{'value': ''}],
|
|
10740
11220
|
'is_a': 'core field',
|
|
@@ -10755,9 +11235,11 @@ class Biosample(Sample):
|
|
|
10755
11235
|
'occurrence': {'tag': 'occurrence', 'value': '1'},
|
|
10756
11236
|
'preferred_unit': {'tag': 'preferred_unit',
|
|
10757
11237
|
'value': 'cubic meter per minute, liters '
|
|
10758
|
-
'per second'}
|
|
11238
|
+
'per second'},
|
|
11239
|
+
'storage_units': {'tag': 'storage_units',
|
|
11240
|
+
'value': 'L/s|m3/min'}},
|
|
10759
11241
|
'domain_of': ['Biosample'],
|
|
10760
|
-
'examples': [{'value': '750
|
|
11242
|
+
'examples': [{'value': '750 m3/min'}],
|
|
10761
11243
|
'is_a': 'core field',
|
|
10762
11244
|
'slot_uri': 'MIXS:0000114'} })
|
|
10763
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',
|
|
@@ -10777,7 +11259,9 @@ class Biosample(Sample):
|
|
|
10777
11259
|
'occurrence': {'tag': 'occurrence', 'value': '1'},
|
|
10778
11260
|
'preferred_unit': {'tag': 'preferred_unit',
|
|
10779
11261
|
'value': 'milligram per liter, parts per '
|
|
10780
|
-
'million'}
|
|
11262
|
+
'million'},
|
|
11263
|
+
'storage_units': {'tag': 'storage_units',
|
|
11264
|
+
'value': '[ppm]|mg/L'}},
|
|
10781
11265
|
'domain_of': ['Biosample'],
|
|
10782
11266
|
'examples': [{'value': ''}],
|
|
10783
11267
|
'is_a': 'core field',
|
|
@@ -10788,7 +11272,8 @@ class Biosample(Sample):
|
|
|
10788
11272
|
'value': 'measurement value'},
|
|
10789
11273
|
'occurrence': {'tag': 'occurrence', 'value': '1'},
|
|
10790
11274
|
'preferred_unit': {'tag': 'preferred_unit',
|
|
10791
|
-
'value': 'milligram per liter'}
|
|
11275
|
+
'value': 'milligram per liter'},
|
|
11276
|
+
'storage_units': {'tag': 'storage_units', 'value': 'mg/L'}},
|
|
10792
11277
|
'domain_of': ['Biosample'],
|
|
10793
11278
|
'examples': [{'value': ''}],
|
|
10794
11279
|
'is_a': 'core field',
|
|
@@ -10836,7 +11321,8 @@ class Biosample(Sample):
|
|
|
10836
11321
|
'value': 'measurement value'},
|
|
10837
11322
|
'occurrence': {'tag': 'occurrence', 'value': '1'},
|
|
10838
11323
|
'preferred_unit': {'tag': 'preferred_unit',
|
|
10839
|
-
'value': 'square meter'}
|
|
11324
|
+
'value': 'square meter'},
|
|
11325
|
+
'storage_units': {'tag': 'storage_units', 'value': 'm2'}},
|
|
10840
11326
|
'domain_of': ['Biosample'],
|
|
10841
11327
|
'examples': [{'value': ''}],
|
|
10842
11328
|
'is_a': 'core field',
|
|
@@ -10864,7 +11350,8 @@ class Biosample(Sample):
|
|
|
10864
11350
|
'annotations': {'expected_value': {'tag': 'expected_value', 'value': 'value'},
|
|
10865
11351
|
'occurrence': {'tag': 'occurrence', 'value': '1'},
|
|
10866
11352
|
'preferred_unit': {'tag': 'preferred_unit',
|
|
10867
|
-
'value': 'centimeter'}
|
|
11353
|
+
'value': 'centimeter'},
|
|
11354
|
+
'storage_units': {'tag': 'storage_units', 'value': 'cm'}},
|
|
10868
11355
|
'domain_of': ['Biosample'],
|
|
10869
11356
|
'examples': [{'value': ''}],
|
|
10870
11357
|
'is_a': 'core field',
|
|
@@ -10902,7 +11389,8 @@ class Biosample(Sample):
|
|
|
10902
11389
|
'value': 'measurement value'},
|
|
10903
11390
|
'occurrence': {'tag': 'occurrence', 'value': '1'},
|
|
10904
11391
|
'preferred_unit': {'tag': 'preferred_unit',
|
|
10905
|
-
'value': 'joule per degree Celsius'}
|
|
11392
|
+
'value': 'joule per degree Celsius'},
|
|
11393
|
+
'storage_units': {'tag': 'storage_units', 'value': 'J/K'}},
|
|
10906
11394
|
'domain_of': ['Biosample'],
|
|
10907
11395
|
'examples': [{'value': ''}],
|
|
10908
11396
|
'is_a': 'core field',
|
|
@@ -10970,9 +11458,11 @@ class Biosample(Sample):
|
|
|
10970
11458
|
'value': 'measurement value'},
|
|
10971
11459
|
'occurrence': {'tag': 'occurrence', 'value': '1'},
|
|
10972
11460
|
'preferred_unit': {'tag': 'preferred_unit',
|
|
10973
|
-
'value': 'cubic meter per second, knots'}
|
|
11461
|
+
'value': 'cubic meter per second, knots'},
|
|
11462
|
+
'storage_units': {'tag': 'storage_units',
|
|
11463
|
+
'value': '[kn_i]|m3/s'}},
|
|
10974
11464
|
'domain_of': ['Biosample'],
|
|
10975
|
-
'examples': [{'value': '10
|
|
11465
|
+
'examples': [{'value': '10 m3/s'}],
|
|
10976
11466
|
'is_a': 'core field',
|
|
10977
11467
|
'slot_uri': 'MIXS:0000203'} })
|
|
10978
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',
|
|
@@ -10981,7 +11471,8 @@ class Biosample(Sample):
|
|
|
10981
11471
|
'value': 'measurement value'},
|
|
10982
11472
|
'occurrence': {'tag': 'occurrence', 'value': '1'},
|
|
10983
11473
|
'preferred_unit': {'tag': 'preferred_unit',
|
|
10984
|
-
'value': 'percent'}
|
|
11474
|
+
'value': 'percent'},
|
|
11475
|
+
'storage_units': {'tag': 'storage_units', 'value': '%'}},
|
|
10985
11476
|
'domain_of': ['Biosample'],
|
|
10986
11477
|
'examples': [{'value': ''}],
|
|
10987
11478
|
'is_a': 'core field',
|
|
@@ -10992,7 +11483,8 @@ class Biosample(Sample):
|
|
|
10992
11483
|
'value': 'measurement value'},
|
|
10993
11484
|
'occurrence': {'tag': 'occurrence', 'value': '1'},
|
|
10994
11485
|
'preferred_unit': {'tag': 'preferred_unit',
|
|
10995
|
-
'value': 'square meter'}
|
|
11486
|
+
'value': 'square meter'},
|
|
11487
|
+
'storage_units': {'tag': 'storage_units', 'value': 'm2'}},
|
|
10996
11488
|
'domain_of': ['Biosample'],
|
|
10997
11489
|
'examples': [{'value': ''}],
|
|
10998
11490
|
'is_a': 'core field',
|
|
@@ -11012,7 +11504,8 @@ class Biosample(Sample):
|
|
|
11012
11504
|
'value': 'measurement value'},
|
|
11013
11505
|
'occurrence': {'tag': 'occurrence', 'value': '1'},
|
|
11014
11506
|
'preferred_unit': {'tag': 'preferred_unit',
|
|
11015
|
-
'value': 'cubic meter per day'}
|
|
11507
|
+
'value': 'cubic meter per day'},
|
|
11508
|
+
'storage_units': {'tag': 'storage_units', 'value': 'm3/d'}},
|
|
11016
11509
|
'domain_of': ['Biosample'],
|
|
11017
11510
|
'examples': [{'value': ''}],
|
|
11018
11511
|
'is_a': 'core field',
|
|
@@ -11080,9 +11573,11 @@ class Biosample(Sample):
|
|
|
11080
11573
|
'occurrence': {'tag': 'occurrence', 'value': '1'},
|
|
11081
11574
|
'preferred_unit': {'tag': 'preferred_unit',
|
|
11082
11575
|
'value': 'meter per second, kilometer per '
|
|
11083
|
-
'hour'}
|
|
11576
|
+
'hour'},
|
|
11577
|
+
'storage_units': {'tag': 'storage_units',
|
|
11578
|
+
'value': 'km/h|m/s'}},
|
|
11084
11579
|
'domain_of': ['Biosample'],
|
|
11085
|
-
'examples': [{'value': '21
|
|
11580
|
+
'examples': [{'value': '21 km/h'}],
|
|
11086
11581
|
'is_a': 'core field',
|
|
11087
11582
|
'slot_uri': 'MIXS:0000118'} })
|
|
11088
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',
|
|
@@ -11196,7 +11691,9 @@ class Biosample(Sample):
|
|
|
11196
11691
|
'occurrence': {'tag': 'occurrence', 'value': '1'},
|
|
11197
11692
|
'preferred_unit': {'tag': 'preferred_unit',
|
|
11198
11693
|
'value': 'milligram per liter, parts per '
|
|
11199
|
-
'million'}
|
|
11694
|
+
'million'},
|
|
11695
|
+
'storage_units': {'tag': 'storage_units',
|
|
11696
|
+
'value': '[ppm]|mg/L'}},
|
|
11200
11697
|
'domain_of': ['Biosample'],
|
|
11201
11698
|
'examples': [{'value': ''}],
|
|
11202
11699
|
'is_a': 'core field',
|
|
@@ -11261,7 +11758,9 @@ class Biosample(Sample):
|
|
|
11261
11758
|
'see_also': ['https://github.com/microbiomedata/nmdc-metadata/pull/297']} })
|
|
11262
11759
|
sample_collection_site: Optional[str] = Field(default=None, json_schema_extra = { "linkml_meta": {'alias': 'sample_collection_site', 'domain_of': ['Biosample']} })
|
|
11263
11760
|
soluble_iron_micromol: Optional[str] = Field(default=None, json_schema_extra = { "linkml_meta": {'alias': 'soluble_iron_micromol', 'domain_of': ['Biosample']} })
|
|
11264
|
-
subsurface_depth: Optional[QuantityValue] = Field(default=None, json_schema_extra = { "linkml_meta": {'alias': 'subsurface_depth',
|
|
11761
|
+
subsurface_depth: Optional[QuantityValue] = Field(default=None, json_schema_extra = { "linkml_meta": {'alias': 'subsurface_depth',
|
|
11762
|
+
'annotations': {'storage_units': {'tag': 'storage_units', 'value': 'm'}},
|
|
11763
|
+
'domain_of': ['Biosample']} })
|
|
11265
11764
|
dna_collect_site: Optional[str] = Field(default=None, title="DNA collection site", description="""Provide information on the site your DNA sample was collected from""", json_schema_extra = { "linkml_meta": {'alias': 'dna_collect_site',
|
|
11266
11765
|
'domain_of': ['Biosample'],
|
|
11267
11766
|
'examples': [{'value': 'untreated pond water'}],
|
|
@@ -11517,7 +12016,7 @@ class Biosample(Sample):
|
|
|
11517
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',
|
|
11518
12017
|
'comments': ['MIxS:investigation_type was included as a `see_also` but that '
|
|
11519
12018
|
"term doesn't resolve any more"],
|
|
11520
|
-
'domain_of': ['Biosample'],
|
|
12019
|
+
'domain_of': ['Biosample', 'Protocol'],
|
|
11521
12020
|
'examples': [{'value': 'metagenomics; metabolomics; metaproteomics'}],
|
|
11522
12021
|
'rank': 3,
|
|
11523
12022
|
'recommended': True,
|
|
@@ -11535,6 +12034,8 @@ class Biosample(Sample):
|
|
|
11535
12034
|
'slot_group': 'Sample ID',
|
|
11536
12035
|
'string_serialization': '{text}:{text}'} })
|
|
11537
12036
|
bulk_elect_conductivity: Optional[QuantityValue] = Field(default=None, title="bulk electrical conductivity", description="""Electrical conductivity is a measure of the ability to carry electric current, which is mostly dictated by the chemistry of and amount of water.""", json_schema_extra = { "linkml_meta": {'alias': 'bulk_elect_conductivity',
|
|
12037
|
+
'annotations': {'units_alignment_excuse': {'tag': 'units_alignment_excuse',
|
|
12038
|
+
'value': 'pending_analysis'}},
|
|
11538
12039
|
'comments': ['Provide the value output of the field instrument.'],
|
|
11539
12040
|
'domain_of': ['Biosample'],
|
|
11540
12041
|
'examples': [{'description': 'The conductivity measurement was 0.017 '
|
|
@@ -11552,7 +12053,9 @@ class Biosample(Sample):
|
|
|
11552
12053
|
'value': 'measurement value'},
|
|
11553
12054
|
'occurrence': {'tag': 'occurrence', 'value': '1'},
|
|
11554
12055
|
'preferred_unit': {'tag': 'preferred_unit',
|
|
11555
|
-
'value': 'mg/kg (ppm)'}
|
|
12056
|
+
'value': 'mg/kg (ppm)'},
|
|
12057
|
+
'storage_units': {'tag': 'storage_units',
|
|
12058
|
+
'value': '[ppm]|mg/kg|mg/L'}},
|
|
11556
12059
|
'domain_of': ['Biosample'],
|
|
11557
12060
|
'examples': [{'value': '2.5 mg/kg'}],
|
|
11558
12061
|
'see_also': ['https://www.ornl.gov/content/bio-scales-0']} })
|
|
@@ -11561,7 +12064,9 @@ class Biosample(Sample):
|
|
|
11561
12064
|
'value': 'measurement value'},
|
|
11562
12065
|
'occurrence': {'tag': 'occurrence', 'value': '1'},
|
|
11563
12066
|
'preferred_unit': {'tag': 'preferred_unit',
|
|
11564
|
-
'value': 'mg/kg (ppm)'}
|
|
12067
|
+
'value': 'mg/kg (ppm)'},
|
|
12068
|
+
'storage_units': {'tag': 'storage_units',
|
|
12069
|
+
'value': '[ppm]|mg/kg|mg/L'}},
|
|
11565
12070
|
'domain_of': ['Biosample'],
|
|
11566
12071
|
'examples': [{'value': '24.7 mg/kg'}],
|
|
11567
12072
|
'see_also': ['https://www.ornl.gov/content/bio-scales-0']} })
|
|
@@ -11570,7 +12075,9 @@ class Biosample(Sample):
|
|
|
11570
12075
|
'annotations': {'expected_value': {'tag': 'expected_value',
|
|
11571
12076
|
'value': 'measurement value'},
|
|
11572
12077
|
'occurrence': {'tag': 'occurrence', 'value': '1'},
|
|
11573
|
-
'preferred_unit': {'tag': 'preferred_unit', 'value': 'mg/kg'}
|
|
12078
|
+
'preferred_unit': {'tag': 'preferred_unit', 'value': 'mg/kg'},
|
|
12079
|
+
'storage_units': {'tag': 'storage_units',
|
|
12080
|
+
'value': '[ppm]|mg/kg|mg/L'}},
|
|
11574
12081
|
'domain_of': ['Biosample'],
|
|
11575
12082
|
'examples': [{'value': '2.3 mg/kg'}],
|
|
11576
12083
|
'see_also': ['https://www.ornl.gov/content/bio-scales-0']} })
|
|
@@ -11579,7 +12086,9 @@ class Biosample(Sample):
|
|
|
11579
12086
|
'annotations': {'expected_value': {'tag': 'expected_value',
|
|
11580
12087
|
'value': 'measurement value'},
|
|
11581
12088
|
'occurrence': {'tag': 'occurrence', 'value': '1'},
|
|
11582
|
-
'preferred_unit': {'tag': 'preferred_unit', 'value': 'mg/kg'}
|
|
12089
|
+
'preferred_unit': {'tag': 'preferred_unit', 'value': 'mg/kg'},
|
|
12090
|
+
'storage_units': {'tag': 'storage_units',
|
|
12091
|
+
'value': '[ppm]|mg/kg|mg/L'}},
|
|
11583
12092
|
'comments': ['often below some specified limit of detection'],
|
|
11584
12093
|
'domain_of': ['Biosample'],
|
|
11585
12094
|
'examples': [{'value': '0.29 mg/kg'}],
|
|
@@ -11589,7 +12098,9 @@ class Biosample(Sample):
|
|
|
11589
12098
|
'annotations': {'expected_value': {'tag': 'expected_value',
|
|
11590
12099
|
'value': 'measurement value'},
|
|
11591
12100
|
'occurrence': {'tag': 'occurrence', 'value': '1'},
|
|
11592
|
-
'preferred_unit': {'tag': 'preferred_unit', 'value': 'mg/kg'}
|
|
12101
|
+
'preferred_unit': {'tag': 'preferred_unit', 'value': 'mg/kg'},
|
|
12102
|
+
'storage_units': {'tag': 'storage_units',
|
|
12103
|
+
'value': '[ppm]|mg/kg|mg/L'}},
|
|
11593
12104
|
'domain_of': ['Biosample'],
|
|
11594
12105
|
'examples': [{'value': '1.2 mg/kg'}],
|
|
11595
12106
|
'see_also': ['https://www.ornl.gov/content/bio-scales-0']} })
|
|
@@ -11599,11 +12110,12 @@ class Biosample(Sample):
|
|
|
11599
12110
|
'value': 'measurement value'},
|
|
11600
12111
|
'occurrence': {'tag': 'occurrence', 'value': '1'},
|
|
11601
12112
|
'preferred_unit': {'tag': 'preferred_unit',
|
|
11602
|
-
'value': 'ppm CaCO3/pH'}
|
|
12113
|
+
'value': 'ppm CaCO3/pH'},
|
|
12114
|
+
'storage_units': {'tag': 'storage_units', 'value': '[ppm]'}},
|
|
11603
12115
|
'comments': ['This is the mass of lime, in mg, needed to raise the pH of one '
|
|
11604
12116
|
'kg of soil by one pH unit'],
|
|
11605
12117
|
'domain_of': ['Biosample'],
|
|
11606
|
-
'examples': [{'value': '543
|
|
12118
|
+
'examples': [{'value': '543 [ppm]'}],
|
|
11607
12119
|
'see_also': ['https://www.ornl.gov/content/bio-scales-0',
|
|
11608
12120
|
'https://secure.caes.uga.edu/extension/publications/files/pdf/C%20874_5.PDF']} })
|
|
11609
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',
|
|
@@ -11612,11 +12124,12 @@ class Biosample(Sample):
|
|
|
11612
12124
|
'value': 'measurement value'},
|
|
11613
12125
|
'occurrence': {'tag': 'occurrence', 'value': '1'},
|
|
11614
12126
|
'preferred_unit': {'tag': 'preferred_unit',
|
|
11615
|
-
'value': 'ppm CaCO3/pH'}
|
|
12127
|
+
'value': 'ppm CaCO3/pH'},
|
|
12128
|
+
'storage_units': {'tag': 'storage_units', 'value': '[ppm]'}},
|
|
11616
12129
|
'comments': ['This is the mass of lime, in mg, needed to raise the pH of one '
|
|
11617
12130
|
'kg of soil by one pH unit'],
|
|
11618
12131
|
'domain_of': ['Biosample'],
|
|
11619
|
-
'examples': [{'value': '1575
|
|
12132
|
+
'examples': [{'value': '1575 [ppm]'}],
|
|
11620
12133
|
'see_also': ['https://www.ornl.gov/content/bio-scales-0']} })
|
|
11621
12134
|
id: str = Field(default=..., description="""An NMDC assigned unique identifier for a biosample submitted to NMDC.""", json_schema_extra = { "linkml_meta": {'alias': 'id',
|
|
11622
12135
|
'domain_of': ['NamedThing'],
|
|
@@ -11852,7 +12365,10 @@ class ProcessedSample(Sample):
|
|
|
11852
12365
|
'syntax': '{id_nmdc_prefix}:procsm-{id_shoulder}-{id_blade}$'}}},
|
|
11853
12366
|
'title': 'Processed Sample'})
|
|
11854
12367
|
|
|
11855
|
-
biomaterial_purity: Optional[QuantityValue] = Field(default=None, json_schema_extra = { "linkml_meta": {'alias': 'biomaterial_purity',
|
|
12368
|
+
biomaterial_purity: Optional[QuantityValue] = Field(default=None, json_schema_extra = { "linkml_meta": {'alias': 'biomaterial_purity',
|
|
12369
|
+
'annotations': {'units_alignment_excuse': {'tag': 'units_alignment_excuse',
|
|
12370
|
+
'value': 'pending_analysis'}},
|
|
12371
|
+
'domain_of': ['ProcessedSample']} })
|
|
11856
12372
|
dna_absorb1: Optional[float] = Field(default=None, title="DNA absorbance 260/280", description="""260/280 measurement of DNA sample purity""", json_schema_extra = { "linkml_meta": {'alias': 'dna_absorb1',
|
|
11857
12373
|
'comments': ['Recommended value is between 1 and 3.'],
|
|
11858
12374
|
'domain_of': ['ProcessedSample'],
|
|
@@ -12248,7 +12764,7 @@ class FieldResearchSite(Site):
|
|
|
12248
12764
|
|
|
12249
12765
|
class Instrument(MaterialEntity):
|
|
12250
12766
|
"""
|
|
12251
|
-
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.
|
|
12252
12768
|
"""
|
|
12253
12769
|
linkml_meta: ClassVar[LinkMLMeta] = LinkMLMeta({'aliases': ['device'],
|
|
12254
12770
|
'class_uri': 'nmdc:Instrument',
|
|
@@ -12257,7 +12773,11 @@ class Instrument(MaterialEntity):
|
|
|
12257
12773
|
'slot_usage': {'id': {'name': 'id',
|
|
12258
12774
|
'pattern': '^(nmdc):inst-([0-9][a-z]{0,6}[0-9])-([A-Za-z0-9]{1,})$',
|
|
12259
12775
|
'structured_pattern': {'interpolated': True,
|
|
12260
|
-
'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']}}})
|
|
12261
12781
|
|
|
12262
12782
|
vendor: Optional[InstrumentVendorEnum] = Field(default=None, json_schema_extra = { "linkml_meta": {'alias': 'vendor', 'domain_of': ['Instrument']} })
|
|
12263
12783
|
model: Optional[InstrumentModelEnum] = Field(default=None, json_schema_extra = { "linkml_meta": {'alias': 'model', 'domain_of': ['Instrument']} })
|
|
@@ -12646,6 +13166,7 @@ class StorageProcess(PlannedProcess):
|
|
|
12646
13166
|
{'value': 'falcon tube'},
|
|
12647
13167
|
{'value': 'whirlpak'}]} })
|
|
12648
13168
|
temperature: Optional[QuantityValue] = Field(default=None, description="""The value of a temperature measurement or temperature used in a process.""", json_schema_extra = { "linkml_meta": {'alias': 'temperature',
|
|
13169
|
+
'annotations': {'storage_units': {'tag': 'storage_units', 'value': 'Cel'}},
|
|
12649
13170
|
'contributors': ['ORCID:0009-0001-1555-1601', 'ORCID:0000-0002-8683-0050'],
|
|
12650
13171
|
'domain_of': ['ChromatographyConfiguration',
|
|
12651
13172
|
'Extraction',
|
|
@@ -13178,10 +13699,12 @@ class Extraction(MaterialProcessing):
|
|
|
13178
13699
|
'rank': 1000} })
|
|
13179
13700
|
input_mass: Optional[QuantityValue] = Field(default=None, title="sample mass used", description="""Total mass of sample used in activity.""", json_schema_extra = { "linkml_meta": {'alias': 'input_mass',
|
|
13180
13701
|
'aliases': ['sample mass', 'sample weight'],
|
|
13702
|
+
'annotations': {'storage_units': {'tag': 'storage_units', 'value': 'g'}},
|
|
13181
13703
|
'domain_of': ['Extraction'],
|
|
13182
13704
|
'exact_mappings': ['MS:1000004'],
|
|
13183
13705
|
'narrow_mappings': ['MIXS:0000111']} })
|
|
13184
13706
|
volume: Optional[QuantityValue] = Field(default=None, description="""The volume of the solvent/solute being used, not the input.""", json_schema_extra = { "linkml_meta": {'alias': 'volume',
|
|
13707
|
+
'annotations': {'storage_units': {'tag': 'storage_units', 'value': 'mL|uL'}},
|
|
13185
13708
|
'contributors': ['ORCID:0009-0001-1555-1601', 'ORCID:0000-0002-8683-0050'],
|
|
13186
13709
|
'domain_of': ['Extraction',
|
|
13187
13710
|
'SubSamplingProcess',
|
|
@@ -13189,6 +13712,7 @@ class Extraction(MaterialProcessing):
|
|
|
13189
13712
|
'MobilePhaseSegment',
|
|
13190
13713
|
'PortionOfSubstance']} })
|
|
13191
13714
|
temperature: Optional[QuantityValue] = Field(default=None, description="""The value of a temperature measurement or temperature used in a process.""", json_schema_extra = { "linkml_meta": {'alias': 'temperature',
|
|
13715
|
+
'annotations': {'storage_units': {'tag': 'storage_units', 'value': 'Cel'}},
|
|
13192
13716
|
'contributors': ['ORCID:0009-0001-1555-1601', 'ORCID:0000-0002-8683-0050'],
|
|
13193
13717
|
'domain_of': ['ChromatographyConfiguration',
|
|
13194
13718
|
'Extraction',
|
|
@@ -13641,6 +14165,8 @@ class SubSamplingProcess(MaterialProcessing):
|
|
|
13641
14165
|
'name': 'volume'}}})
|
|
13642
14166
|
|
|
13643
14167
|
container_size: Optional[QuantityValue] = Field(default=None, description="""The volume of the container an analyte is stored in or an activity takes place in""", json_schema_extra = { "linkml_meta": {'alias': 'container_size',
|
|
14168
|
+
'annotations': {'units_alignment_excuse': {'tag': 'units_alignment_excuse',
|
|
14169
|
+
'value': 'pending_analysis'}},
|
|
13644
14170
|
'contributors': ['ORCID:0009-0001-1555-1601', 'ORCID:0000-0002-8683-0050'],
|
|
13645
14171
|
'domain_of': ['SubSamplingProcess', 'FiltrationProcess']} })
|
|
13646
14172
|
contained_in: Optional[ContainerCategoryEnum] = Field(default=None, description="""A type of container.""", json_schema_extra = { "linkml_meta": {'alias': 'contained_in',
|
|
@@ -13649,6 +14175,7 @@ class SubSamplingProcess(MaterialProcessing):
|
|
|
13649
14175
|
{'value': 'falcon tube'},
|
|
13650
14176
|
{'value': 'whirlpak'}]} })
|
|
13651
14177
|
temperature: Optional[QuantityValue] = Field(default=None, description="""The value of a temperature measurement or temperature used in a process.""", json_schema_extra = { "linkml_meta": {'alias': 'temperature',
|
|
14178
|
+
'annotations': {'storage_units': {'tag': 'storage_units', 'value': 'Cel'}},
|
|
13652
14179
|
'contributors': ['ORCID:0009-0001-1555-1601', 'ORCID:0000-0002-8683-0050'],
|
|
13653
14180
|
'domain_of': ['ChromatographyConfiguration',
|
|
13654
14181
|
'Extraction',
|
|
@@ -13659,6 +14186,7 @@ class SubSamplingProcess(MaterialProcessing):
|
|
|
13659
14186
|
'ChemicalConversionProcess'],
|
|
13660
14187
|
'notes': ['Not to be confused with the MIXS:0000113']} })
|
|
13661
14188
|
volume: Optional[QuantityValue] = Field(default=None, description="""The output volume of the SubSampling Process.""", json_schema_extra = { "linkml_meta": {'alias': 'volume',
|
|
14189
|
+
'annotations': {'storage_units': {'tag': 'storage_units', 'value': 'mL|uL'}},
|
|
13662
14190
|
'contributors': ['ORCID:0009-0001-1555-1601', 'ORCID:0000-0002-8683-0050'],
|
|
13663
14191
|
'domain_of': ['Extraction',
|
|
13664
14192
|
'SubSamplingProcess',
|
|
@@ -13666,6 +14194,7 @@ class SubSamplingProcess(MaterialProcessing):
|
|
|
13666
14194
|
'MobilePhaseSegment',
|
|
13667
14195
|
'PortionOfSubstance']} })
|
|
13668
14196
|
mass: Optional[QuantityValue] = Field(default=None, title="mass", description="""The output mass of the SubSampling Process.""", json_schema_extra = { "linkml_meta": {'alias': 'mass',
|
|
14197
|
+
'annotations': {'storage_units': {'tag': 'storage_units', 'value': 'g'}},
|
|
13669
14198
|
'domain_of': ['SubSamplingProcess', 'PortionOfSubstance'],
|
|
13670
14199
|
'exact_mappings': ['PATO:0000125']} })
|
|
13671
14200
|
sampled_portion: Optional[list[SamplePortionEnum]] = Field(default=None, description="""The portion of the sample that is taken for downstream activity.""", json_schema_extra = { "linkml_meta": {'alias': 'sampled_portion',
|
|
@@ -13856,6 +14385,7 @@ class MixingProcess(MaterialProcessing):
|
|
|
13856
14385
|
'structured_pattern': {'syntax': '{id_nmdc_prefix}:mixpro-{id_shoulder}-{id_blade}$'}}}})
|
|
13857
14386
|
|
|
13858
14387
|
duration: Optional[QuantityValue] = Field(default=None, description="""The elapsed time of an activity.""", json_schema_extra = { "linkml_meta": {'alias': 'duration',
|
|
14388
|
+
'annotations': {'storage_units': {'tag': 'storage_units', 'value': 'h|min'}},
|
|
13859
14389
|
'domain_of': ['MixingProcess',
|
|
13860
14390
|
'DissolvingProcess',
|
|
13861
14391
|
'ChemicalConversionProcess',
|
|
@@ -14045,6 +14575,8 @@ class FiltrationProcess(MaterialProcessing):
|
|
|
14045
14575
|
'domain_of': ['FiltrationProcess'],
|
|
14046
14576
|
'list_elements_ordered': True} })
|
|
14047
14577
|
container_size: Optional[QuantityValue] = Field(default=None, description="""The volume of the container an analyte is stored in or an activity takes place in""", json_schema_extra = { "linkml_meta": {'alias': 'container_size',
|
|
14578
|
+
'annotations': {'units_alignment_excuse': {'tag': 'units_alignment_excuse',
|
|
14579
|
+
'value': 'pending_analysis'}},
|
|
14048
14580
|
'contributors': ['ORCID:0009-0001-1555-1601', 'ORCID:0000-0002-8683-0050'],
|
|
14049
14581
|
'domain_of': ['SubSamplingProcess', 'FiltrationProcess']} })
|
|
14050
14582
|
filter_material: Optional[str] = Field(default=None, description="""A porous material on which solid particles present in air or other fluid which flows through it are largely caught and retained.""", json_schema_extra = { "linkml_meta": {'alias': 'filter_material',
|
|
@@ -14059,11 +14591,15 @@ class FiltrationProcess(MaterialProcessing):
|
|
|
14059
14591
|
'commonly and several pore sizes are available for air sampling '
|
|
14060
14592
|
'(0.45−0.8 μm are commonly employed).'],
|
|
14061
14593
|
'domain_of': ['FiltrationProcess']} })
|
|
14062
|
-
filter_pore_size: Optional[QuantityValue] = Field(default=None, description="""A quantitative or qualitative measurement of the physical dimensions of the pores in a material.""", json_schema_extra = { "linkml_meta": {'alias': 'filter_pore_size',
|
|
14594
|
+
filter_pore_size: Optional[QuantityValue] = Field(default=None, description="""A quantitative or qualitative measurement of the physical dimensions of the pores in a material.""", json_schema_extra = { "linkml_meta": {'alias': 'filter_pore_size',
|
|
14595
|
+
'annotations': {'units_alignment_excuse': {'tag': 'units_alignment_excuse',
|
|
14596
|
+
'value': 'pending_analysis'}},
|
|
14597
|
+
'domain_of': ['FiltrationProcess']} })
|
|
14063
14598
|
filtration_category: Optional[str] = Field(default=None, description="""The type of conditioning applied to a filter, device, etc.""", json_schema_extra = { "linkml_meta": {'alias': 'filtration_category', 'domain_of': ['FiltrationProcess']} })
|
|
14064
14599
|
is_pressurized: Optional[bool] = Field(default=None, description="""Whether or not pressure was applied to a thing or process.""", json_schema_extra = { "linkml_meta": {'alias': 'is_pressurized', 'domain_of': ['FiltrationProcess']} })
|
|
14065
14600
|
separation_method: Optional[SeparationMethodEnum] = Field(default=None, description="""The method that was used to separate a substance from a solution or mixture.""", json_schema_extra = { "linkml_meta": {'alias': 'separation_method', 'domain_of': ['FiltrationProcess']} })
|
|
14066
14601
|
volume: Optional[QuantityValue] = Field(default=None, description="""The volume of sample filtered.""", json_schema_extra = { "linkml_meta": {'alias': 'volume',
|
|
14602
|
+
'annotations': {'storage_units': {'tag': 'storage_units', 'value': 'mL|uL'}},
|
|
14067
14603
|
'contributors': ['ORCID:0009-0001-1555-1601', 'ORCID:0000-0002-8683-0050'],
|
|
14068
14604
|
'domain_of': ['Extraction',
|
|
14069
14605
|
'SubSamplingProcess',
|
|
@@ -14255,6 +14791,7 @@ class ChromatographicSeparationProcess(MaterialProcessing):
|
|
|
14255
14791
|
'domain_of': ['ChromatographyConfiguration',
|
|
14256
14792
|
'ChromatographicSeparationProcess']} })
|
|
14257
14793
|
temperature: Optional[QuantityValue] = Field(default=None, description="""The value of a temperature measurement or temperature used in a process.""", json_schema_extra = { "linkml_meta": {'alias': 'temperature',
|
|
14794
|
+
'annotations': {'storage_units': {'tag': 'storage_units', 'value': 'Cel'}},
|
|
14258
14795
|
'contributors': ['ORCID:0009-0001-1555-1601', 'ORCID:0000-0002-8683-0050'],
|
|
14259
14796
|
'domain_of': ['ChromatographyConfiguration',
|
|
14260
14797
|
'Extraction',
|
|
@@ -14432,12 +14969,14 @@ class DissolvingProcess(MaterialProcessing):
|
|
|
14432
14969
|
'syntax': '{id_nmdc_prefix}:dispro-{id_shoulder}-{id_blade}$'}}}})
|
|
14433
14970
|
|
|
14434
14971
|
duration: Optional[QuantityValue] = Field(default=None, description="""The elapsed time of an activity.""", json_schema_extra = { "linkml_meta": {'alias': 'duration',
|
|
14972
|
+
'annotations': {'storage_units': {'tag': 'storage_units', 'value': 'h|min'}},
|
|
14435
14973
|
'domain_of': ['MixingProcess',
|
|
14436
14974
|
'DissolvingProcess',
|
|
14437
14975
|
'ChemicalConversionProcess',
|
|
14438
14976
|
'MobilePhaseSegment'],
|
|
14439
14977
|
'examples': [{'value': "JsonObj(has_numeric_value=2, has_unit='h')"}]} })
|
|
14440
14978
|
temperature: Optional[QuantityValue] = Field(default=None, description="""The value of a temperature measurement or temperature used in a process.""", json_schema_extra = { "linkml_meta": {'alias': 'temperature',
|
|
14979
|
+
'annotations': {'storage_units': {'tag': 'storage_units', 'value': 'Cel'}},
|
|
14441
14980
|
'contributors': ['ORCID:0009-0001-1555-1601', 'ORCID:0000-0002-8683-0050'],
|
|
14442
14981
|
'domain_of': ['ChromatographyConfiguration',
|
|
14443
14982
|
'Extraction',
|
|
@@ -14626,12 +15165,14 @@ class ChemicalConversionProcess(MaterialProcessing):
|
|
|
14626
15165
|
chemical_conversion_category: Optional[ChemicalConversionCategoryEnum] = Field(default=None, description="""The type of chemical conversion process.""", json_schema_extra = { "linkml_meta": {'alias': 'chemical_conversion_category',
|
|
14627
15166
|
'domain_of': ['ChemicalConversionProcess']} })
|
|
14628
15167
|
duration: Optional[QuantityValue] = Field(default=None, description="""The elapsed time of an activity.""", json_schema_extra = { "linkml_meta": {'alias': 'duration',
|
|
15168
|
+
'annotations': {'storage_units': {'tag': 'storage_units', 'value': 'h|min'}},
|
|
14629
15169
|
'domain_of': ['MixingProcess',
|
|
14630
15170
|
'DissolvingProcess',
|
|
14631
15171
|
'ChemicalConversionProcess',
|
|
14632
15172
|
'MobilePhaseSegment'],
|
|
14633
15173
|
'examples': [{'value': "JsonObj(has_numeric_value=2, has_unit='h')"}]} })
|
|
14634
15174
|
temperature: Optional[QuantityValue] = Field(default=None, description="""The value of a temperature measurement or temperature used in a process.""", json_schema_extra = { "linkml_meta": {'alias': 'temperature',
|
|
15175
|
+
'annotations': {'storage_units': {'tag': 'storage_units', 'value': 'Cel'}},
|
|
14635
15176
|
'contributors': ['ORCID:0009-0001-1555-1601', 'ORCID:0000-0002-8683-0050'],
|
|
14636
15177
|
'domain_of': ['ChromatographyConfiguration',
|
|
14637
15178
|
'Extraction',
|
|
@@ -14647,7 +15188,10 @@ class ChemicalConversionProcess(MaterialProcessing):
|
|
|
14647
15188
|
'DissolvingProcess',
|
|
14648
15189
|
'ChemicalConversionProcess',
|
|
14649
15190
|
'MobilePhaseSegment']} })
|
|
14650
|
-
substances_volume: Optional[QuantityValue] = Field(default=None, description="""The volume of the combined substances that was included in a ChemicalConversionProcess.""", json_schema_extra = { "linkml_meta": {'alias': 'substances_volume',
|
|
15191
|
+
substances_volume: Optional[QuantityValue] = Field(default=None, description="""The volume of the combined substances that was included in a ChemicalConversionProcess.""", json_schema_extra = { "linkml_meta": {'alias': 'substances_volume',
|
|
15192
|
+
'annotations': {'units_alignment_excuse': {'tag': 'units_alignment_excuse',
|
|
15193
|
+
'value': 'pending_analysis'}},
|
|
15194
|
+
'domain_of': ['ChemicalConversionProcess']} })
|
|
14651
15195
|
instrument_used: Optional[list[str]] = Field(default=None, description="""What instrument was used during DataGeneration or MaterialProcessing.""", json_schema_extra = { "linkml_meta": {'alias': 'instrument_used',
|
|
14652
15196
|
'domain_of': ['MaterialProcessing', 'DataGeneration'],
|
|
14653
15197
|
'structured_pattern': {'interpolated': True,
|
|
@@ -14837,6 +15381,15 @@ class Protocol(ConfiguredBaseModel):
|
|
|
14837
15381
|
description: Optional[str] = Field(default=None, description="""a human-readable description of a thing""", json_schema_extra = { "linkml_meta": {'alias': 'description',
|
|
14838
15382
|
'domain_of': ['ImageValue', 'NamedThing', 'Protocol'],
|
|
14839
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'} })
|
|
14840
15393
|
|
|
14841
15394
|
|
|
14842
15395
|
class CreditAssociation(ConfiguredBaseModel):
|
|
@@ -15910,6 +16463,7 @@ class ChromatographyConfiguration(Configuration):
|
|
|
15910
16463
|
'domain_of': ['ChromatographyConfiguration',
|
|
15911
16464
|
'ChromatographicSeparationProcess']} })
|
|
15912
16465
|
temperature: Optional[QuantityValue] = Field(default=None, description="""The value of a temperature measurement or temperature used in a process.""", json_schema_extra = { "linkml_meta": {'alias': 'temperature',
|
|
16466
|
+
'annotations': {'storage_units': {'tag': 'storage_units', 'value': 'Cel'}},
|
|
15913
16467
|
'contributors': ['ORCID:0009-0001-1555-1601', 'ORCID:0000-0002-8683-0050'],
|
|
15914
16468
|
'domain_of': ['ChromatographyConfiguration',
|
|
15915
16469
|
'Extraction',
|
|
@@ -20681,6 +21235,7 @@ TimestampValue.model_rebuild()
|
|
|
20681
21235
|
ControlledTermValue.model_rebuild()
|
|
20682
21236
|
ControlledIdentifiedTermValue.model_rebuild()
|
|
20683
21237
|
GeolocationValue.model_rebuild()
|
|
21238
|
+
PropertyAssertion.model_rebuild()
|
|
20684
21239
|
NamedThing.model_rebuild()
|
|
20685
21240
|
GeneProduct.model_rebuild()
|
|
20686
21241
|
OntologyClass.model_rebuild()
|