From 6dcf90bf7459b4dcd076c45c3587b7bc5d3db351 Mon Sep 17 00:00:00 2001 From: Alejandro Salgado Date: Mon, 7 Oct 2024 15:18:23 -0500 Subject: [PATCH 01/19] add electrophoresis rec 09/24 schema mapper --- .../rec/_2024/_09/electrophoresis.py | 376 ++++++++++++++++++ 1 file changed, 376 insertions(+) create mode 100644 src/allotropy/allotrope/schema_mappers/adm/electrophoresis/rec/_2024/_09/electrophoresis.py diff --git a/src/allotropy/allotrope/schema_mappers/adm/electrophoresis/rec/_2024/_09/electrophoresis.py b/src/allotropy/allotrope/schema_mappers/adm/electrophoresis/rec/_2024/_09/electrophoresis.py new file mode 100644 index 000000000..b7a1d4350 --- /dev/null +++ b/src/allotropy/allotrope/schema_mappers/adm/electrophoresis/rec/_2024/_09/electrophoresis.py @@ -0,0 +1,376 @@ +from dataclasses import dataclass +from typing import Any + +from allotropy.allotrope.converter import add_custom_information_document +from allotropy.allotrope.models.adm.electrophoresis.rec._2024._09.electrophoresis import ( + CalculatedDataAggregateDocument, + CalculatedDataDocumentItem, + DataRegionAggregateDocument, + DataRegionDocumentItem, + DataSourceAggregateDocument, + DataSourceDocumentItem, + DataSystemDocument, + DeviceControlAggregateDocument, + DeviceControlDocumentItem, + DeviceSystemDocument, + ElectrophoresisAggregateDocument, + ElectrophoresisDocumentItem, + ErrorAggregateDocument, + ErrorDocumentItem, + MeasurementAggregateDocument, + MeasurementDocument, + Model, + Peak, + PeakList, + ProcessedDataAggregateDocument, + ProcessedDataDocumentItem, + SampleDocument, +) +from allotropy.allotrope.models.shared.definitions.custom import ( + TQuantityValueDegreeCelsius, + TQuantityValuePercent, + TQuantityValueRelativeFluorescenceUnit, + TQuantityValueUnitless, +) +from allotropy.allotrope.models.shared.definitions.definitions import ( + JsonFloat, + TQuantityValue, +) +from allotropy.allotrope.schema_mappers.schema_mapper import SchemaMapper +from allotropy.constants import ASM_CONVERTER_VERSION +from allotropy.parsers.utils.values import ( + quantity_or_none, + quantity_or_none_from_unit, +) + + +@dataclass(frozen=True) +class ProcessedDataFeature: + identifier: str + start: JsonFloat + start_unit: str + end: JsonFloat + end_unit: str + area: JsonFloat + relative_area: JsonFloat + position: JsonFloat | None = None + position_unit: str | None = None + height: JsonFloat | None = None + relative_corrected_area: JsonFloat | None = None + name: str | None = None + comment: str | None = None + + +@dataclass(frozen=True) +class ProcessedData: + peaks: list[ProcessedDataFeature] + data_regions: list[ProcessedDataFeature] + + +@dataclass(frozen=True) +class DataSource: + identifier: str + feature: str + + +@dataclass(frozen=True) +class CalculatedDataItem: + identifier: str + name: str + value: float + unit: str + data_sources: list[DataSource] + + +@dataclass(frozen=True) +class Error: + error: str + feature: str | None = None + + +@dataclass(frozen=True) +class Measurement: + # Measurement metadata + identifier: str + measurement_time: str + sample_identifier: str + + # Processed data + processed_data: ProcessedData + + # Optional metadata + description: str | None = None + location_identifier: str | None = None + + # Optional settings + compartment_temperature: float | None = None + + # Optional processed data + calculated_data: list[CalculatedDataItem] | None = None + + # Errors + errors: list[Error] | None = None + + +@dataclass(frozen=True) +class MeasurementGroup: + measurements: list[Measurement] + + +@dataclass(frozen=True) +class Metadata: + device_type: str + data_system_instance_identifier: str + analyst: str + file_identifier: str + + device_identifier: str | None = None + model_number: str | None = None + software_name: str | None = None + detection_type: str | None = None + unc_path: str | None = None + software_version: str | None = None + equipment_serial_number: str | None = None + product_manufacturer: str | None = None + brand_name: str | None = None + + file_name: str | None = None + + measurement_time: str | None = None + analytical_method_identifier: str | None = None + method_version: str | None = None + experimental_data_identifier: str | None = None + + +@dataclass(frozen=True) +class Data: + metadata: Metadata + measurement_groups: list[MeasurementGroup] + calculated_data: list[CalculatedDataItem] | None = None + + +class Mapper(SchemaMapper[Data, Model]): + MANIFEST = "http://purl.allotrope.org/manifests/electrophoresis/REC/2024/09/electrophoresis.manifest" + + def map_model(self, data: Data) -> Model: + return Model( + electrophoresis_aggregate_document=ElectrophoresisAggregateDocument( + device_system_document=DeviceSystemDocument( + brand_name=data.metadata.brand_name, + product_manufacturer=data.metadata.product_manufacturer, + device_identifier=data.metadata.device_identifier, + equipment_serial_number=data.metadata.equipment_serial_number, + ), + data_system_document=DataSystemDocument( + data_system_instance_identifier=data.metadata.data_system_instance_identifier, + file_name=data.metadata.file_name, + software_name=data.metadata.software_name, + software_version=data.metadata.software_version, + ASM_converter_name=self.converter_name, + ASM_converter_version=ASM_CONVERTER_VERSION, + ASM_file_identifier=data.metadata.file_identifier, + ), + electrophoresis_document=[ + add_custom_information_document( + self._get_technique_document(measurement_group, data.metadata), + self._get_technique_doc_custom_document(data.metadata), + ) + for measurement_group in data.measurement_groups + ], + calculated_data_aggregate_document=self._get_calculated_data_aggregate_document( + data.calculated_data + ), + ), + field_asm_manifest=self.MANIFEST, + ) + + def _get_technique_doc_custom_document(self, metadata: Metadata) -> dict[str, Any]: + # TODO(ASM gaps): we believe these values should be introduced to ASM. + return { + "analytical method identifier": metadata.analytical_method_identifier, + "method version": metadata.method_version, + "experimental data identifier": metadata.experimental_data_identifier, + } + + def _get_technique_document( + self, measurement_group: MeasurementGroup, metadata: Metadata + ) -> ElectrophoresisDocumentItem: + return ElectrophoresisDocumentItem( + analyst=metadata.analyst, + measurement_aggregate_document=MeasurementAggregateDocument( + measurement_document=[ + add_custom_information_document( + self._get_measurement_document_item(measurement, metadata), + self._get_measurement_custom_document(measurement), + ) + for measurement in measurement_group.measurements + ], + ), + ) + + def _get_measurement_custom_document( + self, measurement: Measurement + ) -> dict[str, Any]: + # TODO(ASM gaps): we believe these values should be introduced to ASM. + return { + "compartment temperature": quantity_or_none( + TQuantityValueDegreeCelsius, + measurement.compartment_temperature, + ), + } + + def _get_measurement_document_item( + self, measurement: Measurement, metadata: Metadata + ) -> MeasurementDocument: + return MeasurementDocument( + measurement_identifier=measurement.identifier, + measurement_time=self.get_date_time(measurement.measurement_time), + device_control_aggregate_document=DeviceControlAggregateDocument( + device_control_document=[ + DeviceControlDocumentItem( + device_identifier=metadata.device_identifier, + device_type=metadata.device_type, + detection_type=metadata.detection_type, + ), + ] + ), + sample_document=add_custom_information_document( + self._get_sample_document(measurement), + self._get_measurement_custom_document(measurement), + ), + error_aggregate_document=self._get_error_aggregate_document( + measurement.errors + ), + processed_data_aggregate_document=self._get_processed_data_aggregate_document( + measurement.processed_data + ), + calculated_data_aggregate_document=self._get_calculated_data_aggregate_document( + measurement.calculated_data + ), + ) + + def _get_sample_document(self, measurement: Measurement) -> SampleDocument: + return SampleDocument( + sample_identifier=measurement.sample_identifier, + description=measurement.description, + ) + + def _get_sample_custom_document(self, measurement: Measurement) -> dict[str, Any]: + # TODO(ASM gaps): we believe these values should be introduced to ASM. + return { + "location identifier": measurement.location_identifier, + } + + def _get_processed_data_aggregate_document( + self, data: ProcessedData + ) -> ProcessedDataAggregateDocument: + return ProcessedDataAggregateDocument( + processed_data_document=[ + ProcessedDataDocumentItem( + peak_list=PeakList( + peak=[self._get_peak(peak) for peak in data.peaks] + ), + data_region_aggregate_document=DataRegionAggregateDocument( + data_region_document=[ + self._get_data_region_agg_document(data_region) + for data_region in data.data_regions + ] + ) + if data.data_regions + else None, + ) + ] + ) + + def _get_peak(self, peak: ProcessedDataFeature) -> Peak: + return Peak( + identifier=peak.identifier, + peak_height=quantity_or_none( + TQuantityValueRelativeFluorescenceUnit, peak.height + ), + # TODO(nstender): figure out how to limit possible classes from get_quantity_class for typing. + peak_start=quantity_or_none_from_unit(peak.start_unit, peak.start), # type: ignore[arg-type] + peak_end=quantity_or_none_from_unit(peak.end_unit, peak.end), # type: ignore[arg-type] + peak_area=quantity_or_none(TQuantityValueUnitless, peak.area), + relative_peak_area=quantity_or_none( + TQuantityValuePercent, peak.relative_area + ), + ) + + def _get_peak_custom_document(self, peak: ProcessedDataFeature) -> dict[str, Any]: + # TODO(ASM gaps): we believe these values should be introduced to ASM. + return { + "peak name": peak.name, + "peak position": quantity_or_none_from_unit( + peak.position_unit, peak.position + ), + "relative corrected peak area": quantity_or_none( + TQuantityValuePercent, peak.relative_corrected_area + ), + "comment": peak.comment, + } + + def _get_data_region_agg_document( + self, data_region: ProcessedDataFeature + ) -> DataRegionDocumentItem: + return DataRegionDocumentItem( + data_region_identifier=data_region.identifier, + data_region_name=data_region.name, + # TODO(nstender): figure out how to limit possible classes from get_quantity_class for typing. + data_region_start=quantity_or_none_from_unit(data_region.start_unit, data_region.start), # type: ignore[arg-type] + data_region_end=quantity_or_none_from_unit(data_region.end_unit, data_region.end), # type: ignore[arg-type] + data_region_area=TQuantityValueUnitless(value=data_region.area), + relative_data_region_area=TQuantityValuePercent( + value=data_region.relative_area + ), + ) + + def _get_data_region_agg_custom_document( + self, data_region: ProcessedDataFeature + ) -> dict[str, Any]: + # TODO(ASM gaps): we believe these values should be introduced to ASM. + return { + "comment": data_region.comment, + } + + def _get_calculated_data_aggregate_document( + self, calculated_data_items: list[CalculatedDataItem] | None + ) -> CalculatedDataAggregateDocument | None: + if not calculated_data_items: + return None + + return CalculatedDataAggregateDocument( + calculated_data_document=[ + CalculatedDataDocumentItem( + calculated_data_identifier=calculated_data_item.identifier, + calculated_data_name=calculated_data_item.name, + calculated_result=TQuantityValue( + value=calculated_data_item.value, + unit=calculated_data_item.unit, + ), + data_source_aggregate_document=DataSourceAggregateDocument( + data_source_document=[ + DataSourceDocumentItem( + data_source_identifier=item.identifier, + data_source_feature=item.feature, + ) + for item in calculated_data_item.data_sources + ] + ), + ) + for calculated_data_item in calculated_data_items + ] + ) + + def _get_error_aggregate_document( + self, errors: list[Error] | None + ) -> ErrorAggregateDocument | None: + if not errors: + return None + + return ErrorAggregateDocument( + error_document=[ + ErrorDocumentItem(error=error.error, error_feature=error.feature) + for error in errors + ] + ) From 1741bc09489e52678891df48b5c53b399cb56d4a Mon Sep 17 00:00:00 2001 From: Alejandro Salgado Date: Mon, 7 Oct 2024 16:31:15 -0500 Subject: [PATCH 02/19] use rec 09/24 in tapestation parser --- .../agilent_tapestation_analysis_parser.py | 4 +- .../agilent_tapestation_analysis_structure.py | 43 ++++++++++++------- src/allotropy/parsers/utils/xml.py | 12 +++++- ...ent_tapestation_analysis_structure_test.py | 3 +- 4 files changed, 43 insertions(+), 19 deletions(-) diff --git a/src/allotropy/parsers/agilent_tapestation_analysis/agilent_tapestation_analysis_parser.py b/src/allotropy/parsers/agilent_tapestation_analysis/agilent_tapestation_analysis_parser.py index 23c3420e0..d1384976e 100644 --- a/src/allotropy/parsers/agilent_tapestation_analysis/agilent_tapestation_analysis_parser.py +++ b/src/allotropy/parsers/agilent_tapestation_analysis/agilent_tapestation_analysis_parser.py @@ -1,9 +1,9 @@ from xml.etree import ElementTree as ET # noqa: N817 -from allotropy.allotrope.models.adm.electrophoresis.benchling._2024._06.electrophoresis import ( +from allotropy.allotrope.models.adm.electrophoresis.rec._2024._09.electrophoresis import ( Model, ) -from allotropy.allotrope.schema_mappers.adm.electrophoresis.benchling._2024._06.electrophoresis import ( +from allotropy.allotrope.schema_mappers.adm.electrophoresis.rec._2024._09.electrophoresis import ( Data, Mapper, ) diff --git a/src/allotropy/parsers/agilent_tapestation_analysis/agilent_tapestation_analysis_structure.py b/src/allotropy/parsers/agilent_tapestation_analysis/agilent_tapestation_analysis_structure.py index e4d05a84c..1f1b4c0c5 100644 --- a/src/allotropy/parsers/agilent_tapestation_analysis/agilent_tapestation_analysis_structure.py +++ b/src/allotropy/parsers/agilent_tapestation_analysis/agilent_tapestation_analysis_structure.py @@ -1,9 +1,10 @@ from __future__ import annotations +from os.path import splitext from xml.etree import ElementTree as ET # noqa: N817 from allotropy.allotrope.models.shared.definitions.units import UNITLESS -from allotropy.allotrope.schema_mappers.adm.electrophoresis.benchling._2024._06.electrophoresis import ( +from allotropy.allotrope.schema_mappers.adm.electrophoresis.rec._2024._09.electrophoresis import ( CalculatedDataItem, DataSource, Error, @@ -29,6 +30,7 @@ SOFTWARE_NAME, UNIT_CLASS_LOOKUP, ) +from allotropy.parsers.constants import NOT_APPLICABLE from allotropy.parsers.utils.uuids import random_uuid_str from allotropy.parsers.utils.values import try_float_or_none from allotropy.parsers.utils.xml import ( @@ -63,28 +65,30 @@ def _get_calculated_data( def create_metadata(root_element: ET.Element, file_name: str) -> Metadata: + file_identifier, _ = splitext(file_name) file_information = get_element_from_xml(root_element, "FileInformation") environment = get_element_from_xml( root_element, "ScreenTapes/ScreenTape/Environment" ) return Metadata( file_name=file_name, - analyst=get_val_from_xml_or_none(environment, "Experimenter"), - analytical_method_identifier=get_val_from_xml_or_none( + file_identifier=f"{file_identifier}.json", + analyst=get_val_from_xml(environment, "Experimenter"), + analytical_method_identifier=get_val_from_xml_or_none( # stored in custom info, should be part of allotrope file_information, "Assay" ), - data_system_instance_identifier=get_val_from_xml_or_none( - environment, "Computer" - ), + data_system_instance_identifier=get_val_from_xml(environment, "Computer"), device_identifier=get_val_from_xml_or_none(environment, "InstrumentType"), equipment_serial_number=get_val_from_xml_or_none( environment, "InstrumentSerialNumber" ), - experimental_data_identifier=get_val_from_xml_or_none( + experimental_data_identifier=get_val_from_xml_or_none( # stored in custom info, should be part of allotrope file_information, "FileName" ), # If any, only one of those should appear, so we arbitrarily take the first one - method_version=get_val_from_xml_or_none(file_information, "RINeVersion") + method_version=get_val_from_xml_or_none( + file_information, "RINeVersion" + ) # stored in custom info, should be part of allotrope or get_val_from_xml_or_none(file_information, "DINVersion"), software_version=get_val_from_xml_or_none(environment, "AnalysisVersion"), software_name=SOFTWARE_NAME, @@ -92,6 +96,7 @@ def create_metadata(root_element: ET.Element, file_name: str) -> Metadata: product_manufacturer=PRODUCT_MANUFACTURER, device_type=DEVICE_TYPE, detection_type=DETECTION_TYPE, + unc_path=NOT_APPLICABLE, ) @@ -109,15 +114,21 @@ def _create_peak(peak_element: ET.Element, unit: str) -> ProcessedDataFeature: start_unit=unit, end=get_float_from_xml_or_nan(peak_element, "ToMW"), end_unit=unit, - position=get_float_from_xml_or_nan(peak_element, "Size"), + position=get_float_from_xml_or_nan( + peak_element, "Size" + ), # stored in custom info, should be part of allotrope position_unit=unit, area=get_float_from_xml_or_nan(peak_element, "Area"), relative_area=get_float_from_xml_or_nan(peak_element, "PercentOfTotal"), - relative_corrected_area=get_float_from_xml_or_nan( + relative_corrected_area=get_float_from_xml_or_nan( # stored in custom info, should be part of allotrope peak_element, "PercentIntegratedArea" ), - name=get_val_from_xml_or_none(peak_element, "Number"), - comment=_get_description(peak_element), + name=get_val_from_xml_or_none( + peak_element, "Number" + ), # stored in custom info, should be part of allotrope + comment=_get_description( + peak_element + ), # stored in custom info, should be part of allotrope ) @@ -133,7 +144,9 @@ def _create_region( area=get_float_from_xml_or_nan(region_element, "Area"), relative_area=get_float_from_xml_or_nan(region_element, "PercentOfTotal"), name=region_name, - comment=get_val_from_xml_or_none(region_element, "Comment"), + comment=get_val_from_xml_or_none( + region_element, "Comment" + ), # stored in custom info, should be part of allotrope ) @@ -189,10 +202,10 @@ def _create_measurement( measurement = Measurement( identifier=measurement_id, measurement_time=get_val_from_xml(screen_tape, "TapeRunDate"), - compartment_temperature=get_float_from_xml_or_none( + compartment_temperature=get_float_from_xml_or_none( # stored in custom info, should be part of allotrope screen_tape, "ElectrophoresisTemp" ), - location_identifier=well_number, + location_identifier=well_number, # stored in custom info, should be part of allotrope sample_identifier=f"{get_val_from_xml(sample_element, 'ScreenTapeID')}_{well_number}", description=_get_description(sample_element), processed_data=ProcessedData( diff --git a/src/allotropy/parsers/utils/xml.py b/src/allotropy/parsers/utils/xml.py index 144a0f516..1c07e16dc 100644 --- a/src/allotropy/parsers/utils/xml.py +++ b/src/allotropy/parsers/utils/xml.py @@ -2,7 +2,11 @@ from allotropy.allotrope.models.shared.definitions.definitions import JsonFloat from allotropy.exceptions import AllotropeConversionError -from allotropy.parsers.utils.values import try_float_or_nan, try_float_or_none +from allotropy.parsers.utils.values import ( + assert_not_none, + try_float_or_nan, + try_float_or_none, +) def get_element_from_xml( @@ -52,6 +56,12 @@ def get_float_from_xml_or_none( return try_float_or_none(get_val_from_xml_or_none(xml_object, tag_name, tag_name_2)) +def get_float_from_xml( + xml_object: Element, tag_name: str, tag_name_2: str | None = None +) -> float: + return assert_not_none(get_float_from_xml_or_none(xml_object, tag_name, tag_name_2)) + + def get_attrib_from_xml( xml_object: Element, tag_name: str, diff --git a/tests/parsers/agilent_tapestation_analysis/agilent_tapestation_analysis_structure_test.py b/tests/parsers/agilent_tapestation_analysis/agilent_tapestation_analysis_structure_test.py index 5fd026718..2b92463ae 100644 --- a/tests/parsers/agilent_tapestation_analysis/agilent_tapestation_analysis_structure_test.py +++ b/tests/parsers/agilent_tapestation_analysis/agilent_tapestation_analysis_structure_test.py @@ -4,7 +4,7 @@ import pytest from allotropy.allotrope.models.shared.definitions.definitions import InvalidJsonFloat -from allotropy.allotrope.schema_mappers.adm.electrophoresis.benchling._2024._06.electrophoresis import ( +from allotropy.allotrope.schema_mappers.adm.electrophoresis.rec._2024._09.electrophoresis import ( CalculatedDataItem, DataSource, Measurement, @@ -37,6 +37,7 @@ def test_create_metadata() -> None: metadata = create_metadata(get_metadata_xml(), "file.txt") assert metadata == Metadata( + file_identifier="file.json", file_name="file.txt", analyst="TapeStation User", analytical_method_identifier="cfDNA", From 20c7faf5353f5f827fd03e5e145df64ca1819be8 Mon Sep 17 00:00:00 2001 From: Alejandro Salgado Date: Wed, 9 Oct 2024 15:01:44 -0500 Subject: [PATCH 03/19] add electrophoresis benchling 09/24 schema and model --- .../benchling/_2024/_09/__init__.py | 0 .../benchling/_2024/_09/electrophoresis.py | 498 + .../BENCHLING/2024/09/CHANGE_NOTES.md | 3 + .../2024/09/electrophoresis.schema.json | 13936 ++++++++++++++++ 4 files changed, 14437 insertions(+) create mode 100644 src/allotropy/allotrope/models/adm/electrophoresis/benchling/_2024/_09/__init__.py create mode 100644 src/allotropy/allotrope/models/adm/electrophoresis/benchling/_2024/_09/electrophoresis.py create mode 100644 src/allotropy/allotrope/schemas/adm/electrophoresis/BENCHLING/2024/09/CHANGE_NOTES.md create mode 100644 src/allotropy/allotrope/schemas/adm/electrophoresis/BENCHLING/2024/09/electrophoresis.schema.json diff --git a/src/allotropy/allotrope/models/adm/electrophoresis/benchling/_2024/_09/__init__.py b/src/allotropy/allotrope/models/adm/electrophoresis/benchling/_2024/_09/__init__.py new file mode 100644 index 000000000..e69de29bb diff --git a/src/allotropy/allotrope/models/adm/electrophoresis/benchling/_2024/_09/electrophoresis.py b/src/allotropy/allotrope/models/adm/electrophoresis/benchling/_2024/_09/electrophoresis.py new file mode 100644 index 000000000..bac0b76c1 --- /dev/null +++ b/src/allotropy/allotrope/models/adm/electrophoresis/benchling/_2024/_09/electrophoresis.py @@ -0,0 +1,498 @@ +# generated by datamodel-codegen: +# filename: electrophoresis.schema.json +# timestamp: 2024-10-09T20:03:40+00:00 + +from __future__ import annotations + +from dataclasses import dataclass +from typing import Any + +from allotropy.allotrope.models.shared.definitions.custom import ( + TQuantityValueMilliAbsorbanceUnit, + TQuantityValueMilliAbsorbanceUnitTimesMilliliter, + TQuantityValueMilliAbsorbanceUnitTimesSecond, + TQuantityValueMilliliter, + TQuantityValueNanometer, + TQuantityValueNumber, + TQuantityValuePercent, + TQuantityValueRelativeFluorescenceUnit, + TQuantityValueRelativeFluorescenceUnitTimesMilliliter, + TQuantityValueRelativeFluorescenceUnitTimesSecond, + TQuantityValueSecondTime, + TQuantityValueUnitless, +) +from allotropy.allotrope.models.shared.definitions.definitions import ( + TBooleanValue, + TClass, + TDatacube, + TDatacubeData, + TDatacubeStructure, + TDateTimeStampValue, + TDateTimeValue, + TDoubleValue, + TIntegerValue, + TQuantityValue, + TStringValue, + TUnit, +) + + +@dataclass(kw_only=True) +class AdmCoreREC202409ManifestSchema: + vocabulary: list[str] + json_schemas: list[str] + field_id: str | None = None + field_type: str | None = None + shapes: list[str] | None = None + + +@dataclass(kw_only=True) +class OrderedItem: + field_index: int | None = None + + +@dataclass(kw_only=True) +class CustomInformationDocumentItem: + scalar_double_datum: TDoubleValue | None = None + unit: TUnit | None = None + scalar_string_datum: TStringValue | None = None + scalar_timestamp_datum: TDateTimeValue | None = None + scalar_boolean_datum: TBooleanValue | None = None + datum_label: TStringValue | None = None + + +@dataclass(kw_only=True) +class CustomInformationAggregateDocument: + custom_information_document: list[CustomInformationDocumentItem] + + +@dataclass(kw_only=True) +class DataSourceDocumentItem: + data_source_identifier: TStringValue + data_source_feature: TStringValue | None = None + field_index: int | None = None + + +@dataclass(kw_only=True) +class DataSourceAggregateDocument: + data_source_document: list[DataSourceDocumentItem] + + +@dataclass(kw_only=True) +class ElectronicProjectRecord: + written_name: TStringValue + description: Any | None = None + start_time: TDateTimeValue | None = None + + +@dataclass(kw_only=True) +class ElectronicSignatureDocumentItem: + account_identifier: TStringValue + personal_name: TStringValue + signature_role_type: TStringValue + time: TStringValue + identifier: TStringValue | None = None + measurement_identifier: TStringValue | None = None + method_identifier: TStringValue | None = None + processed_data_identifier: TStringValue | None = None + field_index: int | None = None + + +@dataclass(kw_only=True) +class ElectronicSignatureAggregateDocument: + electronic_signature_document: list[ElectronicSignatureDocumentItem] | None = None + + +@dataclass(kw_only=True) +class ErrorDocumentItem: + error: TStringValue + error_feature: TStringValue | None = None + + +@dataclass(kw_only=True) +class ErrorAggregateDocument: + error_document: list[ErrorDocumentItem] | None = None + + +@dataclass(kw_only=True) +class ImageDocumentItem: + experimental_data_identifier: TStringValue | None = None + index: TIntegerValue | None = None + + +@dataclass(kw_only=True) +class ImageAggregateDocument: + image_document: list[ImageDocumentItem] | None = None + + +@dataclass(kw_only=True) +class ProcessedDataAggregateDocument: + processed_data_document: list[ProcessedDataDocumentItem] + custom_information_aggregate_document: CustomInformationAggregateDocument | None = ( + None + ) + electronic_project_record: ElectronicProjectRecord | None = None + + +@dataclass(kw_only=True) +class StatisticsDocumentItem: + statistical_feature: TClass + + +@dataclass(kw_only=True) +class StatisticsAggregateDocument: + statistics_document: list[StatisticsDocumentItem] | None = None + + +@dataclass(kw_only=True) +class AnalysisSequenceDocument: + written_name: TStringValue + end_time: TDateTimeValue | None = None + file_name: TStringValue | None = None + identifier: TStringValue | None = None + method_identifier: TStringValue | None = None + method_name: TStringValue | None = None + start_time: TDateTimeValue | None = None + UNC_path: TStringValue | None = None + version_number: TStringValue | None = None + + +@dataclass(kw_only=True) +class DataSystemDocument: + ASM_file_identifier: TStringValue + data_system_instance_identifier: TStringValue + file_name: TStringValue | None = None + UNC_path: TStringValue | None = None + ASM_converter_name: TStringValue | None = None + ASM_converter_version: TStringValue | None = None + database_primary_key: TStringValue | None = None + software_name: TStringValue | None = None + software_version: TStringValue | None = None + custom_information_aggregate_document: CustomInformationAggregateDocument | None = ( + None + ) + + +@dataclass(kw_only=True) +class DeviceDocumentItem: + device_type: TStringValue + brand_name: TStringValue | None = None + device_identifier: TStringValue | None = None + equipment_serial_number: TStringValue | None = None + firmware_version: TStringValue | None = None + model_number: TStringValue | None = None + product_manufacturer: TStringValue | None = None + written_name: TStringValue | None = None + custom_information_aggregate_document: CustomInformationAggregateDocument | None = ( + None + ) + field_index: int | None = None + + +@dataclass(kw_only=True) +class DeviceSystemDocument: + asset_management_identifier: TStringValue | None = None + brand_name: TStringValue | None = None + description: Any | None = None + device_document: list[DeviceDocumentItem] | None = None + device_identifier: TStringValue | None = None + equipment_serial_number: TStringValue | None = None + firmware_version: TStringValue | None = None + model_number: TStringValue | None = None + product_manufacturer: TStringValue | None = None + custom_information_aggregate_document: CustomInformationAggregateDocument | None = ( + None + ) + + +@dataclass(kw_only=True) +class DiagnosticTraceDocumentItem: + description: Any + custom_information_aggregate_document: CustomInformationAggregateDocument | None = ( + None + ) + + +@dataclass(kw_only=True) +class DiagnosticTraceAggregateDocument: + diagnostic_trace_document: list[DiagnosticTraceDocumentItem] | None = None + custom_information_aggregate_document: CustomInformationAggregateDocument | None = ( + None + ) + + +@dataclass(kw_only=True) +class DeviceControlDocumentItem: + device_type: TStringValue + brand_name: TStringValue | None = None + detection_type: TStringValue | None = None + device_identifier: TStringValue | None = None + equipment_serial_number: TStringValue | None = None + firmware_version: TStringValue | None = None + model_number: TStringValue | None = None + product_manufacturer: TStringValue | None = None + custom_information_aggregate_document: CustomInformationAggregateDocument | None = ( + None + ) + field_index: int | None = None + detector_wavelength_setting: TQuantityValueNanometer | None = None + detector_bandwidth_setting: TQuantityValueNanometer | None = None + electronic_absorbance_wavelength_setting: TQuantityValueNanometer | None = None + electronic_absorbance_bandwidth_setting: TQuantityValueNanometer | None = None + electronic_absorbance_reference_bandwidth_setting: TQuantityValueNanometer | None = ( + None + ) + total_measurement_time_setting: TQuantityValueSecondTime | None = None + read_interval_setting: TQuantityValueSecondTime | None = None + number_of_scans_setting: TQuantityValueNumber | None = None + electronic_absorbance_reference_wavelength_setting: TQuantityValueNanometer | None = ( + None + ) + excitation_wavelength_setting: TQuantityValueNanometer | None = None + excitation_bandwidth_setting: TQuantityValueNanometer | None = None + + +@dataclass(kw_only=True) +class DeviceControlAggregateDocument: + device_control_document: list[DeviceControlDocumentItem] + custom_information_aggregate_document: CustomInformationAggregateDocument | None = ( + None + ) + + +@dataclass(kw_only=True) +class Peak: + custom_information_aggregate_document: CustomInformationAggregateDocument | None = ( + None + ) + peak_end: TQuantityValueMilliliter | TQuantityValueSecondTime | None = None + identifier: TStringValue | None = None + relative_peak_height: TQuantityValuePercent | None = None + written_name: TStringValue | None = None + peak_height: TQuantityValue | TQuantityValueMilliAbsorbanceUnit | None = None + capacity_factor__chromatography_: TQuantityValueUnitless | None = None + peak_area: TQuantityValue | TQuantityValueMilliAbsorbanceUnitTimesMilliliter | TQuantityValueMilliAbsorbanceUnitTimesSecond | None = ( + None + ) + relative_peak_area: TQuantityValuePercent | None = None + retention_time: TQuantityValueSecondTime | None = None + retention_volume: TQuantityValueMilliliter | None = None + peak_start: TQuantityValueMilliliter | TQuantityValueSecondTime | None = None + peak_selectivity__chromatography_: TQuantityValueUnitless | None = None + chromatographic_peak_resolution: TQuantityValueUnitless | None = None + field_index: int | None = None + chromatographic_peak_resolution_using_baseline_peak_widths: TQuantityValueUnitless | None = ( + None + ) + number_of_theoretical_plates_by_peak_width_at_half_height: TQuantityValueUnitless | None = ( + None + ) + number_of_theoretical_plates_by_peak_width_at_half_height__JP14_: TQuantityValueUnitless | None = ( + None + ) + peak_width_at_4_4___of_height: TQuantityValueSecondTime | None = None + peak_width_at_13_4___of_height: TQuantityValueSecondTime | None = None + peak_width_at_32_4___of_height: TQuantityValueSecondTime | None = None + peak_width_at_60_7___of_height: TQuantityValueSecondTime | None = None + peak_width_at_half_height: TQuantityValueSecondTime | None = None + peak_width_at_5___of_height: TQuantityValueSecondTime | None = None + peak_width_at_baseline: TQuantityValueSecondTime | None = None + peak_width_at_inflection: TQuantityValueSecondTime | None = None + peak_width_at_10___of_height: TQuantityValueSecondTime | None = None + peak_width: TQuantityValueSecondTime | None = None + statistical_skew__chromatography_: TQuantityValueUnitless | None = None + asymmetry_factor_measured_at_5___height: TQuantityValueUnitless | None = None + asymmetry_factor_measured_at_10___height: TQuantityValueUnitless | None = None + asymmetry_factor_squared_measured_at_10___height: TQuantityValueUnitless | None = ( + None + ) + asymmetry_factor_squared_measured_at_4_4___height: TQuantityValueUnitless | None = ( + None + ) + asymmetry_factor_measured_at_4_4___height: TQuantityValueUnitless | None = None + asymmetry_factor_measured_at_baseline: TQuantityValueUnitless | None = None + chromatographic_peak_asymmetry_factor: TQuantityValueUnitless | None = None + chromatographic_peak_resolution_using_peak_width_at_half_height: TQuantityValueUnitless | None = ( + None + ) + chromatographic_peak_resolution_using_statistical_moments: TQuantityValueUnitless | None = ( + None + ) + number_of_theoretical_plates__chromatography_: TQuantityValueUnitless | None = None + number_of_theoretical_plates_measured_at_60_7___of_peak_height: TQuantityValueUnitless | None = ( + None + ) + number_of_theoretical_plates_measured_at_32_4___of_peak_height: TQuantityValueUnitless | None = ( + None + ) + number_of_theoretical_plates_measured_at_13_4___of_peak_height: TQuantityValueUnitless | None = ( + None + ) + number_of_theoretical_plates_measured_at_4_4___of_peak_height: TQuantityValueUnitless | None = ( + None + ) + number_of_theoretical_plates_by_tangent_method: TQuantityValueUnitless | None = None + + +@dataclass(kw_only=True) +class PeakList: + custom_information_aggregate_document: CustomInformationAggregateDocument | None = ( + None + ) + peak: list[PeakItem] | list[Peak] | None = None + + +@dataclass(kw_only=True) +class DataRegionDocumentItem: + custom_information_aggregate_document: CustomInformationAggregateDocument | None = ( + None + ) + data_region_end: TQuantityValueMilliliter | TQuantityValueSecondTime | None = None + data_region_identifier: TStringValue | None = None + data_region_name: TStringValue | None = None + data_region_area: TQuantityValue | None = None + relative_data_region_area: TQuantityValuePercent | None = None + data_region_start: TQuantityValueMilliliter | TQuantityValueSecondTime | None = None + field_index: int | None = None + + +@dataclass(kw_only=True) +class DataRegionAggregateDocument: + custom_information_aggregate_document: CustomInformationAggregateDocument | None = ( + None + ) + data_region_document: list[DataRegionDocumentItem] | None = None + + +@dataclass(kw_only=True) +class SampleDocument: + sample_identifier: TStringValue + batch_identifier: TStringValue | None = None + description: Any | None = None + sample_role_type: TClass | None = None + written_name: TStringValue | None = None + custom_information_aggregate_document: CustomInformationAggregateDocument | None = ( + None + ) + + +@dataclass(kw_only=True) +class PeakItem(OrderedItem): + peak_height: TQuantityValueRelativeFluorescenceUnit | None = None + peak_area: TQuantityValueRelativeFluorescenceUnitTimesMilliliter | TQuantityValueRelativeFluorescenceUnitTimesSecond | None = ( + None + ) + + +@dataclass(kw_only=True) +class CalculatedDataDocumentItem: + calculated_data_name: TStringValue + calculated_result: TQuantityValue + calculated_data_identifier: TStringValue | None = None + calculation_description: TStringValue | None = None + data_source_aggregate_document: DataSourceAggregateDocument | None = None + electronic_project_record: ElectronicProjectRecord | None = None + field_index: int | None = None + + +@dataclass(kw_only=True) +class CalculatedDataAggregateDocument: + calculated_data_document: list[CalculatedDataDocumentItem] + + +@dataclass(kw_only=True) +class ElectropherogramDataCube: + label: str | None = None + cube_structure: TDatacubeStructure | None = None + data: TDatacubeData | None = None + + +@dataclass(kw_only=True) +class ProcessedDataDocumentItem: + custom_information_aggregate_document: CustomInformationAggregateDocument | None = ( + None + ) + data_processing_document: dict[str, Any] | None = None + data_source_aggregate_document: DataSourceAggregateDocument | None = None + electronic_project_record: ElectronicProjectRecord | None = None + processed_data_identifier: TStringValue | None = None + field_index: int | None = None + peak_list: PeakList | None = None + data_region_aggregate_document: DataRegionAggregateDocument | None = None + derived_electropherogram_data_cube: TDatacube | None = None + + +@dataclass(kw_only=True) +class MeasurementDocument: + device_control_aggregate_document: DeviceControlAggregateDocument + sample_document: SampleDocument + electropherogram_data_cube: ElectropherogramDataCube | TDatacube | None = None + calculated_data_aggregate_document: CalculatedDataAggregateDocument | None = None + custom_information_aggregate_document: CustomInformationAggregateDocument | None = ( + None + ) + detection_type: TStringValue | None = None + electronic_project_record: ElectronicProjectRecord | None = None + error_aggregate_document: ErrorAggregateDocument | None = None + image_aggregate_document: ImageAggregateDocument | None = None + measurement_identifier: TStringValue | None = None + measurement_time: TDateTimeStampValue | None = None + processed_data_aggregate_document: ProcessedDataAggregateDocument | None = None + statistics_aggregate_document: StatisticsAggregateDocument | None = None + absorption_profile_data_cube: TDatacube | None = None + chromatogram_data_cube: TDatacube | None = None + three_dimensional_ultraviolet_spectrum_data_cube: TDatacube | None = None + processed_data_document: ProcessedDataDocument | None = None + fluorescence_emission_profile_data_cube: TDatacube | None = None + + +@dataclass(kw_only=True) +class ProcessedDataDocument: + peak_list: PeakList | None = None + derived_electropherogram_data_cube: TDatacube | None = None + + +@dataclass(kw_only=True) +class MeasurementAggregateDocument: + measurement_document: list[MeasurementDocument] + calculated_data_aggregate_document: CalculatedDataAggregateDocument | None = None + custom_information_aggregate_document: CustomInformationAggregateDocument | None = ( + None + ) + diagnostic_trace_aggregate_document: DiagnosticTraceAggregateDocument | None = None + error_aggregate_document: ErrorAggregateDocument | None = None + image_aggregate_document: ImageAggregateDocument | None = None + processed_data_aggregate_document: ProcessedDataAggregateDocument | None = None + statistics_aggregate_document: StatisticsAggregateDocument | None = None + + +@dataclass(kw_only=True) +class ElectrophoresisDocumentItem: + analyst: TStringValue + measurement_aggregate_document: MeasurementAggregateDocument + electronic_project_record: ElectronicProjectRecord | None = None + submitter: TStringValue | None = None + + +@dataclass(kw_only=True) +class ElectrophoresisAggregateDocument: + electrophoresis_document: list[ElectrophoresisDocumentItem] + analysis_sequence_document: AnalysisSequenceDocument | None = None + calculated_data_aggregate_document: CalculatedDataAggregateDocument | None = None + custom_information_aggregate_document: CustomInformationAggregateDocument | None = ( + None + ) + data_system_document: DataSystemDocument | None = None + device_system_document: DeviceSystemDocument | None = None + electronic_project_record: ElectronicProjectRecord | None = None + electronic_signature_aggregate_document: ElectronicSignatureAggregateDocument | None = ( + None + ) + processed_data_aggregate_document: ProcessedDataAggregateDocument | None = None + statistics_aggregate_document: StatisticsAggregateDocument | None = None + + +@dataclass(kw_only=True) +class Model: + field_asm_manifest: AdmCoreREC202409ManifestSchema | str + electrophoresis_aggregate_document: ElectrophoresisAggregateDocument | None = None diff --git a/src/allotropy/allotrope/schemas/adm/electrophoresis/BENCHLING/2024/09/CHANGE_NOTES.md b/src/allotropy/allotrope/schemas/adm/electrophoresis/BENCHLING/2024/09/CHANGE_NOTES.md new file mode 100644 index 000000000..aab8a521a --- /dev/null +++ b/src/allotropy/allotrope/schemas/adm/electrophoresis/BENCHLING/2024/09/CHANGE_NOTES.md @@ -0,0 +1,3 @@ +Base schema: None + +This is a proposed new schema for electrophoresis devices. diff --git a/src/allotropy/allotrope/schemas/adm/electrophoresis/BENCHLING/2024/09/electrophoresis.schema.json b/src/allotropy/allotrope/schemas/adm/electrophoresis/BENCHLING/2024/09/electrophoresis.schema.json new file mode 100644 index 000000000..169f8e7a6 --- /dev/null +++ b/src/allotropy/allotrope/schemas/adm/electrophoresis/BENCHLING/2024/09/electrophoresis.schema.json @@ -0,0 +1,13936 @@ +{ + "$id": "http://purl.allotrope.org/json-schemas/adm/electrophoresis/BENCHLING/2024/09/electrophoresis.schema", + "$schema": "https://json-schema.org/draft/2020-12/schema", + "allOf": [ + { + "properties": { + "electrophoresis aggregate document": { + "allOf": [ + { + "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/hierarchy.schema#/$defs/techniqueAggregateDocument" + }, + { + "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0003016", + "properties": { + "electrophoresis document": { + "$asm.array-mixed": false, + "$asm.array-ordered": true, + "$asm.pattern": "indexed datum", + "type": "array", + "minItems": 1, + "items": { + "allOf": [ + { + "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/hierarchy.schema#/$defs/techniqueDocument" + }, + { + "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0003017", + "properties": { + "measurement aggregate document": { + "properties": { + "measurement document": { + "items": { + "allOf": [ + { + "properties": { + "processed data aggregate document": { + "properties": { + "processed data document": { + "items": { + "properties": { + "peak list": { + "type": "object", + "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0000432", + "$asm.pattern": "aggregate datum", + "properties": { + "custom information aggregate document": { + "allOf": [ + { + "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/hierarchy.schema#/$defs/customInformationAggregateDocument" + } + ] + }, + "peak": { + "type": "array", + "$asm.array-ordered": true, + "$asm.array-mixed": false, + "$asm.pattern": "indexed datum", + "items": { + "allOf": [ + { + "type": "object", + "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0000413", + "$asm.pattern": "aggregate datum", + "properties": { + "custom information aggregate document": { + "allOf": [ + { + "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/hierarchy.schema#/$defs/customInformationAggregateDocument" + } + ] + }, + "peak end": { + "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0001180", + "$asm.pattern": "quantity datum", + "allOf": [ + { + "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/core.schema#/$defs/tQuantityValue" + }, + { + "oneOf": [ + { + "$ref": "http://purl.allotrope.org/json-schemas/qudt/REC/2024/09/units.schema#/$defs/s" + }, + { + "$ref": "http://purl.allotrope.org/json-schemas/qudt/REC/2024/09/units.schema#/$defs/mL" + } + ] + } + ] + }, + "identifier": { + "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0000917", + "$asm.pattern": "value datum", + "$asm.type": "http://www.w3.org/2001/XMLSchema#string", + "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/core.schema#/$defs/tStringValue" + }, + "relative peak height": { + "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0000949", + "$asm.pattern": "quantity datum", + "allOf": [ + { + "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/core.schema#/$defs/tQuantityValue" + }, + { + "$ref": "http://purl.allotrope.org/json-schemas/qudt/REC/2024/09/units.schema#/$defs/%25" + } + ] + }, + "written name": { + "$asm.property-class": "http://purl.obolibrary.org/obo/IAO_0000590", + "$asm.pattern": "value datum", + "$asm.type": "http://www.w3.org/2001/XMLSchema#string", + "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/core.schema#/$defs/tStringValue" + }, + "peak height": { + "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0000948", + "$asm.pattern": "quantity datum", + "allOf": [ + { + "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/core.schema#/$defs/tQuantityValue" + } + ] + }, + "capacity factor (chromatography)": { + "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0001234", + "$asm.pattern": "quantity datum", + "allOf": [ + { + "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/core.schema#/$defs/tQuantityValue" + }, + { + "$ref": "http://purl.allotrope.org/json-schemas/qudt/REC/2024/09/units.schema#/$defs/(unitless)" + } + ] + }, + "peak area": { + "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0001073", + "$asm.pattern": "quantity datum", + "allOf": [ + { + "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/core.schema#/$defs/tQuantityValue" + } + ] + }, + "relative peak area": { + "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0001165", + "$asm.pattern": "quantity datum", + "allOf": [ + { + "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/core.schema#/$defs/tQuantityValue" + }, + { + "$ref": "http://purl.allotrope.org/json-schemas/qudt/REC/2024/09/units.schema#/$defs/%25" + } + ] + }, + "retention time": { + "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0001089", + "$asm.pattern": "quantity datum", + "allOf": [ + { + "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/core.schema#/$defs/tQuantityValue" + }, + { + "$ref": "http://purl.allotrope.org/json-schemas/qudt/REC/2024/09/units.schema#/$defs/s" + } + ] + }, + "retention volume": { + "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0001089", + "$asm.pattern": "quantity datum", + "allOf": [ + { + "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/core.schema#/$defs/tQuantityValue" + }, + { + "$ref": "http://purl.allotrope.org/json-schemas/qudt/REC/2024/09/units.schema#/$defs/mL" + } + ] + }, + "peak start": { + "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0001178", + "$asm.pattern": "quantity datum", + "allOf": [ + { + "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/core.schema#/$defs/tQuantityValue" + }, + { + "oneOf": [ + { + "$ref": "http://purl.allotrope.org/json-schemas/qudt/REC/2024/09/units.schema#/$defs/s" + }, + { + "$ref": "http://purl.allotrope.org/json-schemas/qudt/REC/2024/09/units.schema#/$defs/mL" + } + ] + } + ] + }, + "peak selectivity (chromatography)": { + "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0001235", + "$asm.pattern": "quantity datum", + "allOf": [ + { + "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/core.schema#/$defs/tQuantityValue" + }, + { + "$ref": "http://purl.allotrope.org/json-schemas/qudt/REC/2024/09/units.schema#/$defs/(unitless)" + } + ] + } + }, + "anyOf": [ + { + "properties": { + "chromatographic peak resolution": { + "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0001230", + "$asm.pattern": "quantity datum", + "allOf": [ + { + "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/core.schema#/$defs/tQuantityValue" + }, + { + "$ref": "http://purl.allotrope.org/json-schemas/qudt/REC/2024/09/units.schema#/$defs/(unitless)" + } + ] + } + } + }, + { + "properties": { + "chromatographic peak resolution using baseline peak widths": { + "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0001231", + "$asm.pattern": "quantity datum", + "allOf": [ + { + "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/core.schema#/$defs/tQuantityValue" + }, + { + "$ref": "http://purl.allotrope.org/json-schemas/qudt/REC/2024/09/units.schema#/$defs/(unitless)" + } + ] + } + } + }, + { + "properties": { + "chromatographic peak resolution using peak width at half-height": { + "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0001232", + "$asm.pattern": "quantity datum", + "allOf": [ + { + "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/core.schema#/$defs/tQuantityValue" + }, + { + "$ref": "http://purl.allotrope.org/json-schemas/qudt/REC/2024/09/units.schema#/$defs/(unitless)" + } + ] + } + } + }, + { + "properties": { + "chromatographic peak resolution using statistical moments": { + "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0001233", + "$asm.pattern": "quantity datum", + "allOf": [ + { + "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/core.schema#/$defs/tQuantityValue" + }, + { + "$ref": "http://purl.allotrope.org/json-schemas/qudt/REC/2024/09/units.schema#/$defs/(unitless)" + } + ] + } + } + }, + { + "properties": { + "number of theoretical plates (chromatography)": { + "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0001239", + "$asm.pattern": "quantity datum", + "allOf": [ + { + "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/core.schema#/$defs/tQuantityValue" + }, + { + "$ref": "http://purl.allotrope.org/json-schemas/qudt/REC/2024/09/units.schema#/$defs/(unitless)" + } + ] + } + } + }, + { + "properties": { + "number of theoretical plates measured at 60.7 % of peak height": { + "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0002780", + "$asm.pattern": "quantity datum", + "allOf": [ + { + "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/core.schema#/$defs/tQuantityValue" + }, + { + "$ref": "http://purl.allotrope.org/json-schemas/qudt/REC/2024/09/units.schema#/$defs/(unitless)" + } + ] + } + } + }, + { + "properties": { + "number of theoretical plates measured at 32.4 % of peak height": { + "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0002781", + "$asm.pattern": "quantity datum", + "allOf": [ + { + "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/core.schema#/$defs/tQuantityValue" + }, + { + "$ref": "http://purl.allotrope.org/json-schemas/qudt/REC/2024/09/units.schema#/$defs/(unitless)" + } + ] + } + } + }, + { + "properties": { + "number of theoretical plates measured at 13.4 % of peak height": { + "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0002782", + "$asm.pattern": "quantity datum", + "allOf": [ + { + "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/core.schema#/$defs/tQuantityValue" + }, + { + "$ref": "http://purl.allotrope.org/json-schemas/qudt/REC/2024/09/units.schema#/$defs/(unitless)" + } + ] + } + } + }, + { + "properties": { + "number of theoretical plates measured at 4.4 % of peak height": { + "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0002783", + "$asm.pattern": "quantity datum", + "allOf": [ + { + "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/core.schema#/$defs/tQuantityValue" + }, + { + "$ref": "http://purl.allotrope.org/json-schemas/qudt/REC/2024/09/units.schema#/$defs/(unitless)" + } + ] + } + } + }, + { + "properties": { + "number of theoretical plates by tangent method": { + "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0001240", + "$asm.pattern": "quantity datum", + "allOf": [ + { + "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/core.schema#/$defs/tQuantityValue" + }, + { + "$ref": "http://purl.allotrope.org/json-schemas/qudt/REC/2024/09/units.schema#/$defs/(unitless)" + } + ] + } + } + }, + { + "properties": { + "number of theoretical plates by peak width at half height": { + "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0001241", + "$asm.pattern": "quantity datum", + "allOf": [ + { + "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/core.schema#/$defs/tQuantityValue" + }, + { + "$ref": "http://purl.allotrope.org/json-schemas/qudt/REC/2024/09/units.schema#/$defs/(unitless)" + } + ] + } + } + }, + { + "properties": { + "number of theoretical plates by peak width at half height (JP14)": { + "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0002807", + "$asm.pattern": "quantity datum", + "allOf": [ + { + "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/core.schema#/$defs/tQuantityValue" + }, + { + "$ref": "http://purl.allotrope.org/json-schemas/qudt/REC/2024/09/units.schema#/$defs/(unitless)" + } + ] + } + } + }, + { + "properties": { + "peak width at 4.4 % of height": { + "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0002784", + "$asm.pattern": "quantity datum", + "allOf": [ + { + "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/core.schema#/$defs/tQuantityValue" + }, + { + "$ref": "http://purl.allotrope.org/json-schemas/qudt/REC/2024/09/units.schema#/$defs/s" + } + ] + } + } + }, + { + "properties": { + "peak width at 13.4 % of height": { + "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0002785", + "$asm.pattern": "quantity datum", + "allOf": [ + { + "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/core.schema#/$defs/tQuantityValue" + }, + { + "$ref": "http://purl.allotrope.org/json-schemas/qudt/REC/2024/09/units.schema#/$defs/s" + } + ] + } + } + }, + { + "properties": { + "peak width at 32.4 % of height": { + "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0002786", + "$asm.pattern": "quantity datum", + "allOf": [ + { + "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/core.schema#/$defs/tQuantityValue" + }, + { + "$ref": "http://purl.allotrope.org/json-schemas/qudt/REC/2024/09/units.schema#/$defs/s" + } + ] + } + } + }, + { + "properties": { + "peak width at 60.7 % of height": { + "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0002787", + "$asm.pattern": "quantity datum", + "allOf": [ + { + "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/core.schema#/$defs/tQuantityValue" + }, + { + "$ref": "http://purl.allotrope.org/json-schemas/qudt/REC/2024/09/units.schema#/$defs/s" + } + ] + } + } + }, + { + "properties": { + "peak width at half height": { + "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0001266", + "$asm.pattern": "quantity datum", + "allOf": [ + { + "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/core.schema#/$defs/tQuantityValue" + }, + { + "$ref": "http://purl.allotrope.org/json-schemas/qudt/REC/2024/09/units.schema#/$defs/s" + } + ] + } + } + }, + { + "properties": { + "peak width at 5 % of height": { + "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0001265", + "$asm.pattern": "quantity datum", + "allOf": [ + { + "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/core.schema#/$defs/tQuantityValue" + }, + { + "$ref": "http://purl.allotrope.org/json-schemas/qudt/REC/2024/09/units.schema#/$defs/s" + } + ] + } + } + }, + { + "properties": { + "peak width at baseline": { + "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0001264", + "$asm.pattern": "quantity datum", + "allOf": [ + { + "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/core.schema#/$defs/tQuantityValue" + }, + { + "$ref": "http://purl.allotrope.org/json-schemas/qudt/REC/2024/09/units.schema#/$defs/s" + } + ] + } + } + }, + { + "properties": { + "peak width at inflection": { + "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0002761", + "$asm.pattern": "quantity datum", + "allOf": [ + { + "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/core.schema#/$defs/tQuantityValue" + }, + { + "$ref": "http://purl.allotrope.org/json-schemas/qudt/REC/2024/09/units.schema#/$defs/s" + } + ] + } + } + }, + { + "properties": { + "peak width at 10 % of height": { + "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0002511", + "$asm.pattern": "quantity datum", + "allOf": [ + { + "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/core.schema#/$defs/tQuantityValue" + }, + { + "$ref": "http://purl.allotrope.org/json-schemas/qudt/REC/2024/09/units.schema#/$defs/s" + } + ] + } + } + }, + { + "properties": { + "peak width": { + "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0001075", + "$asm.pattern": "quantity datum", + "allOf": [ + { + "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/core.schema#/$defs/tQuantityValue" + }, + { + "$ref": "http://purl.allotrope.org/json-schemas/qudt/REC/2024/09/units.schema#/$defs/s" + } + ] + } + } + }, + { + "properties": { + "statistical skew (chromatography)": { + "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0001238", + "$asm.pattern": "quantity datum", + "allOf": [ + { + "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/core.schema#/$defs/tQuantityValue" + }, + { + "$ref": "http://purl.allotrope.org/json-schemas/qudt/REC/2024/09/units.schema#/$defs/(unitless)" + } + ] + } + } + }, + { + "properties": { + "asymmetry factor measured at 5 % height": { + "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0001237", + "$asm.pattern": "quantity datum", + "allOf": [ + { + "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/core.schema#/$defs/tQuantityValue" + }, + { + "$ref": "http://purl.allotrope.org/json-schemas/qudt/REC/2024/09/units.schema#/$defs/(unitless)" + } + ] + } + } + }, + { + "properties": { + "asymmetry factor measured at 10 % height": { + "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0002512", + "$asm.pattern": "quantity datum", + "allOf": [ + { + "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/core.schema#/$defs/tQuantityValue" + }, + { + "$ref": "http://purl.allotrope.org/json-schemas/qudt/REC/2024/09/units.schema#/$defs/(unitless)" + } + ] + } + } + }, + { + "properties": { + "asymmetry factor squared measured at 10 % height": { + "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0002778", + "$asm.pattern": "quantity datum", + "allOf": [ + { + "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/core.schema#/$defs/tQuantityValue" + }, + { + "$ref": "http://purl.allotrope.org/json-schemas/qudt/REC/2024/09/units.schema#/$defs/(unitless)" + } + ] + } + } + }, + { + "properties": { + "asymmetry factor squared measured at 4.4 % height": { + "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0002777", + "$asm.pattern": "quantity datum", + "allOf": [ + { + "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/core.schema#/$defs/tQuantityValue" + }, + { + "$ref": "http://purl.allotrope.org/json-schemas/qudt/REC/2024/09/units.schema#/$defs/(unitless)" + } + ] + } + } + }, + { + "properties": { + "asymmetry factor measured at 4.4 % height": { + "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0002776", + "$asm.pattern": "quantity datum", + "allOf": [ + { + "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/core.schema#/$defs/tQuantityValue" + }, + { + "$ref": "http://purl.allotrope.org/json-schemas/qudt/REC/2024/09/units.schema#/$defs/(unitless)" + } + ] + } + } + }, + { + "properties": { + "asymmetry factor measured at baseline": { + "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0002779", + "$asm.pattern": "quantity datum", + "allOf": [ + { + "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/core.schema#/$defs/tQuantityValue" + }, + { + "$ref": "http://purl.allotrope.org/json-schemas/qudt/REC/2024/09/units.schema#/$defs/(unitless)" + } + ] + } + } + }, + { + "properties": { + "chromatographic peak asymmetry factor": { + "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0001236", + "$asm.pattern": "quantity datum", + "allOf": [ + { + "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/core.schema#/$defs/tQuantityValue" + }, + { + "$ref": "http://purl.allotrope.org/json-schemas/qudt/REC/2024/09/units.schema#/$defs/(unitless)" + } + ] + } + } + } + ] + }, + { + "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/core.schema#/$defs/orderedItem" + } + ] + }, + "minItems": 0 + } + } + }, + "data region aggregate document": { + "type": "object", + "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0003055", + "$asm.pattern": "aggregate datum", + "properties": { + "custom information aggregate document": { + "allOf": [ + { + "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/hierarchy.schema#/$defs/customInformationAggregateDocument" + } + ] + }, + "data region document": { + "type": "array", + "$asm.array-ordered": true, + "$asm.array-mixed": false, + "$asm.pattern": "indexed datum", + "items": { + "allOf": [ + { + "type": "object", + "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0003056", + "$asm.pattern": "aggregate datum", + "properties": { + "custom information aggregate document": { + "allOf": [ + { + "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/hierarchy.schema#/$defs/customInformationAggregateDocument" + } + ] + }, + "data region end": { + "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0003008", + "$asm.pattern": "quantity datum", + "allOf": [ + { + "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/core.schema#/$defs/tQuantityValue" + }, + { + "oneOf": [ + { + "$ref": "http://purl.allotrope.org/json-schemas/qudt/REC/2024/09/units.schema#/$defs/s" + }, + { + "$ref": "http://purl.allotrope.org/json-schemas/qudt/REC/2024/09/units.schema#/$defs/mL" + } + ] + } + ] + }, + "data region identifier": { + "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0003005", + "$asm.pattern": "value datum", + "$asm.type": "http://www.w3.org/2001/XMLSchema#string", + "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/core.schema#/$defs/tStringValue" + }, + "data region name": { + "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0003006", + "$asm.pattern": "value datum", + "$asm.type": "http://www.w3.org/2001/XMLSchema#string", + "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/core.schema#/$defs/tStringValue" + }, + "data region area": { + "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0003009", + "$asm.pattern": "quantity datum", + "allOf": [ + { + "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/core.schema#/$defs/tQuantityValue" + } + ] + }, + "relative data region area": { + "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0003010", + "$asm.pattern": "quantity datum", + "allOf": [ + { + "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/core.schema#/$defs/tQuantityValue" + }, + { + "$ref": "http://purl.allotrope.org/json-schemas/qudt/REC/2024/09/units.schema#/$defs/%25" + } + ] + }, + "data region start": { + "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0003007", + "$asm.pattern": "quantity datum", + "allOf": [ + { + "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/core.schema#/$defs/tQuantityValue" + }, + { + "oneOf": [ + { + "$ref": "http://purl.allotrope.org/json-schemas/qudt/REC/2024/09/units.schema#/$defs/s" + }, + { + "$ref": "http://purl.allotrope.org/json-schemas/qudt/REC/2024/09/units.schema#/$defs/mL" + } + ] + } + ] + } + } + }, + { + "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/core.schema#/$defs/orderedItem" + } + ] + }, + "minItems": 0 + } + } + }, + "derived electropherogram data cube": { + "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0003020", + "$asm.pattern": "datacube", + "allOf": [ + { + "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/cube.schema#/$defs/tDatacube" + }, + { + "properties": { + "cube-structure": { + "properties": { + "dimensions": { + "minItems": 1, + "maxItems": 1, + "prefixItems": [ + { + "oneOf": [ + { + "properties": { + "concept": { + "const": "molecular mass" + }, + "unit": { + "const": "Da" + }, + "@componentDatatype": { + "const": "double" + } + } + }, + { + "properties": { + "concept": { + "const": "polymer length" + }, + "unit": { + "const": "#" + }, + "@componentDatatype": { + "const": "double" + } + } + } + ] + } + ] + }, + "measures": { + "minItems": 1, + "maxItems": 1, + "contains": { + "oneOf": [ + { + "properties": { + "@componentDatatype": { + "const": "double" + } + } + } + ] + } + } + } + } + } + } + ] + } + } + } + } + } + }, + "electropherogram data cube": { + "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0003018", + "$asm.pattern": "datacube", + "allOf": [ + { + "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/cube.schema#/$defs/tDatacube" + }, + { + "properties": { + "cube-structure": { + "properties": { + "dimensions": { + "minItems": 1, + "maxItems": 1, + "prefixItems": [ + { + "oneOf": [ + { + "properties": { + "concept": { + "const": "elapsed time" + }, + "unit": { + "const": "s" + }, + "@componentDatatype": { + "const": "double" + } + } + } + ] + } + ] + }, + "measures": { + "minItems": 1, + "maxItems": 1, + "contains": { + "oneOf": [ + { + "properties": { + "@componentDatatype": { + "const": "double" + } + } + } + ] + } + } + } + } + } + } + ] + } + } + }, + { + "anyOf": [ + { + "$ref": "http://purl.allotrope.org/json-schemas/adm/absorbance/REC/2024/09/absorbance-cube-detector.schema#/$defs/measurementDocumentItems" + }, + { + "$ref": "http://purl.allotrope.org/json-schemas/adm/absorbance/REC/2024/09/absorbance-spectrum-detector.schema#/$defs/measurementDocumentItems" + }, + { + "$ref": "http://purl.allotrope.org/json-schemas/adm/fluorescence/REC/2024/09/fluorescence-cube-detector.schema#/$defs/measurementDocumentItems" + } + ] + } + ] + }, + "minItems": 1 + } + } + } + }, + "required": [ + "analyst" + ] + } + ] + } + } + }, + "required": [ + "electrophoresis document" + ] + } + ] + } + } + }, + { + "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/core.schema#/$defs/asm" + } + ], + "required": [ + "$asm.manifest" + ], + "$defs": { + "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/hierarchy.schema": { + "$id": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/hierarchy.schema", + "title": "Common hierarchy schema defs.", + "$defs": { + "calculatedDataAggregateDocument": { + "$asm.pattern": "aggregate datum", + "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0002889", + "properties": { + "calculated data document": { + "$asm.array-mixed": false, + "$asm.array-ordered": true, + "$asm.pattern": "indexed datum", + "items": { + "allOf": [ + { + "$asm.pattern": "aggregate datum", + "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0002890", + "properties": { + "calculated data identifier": { + "$asm.pattern": "value datum", + "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0002893", + "$asm.type": "http://www.w3.org/2001/XMLSchema#string", + "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/core.schema#/$defs/tStringValue" + }, + "calculated data name": { + "$asm.pattern": "value datum", + "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0002891", + "$asm.type": "http://www.w3.org/2001/XMLSchema#string", + "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/core.schema#/$defs/tStringValue" + }, + "calculated result": { + "$asm.pattern": "quantity datum", + "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0002892", + "allOf": [ + { + "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/core.schema#/$defs/tQuantityValue" + } + ] + }, + "calculation description": { + "$asm.pattern": "value datum", + "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0002141", + "$asm.type": "http://www.w3.org/2001/XMLSchema#string", + "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/core.schema#/$defs/tStringValue" + }, + "data source aggregate document": { + "allOf": [ + { + "$ref": "#/$defs/dataSourceAggregateDocument" + } + ] + }, + "electronic project record": { + "allOf": [ + { + "$ref": "#/$defs/electronicProjectRecord" + } + ] + } + }, + "required": [ + "calculated data name", + "calculated result" + ], + "type": "object" + }, + { + "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/core.schema#/$defs/orderedItem" + } + ] + }, + "minItems": 1, + "type": "array" + } + }, + "required": [ + "calculated data document" + ], + "type": "object" + }, + "customInformationAggregateDocument": { + "$asm.pattern": "aggregate datum", + "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0002764", + "properties": { + "custom information document": { + "$asm.array-mixed": false, + "$asm.array-ordered": true, + "$asm.pattern": "indexed datum", + "items": { + "allOf": [ + { + "$asm.pattern": "aggregate datum", + "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0002764", + "properties": { + "datum label": { + "$asm.pattern": "value datum", + "$asm.property-class": "http://purl.obolibrary.org/obo/IAO_0000009", + "$asm.type": "http://www.w3.org/2001/XMLSchema#string", + "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/core.schema#/$defs/tStringValue" + } + }, + "required": [ + "datum label" + ], + "type": "object" + }, + { + "oneOf": [ + { + "properties": { + "scalar double datum": { + "$asm.pattern": "value datum", + "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0001104", + "$asm.type": "http://www.w3.org/2001/XMLSchema#double", + "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/core.schema#/$defs/tDoubleValue" + }, + "unit": { + "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/core.schema#/$defs/tUnit" + } + }, + "required": [ + "scalar double datum" + ] + }, + { + "properties": { + "scalar string datum": { + "$asm.pattern": "value datum", + "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0001511", + "$asm.type": "http://www.w3.org/2001/XMLSchema#string", + "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/core.schema#/$defs/tStringValue" + } + }, + "required": [ + "scalar string datum" + ] + }, + { + "properties": { + "scalar timestamp datum": { + "$asm.pattern": "value datum", + "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0001512", + "$asm.type": "http://www.w3.org/2001/XMLSchema#dateTime", + "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/core.schema#/$defs/tDateTimeValue" + } + }, + "required": [ + "scalar timestamp datum" + ] + }, + { + "properties": { + "scalar boolean datum": { + "$asm.pattern": "value datum", + "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0001510", + "$asm.type": "http://www.w3.org/2001/XMLSchema#boolean", + "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/core.schema#/$defs/tBooleanValue" + } + }, + "required": [ + "scalar boolean datum" + ] + } + ] + }, + { + "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/core.schema#/$defs/orderedItem" + } + ] + }, + "type": "array" + } + }, + "required": [ + "custom information document" + ], + "type": "object" + }, + "dataSourceAggregateDocument": { + "$asm.pattern": "aggregate datum", + "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0002894", + "properties": { + "data source document": { + "$asm.array-mixed": false, + "$asm.array-ordered": true, + "$asm.pattern": "indexed datum", + "items": { + "allOf": [ + { + "$asm.pattern": "aggregate datum", + "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0002895", + "properties": { + "data source feature": { + "$asm.pattern": "value datum", + "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0002898", + "$asm.type": "http://www.w3.org/2001/XMLSchema#string", + "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/core.schema#/$defs/tStringValue" + }, + "data source identifier": { + "$asm.pattern": "value datum", + "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0002896", + "$asm.type": "http://www.w3.org/2001/XMLSchema#string", + "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/core.schema#/$defs/tStringValue" + } + }, + "required": [ + "data source identifier" + ], + "type": "object" + }, + { + "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/core.schema#/$defs/orderedItem" + } + ] + }, + "minItems": 1, + "type": "array" + } + }, + "required": [ + "data source document" + ], + "type": "object" + }, + "electronicProjectRecord": { + "$asm.pattern": "aggregate datum", + "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0002331", + "properties": { + "description": { + "$asm.pattern": "any datum", + "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0000922" + }, + "start time": { + "$asm.pattern": "value datum", + "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0002422", + "$asm.type": "http://www.w3.org/2001/XMLSchema#dateTime", + "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/core.schema#/$defs/tDateTimeValue" + }, + "written name": { + "$asm.pattern": "value datum", + "$asm.property-class": "http://purl.obolibrary.org/obo/IAO_0000590", + "$asm.type": "http://www.w3.org/2001/XMLSchema#string", + "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/core.schema#/$defs/tStringValue" + } + }, + "required": [ + "written name" + ], + "type": "object" + }, + "electronicSignatureAggregateDocument": { + "$asm.pattern": "aggregate datum", + "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0003033", + "properties": { + "electronic signature document": { + "$asm.array-mixed": false, + "$asm.array-ordered": false, + "$asm.pattern": "indexed datum", + "items": { + "allOf": [ + { + "$asm.pattern": "aggregate datum", + "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0002769", + "properties": { + "account identifier": { + "$asm.pattern": "value datum", + "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0002770", + "$asm.type": "http://www.w3.org/2001/XMLSchema#integer", + "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/core.schema#/$defs/tStringValue" + }, + "identifier": { + "$asm.pattern": "value datum", + "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0000917", + "$asm.type": "http://www.w3.org/2001/XMLSchema#integer", + "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/core.schema#/$defs/tStringValue" + }, + "measurement identifier": { + "$asm.pattern": "value datum", + "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0001121", + "$asm.type": "http://www.w3.org/2001/XMLSchema#integer", + "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/core.schema#/$defs/tStringValue" + }, + "method identifier": { + "$asm.pattern": "value datum", + "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0002034", + "$asm.type": "http://www.w3.org/2001/XMLSchema#integer", + "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/core.schema#/$defs/tStringValue" + }, + "personal name": { + "$asm.pattern": "value datum", + "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0001063", + "$asm.type": "http://www.w3.org/2001/XMLSchema#string", + "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/core.schema#/$defs/tStringValue" + }, + "processed data identifier": { + "$asm.pattern": "value datum", + "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0002897", + "$asm.type": "http://www.w3.org/2001/XMLSchema#integer", + "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/core.schema#/$defs/tStringValue" + }, + "signature role type": { + "$asm.pattern": "value datum", + "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0002794", + "$asm.type": "http://www.w3.org/2001/XMLSchema#string", + "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/core.schema#/$defs/tStringValue" + }, + "time": { + "$asm.pattern": "value datum", + "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0000937", + "$asm.type": "http://www.w3.org/2001/XMLSchema#string", + "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/core.schema#/$defs/tStringValue" + } + }, + "required": [ + "account identifier", + "personal name", + "signature role type", + "time" + ], + "type": "object" + }, + { + "anyOf": [ + { + "required": [ + "identifier" + ] + }, + { + "required": [ + "measurement identifier" + ] + }, + { + "required": [ + "processed data identifier" + ] + }, + { + "required": [ + "method identifier" + ] + } + ] + }, + { + "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/core.schema#/$defs/orderedItem" + } + ] + }, + "minItems": 0, + "type": "array" + } + }, + "type": "object" + }, + "errorAggregateDocument": { + "$asm.pattern": "aggregate datum", + "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0002951", + "properties": { + "error document": { + "$asm.array-mixed": false, + "$asm.array-ordered": false, + "$asm.pattern": "indexed datum", + "items": { + "$asm.pattern": "aggregate datum", + "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0002952", + "properties": { + "error": { + "$asm.pattern": "value datum", + "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0002804", + "$asm.type": "http://www.w3.org/2001/XMLSchema#string", + "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/core.schema#/$defs/tStringValue" + }, + "error feature": { + "$asm.pattern": "value datum", + "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0002953", + "$asm.type": "http://www.w3.org/2001/XMLSchema#integer", + "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/core.schema#/$defs/tStringValue" + } + }, + "required": [ + "error" + ], + "type": "object" + }, + "minItems": 0, + "type": "array" + } + }, + "type": "object" + }, + "imageAggregateDocument": { + "$asm.pattern": "aggregate datum", + "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0002869", + "properties": { + "image document": { + "$asm.array-mixed": false, + "$asm.array-ordered": false, + "$asm.pattern": "indexed datum", + "items": { + "$asm.pattern": "aggregate datum", + "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0002225", + "properties": { + "experimental data identifier": { + "$asm.pattern": "value datum", + "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0001977", + "$asm.type": "http://www.w3.org/2001/XMLSchema#string", + "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/core.schema#/$defs/tStringValue" + }, + "index": { + "$asm.pattern": "value datum", + "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0000928", + "$asm.type": "http://www.w3.org/2001/XMLSchema#integer", + "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/core.schema#/$defs/tIntegerValue" + } + }, + "type": "object" + }, + "minItems": 0, + "type": "array" + } + }, + "type": "object" + }, + "processedDataAggregateDocument": { + "$asm.pattern": "aggregate datum", + "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0002658", + "properties": { + "custom information aggregate document": { + "allOf": [ + { + "$ref": "#/$defs/customInformationAggregateDocument" + } + ] + }, + "electronic project record": { + "allOf": [ + { + "$ref": "#/$defs/electronicProjectRecord" + } + ] + }, + "processed data document": { + "$asm.array-mixed": false, + "$asm.array-ordered": true, + "$asm.pattern": "indexed datum", + "items": { + "allOf": [ + { + "$asm.pattern": "aggregate datum", + "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0002659", + "properties": { + "custom information aggregate document": { + "allOf": [ + { + "$ref": "#/$defs/customInformationAggregateDocument" + } + ] + }, + "data processing document": { + "$asm.pattern": "aggregate datum", + "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0002655", + "type": "object" + }, + "data source aggregate document": { + "allOf": [ + { + "$ref": "#/$defs/dataSourceAggregateDocument" + } + ] + }, + "electronic project record": { + "allOf": [ + { + "$ref": "#/$defs/electronicProjectRecord" + } + ] + }, + "processed data identifier": { + "$asm.pattern": "value datum", + "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0002897", + "$asm.type": "http://www.w3.org/2001/XMLSchema#string", + "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/core.schema#/$defs/tStringValue" + } + }, + "type": "object" + }, + { + "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/core.schema#/$defs/orderedItem" + } + ] + }, + "minItems": 1, + "type": "array" + } + }, + "required": [ + "processed data document" + ], + "type": "object" + }, + "statisticsAggregateDocument": { + "$asm.pattern": "aggregate datum", + "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0002697", + "type": "object", + "properties": { + "statistics document": { + "$asm.array-mixed": false, + "$asm.array-ordered": false, + "$asm.pattern": "indexed datum", + "type": "array", + "items": { + "$asm.pattern": "aggregate datum", + "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0002698", + "type": "object", + "properties": { + "statistical feature": { + "$asm.pattern": "class datum", + "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0002699", + "allOf": [ + { + "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/core.schema#/$defs/tClass" + }, + { + "$asm.value-sub-class-of": "http://purl.allotrope.org/ontologies/result#AFR_0001583", + "enum": [ + "BET C constant", + "Raman intensity", + "Raman interferogram intensity", + "Raman wavenumber shift", + "Young modulus", + "abrasion weight", + "absolute intensity", + "absolute water content", + "absorbance", + "acquisition volume", + "actual P/P0 result", + "adsorbed volume at STP", + "ambient humidity", + "ambient pressure", + "ambient temperature", + "amount of substance", + "angle", + "angle of optical rotation", + "angular velocity", + "area", + "attenuation coefficient", + "average dead cell diameter (cell counter)", + "average particle size", + "average total cell circularity", + "average total cell diameter", + "average viable cell circularity", + "background corrected turbidity", + "birefringence", + "break strain", + "break stress", + "cell path length", + "chemical shift", + "chromatography column film thickness", + "chromatography column length", + "chromatography column particle size", + "circularity", + "coating gap height", + "collision energy", + "column inner diameter", + "compartment temperature", + "concentration", + "container diameter", + "container height", + "degassed sample weight", + "detector view volume", + "diameter", + "dielectric polarization", + "dilution factor", + "dilution volume", + "dispensed volume", + "dry gas flow rate", + "dry sample weight", + "eccentricity", + "electric charge", + "electric conductance", + "electric conductivity", + "electric current", + "electric impedance", + "electric resistance", + "electric resistivity", + "electron beam working distance", + "end height", + "energy (datum)", + "enthalpy", + "enthalpy of fusion", + "enthalpy of sublimation", + "enthalpy of vaporization", + "exhaust gas flow rate", + "extrapolated moisture content", + "fill depth", + "flow rate", + "flow ratio", + "fluorescence", + "foam height", + "force", + "fracture energy", + "glass transition temperature", + "gloss", + "gross weight", + "hardness", + "heat capacity", + "heat capacity (dsc)", + "heat flow", + "heat seal length", + "heat transfer coefficient", + "height", + "hold-up volume", + "humidity", + "image height", + "image width", + "incident radiation angle", + "inlet gas pressure", + "inner diameter", + "intensity", + "isocyanate reservoir temperature", + "length", + "linear velocity", + "liquid height", + "luminescence", + "m/z", + "mass", + "mass attenuation coefficient", + "mass change", + "mass concentration", + "mass fraction", + "measurement chamber free space volume", + "molar attenuation coefficient", + "molar concentration", + "molar enthalpy of fusion", + "molar enthalpy of sublimation", + "molar enthalpy of vaporization", + "molar mass", + "molecular mass", + "monolayer quantity", + "normalized foam height", + "number concentration", + "osmolality", + "pCO2", + "pCO2 (bga)", + "pH", + "pO2", + "pO2 (bga)", + "partial pressure", + "particle size", + "peak analyte amount", + "peak load force", + "peak onset temperature", + "peak temperature", + "plate heater temperature", + "plate temperature", + "plate well count", + "polarity", + "polyol reservoir temperature", + "position count", + "power", + "pressure", + "probe volume", + "protein attenuation coefficient", + "purity", + "qNMR purity result", + "reference material weight", + "reflectance", + "refractive index", + "relative humidity", + "relative intensity", + "relative permittivity", + "relative pressure (BET)", + "relative response", + "relative weight loss on drying", + "reservoir temperature", + "rotational speed", + "sample temperature", + "sample thickness", + "sample weight", + "sample weight before drying", + "sample width", + "saturated gas flow rate", + "saturation vapor pressure", + "seal initiation temperature", + "size (datum)", + "solvent reservoir temperature", + "specific enthalpy of fusion", + "specific enthalpy of sublimation", + "specific enthalpy of vaporization", + "specific heat capacity", + "specific rotation", + "specific surface area", + "start height", + "stirring rate", + "strain", + "stress", + "tablet thickness", + "tare weight", + "temperature", + "temperature rate", + "thermal conductance", + "thermal conductivity", + "thickness", + "titer", + "torque", + "total cell diameter", + "total foam height", + "total gas flow rate", + "total material height", + "transition enthalpy", + "transmittance", + "turbidity", + "velocity", + "viscosity", + "void volume", + "voltage", + "voltage range", + "volume", + "volume concentration", + "volume fraction", + "water mass concentration", + "water mass fraction", + "wavelength", + "wavenumber", + "weight loss", + "well volume", + "width", + "yield strain", + "yield stress" + ], + "type": "string" + } + ] + } + }, + "required": [ + "statistical feature" + ] + } + } + } + }, + "techniqueAggregateDocument": { + "$asm.pattern": "aggregate datum", + "properties": { + "analysis sequence document": { + "$asm.pattern": "aggregate datum", + "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0003054", + "properties": { + "end time": { + "$asm.pattern": "value datum", + "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0002423", + "$asm.type": "http://www.w3.org/2001/XMLSchema#dateTime", + "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/core.schema#/$defs/tDateTimeValue" + }, + "file name": { + "$asm.pattern": "value datum", + "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0001926", + "$asm.type": "http://www.w3.org/2001/XMLSchema#string", + "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/core.schema#/$defs/tStringValue" + }, + "identifier": { + "$asm.pattern": "value datum", + "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0000917", + "$asm.type": "http://www.w3.org/2001/XMLSchema#string", + "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/core.schema#/$defs/tStringValue" + }, + "method identifier": { + "$asm.pattern": "value datum", + "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0002034", + "$asm.type": "http://www.w3.org/2001/XMLSchema#string", + "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/core.schema#/$defs/tStringValue" + }, + "method name": { + "$asm.pattern": "value datum", + "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0001606", + "$asm.type": "http://www.w3.org/2001/XMLSchema#string", + "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/core.schema#/$defs/tStringValue" + }, + "start time": { + "$asm.pattern": "value datum", + "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0002422", + "$asm.type": "http://www.w3.org/2001/XMLSchema#dateTime", + "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/core.schema#/$defs/tDateTimeValue" + }, + "UNC path": { + "$asm.pattern": "value datum", + "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0001906", + "$asm.type": "http://www.w3.org/2001/XMLSchema#string", + "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/core.schema#/$defs/tStringValue" + }, + "version number": { + "$asm.pattern": "value datum", + "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0001700", + "$asm.type": "http://www.w3.org/2001/XMLSchema#string", + "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/core.schema#/$defs/tStringValue" + }, + "written name": { + "$asm.pattern": "value datum", + "$asm.property-class": "http://purl.obolibrary.org/obo/IAO_0000590", + "$asm.type": "http://www.w3.org/2001/XMLSchema#string", + "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/core.schema#/$defs/tStringValue" + } + }, + "required": [ + "written name" + ], + "type": "object" + }, + "calculated data aggregate document": { + "allOf": [ + { + "$ref": "#/$defs/calculatedDataAggregateDocument" + } + ] + }, + "custom information aggregate document": { + "allOf": [ + { + "$ref": "#/$defs/customInformationAggregateDocument" + } + ] + }, + "data system document": { + "$asm.pattern": "aggregate datum", + "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0002771", + "oneOf": [ + { + "required": [ + "UNC path", + "file name" + ] + }, + { + "required": [ + "database primary key" + ] + } + ], + "properties": { + "ASM converter name": { + "$asm.pattern": "value datum", + "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0002748", + "$asm.type": "http://www.w3.org/2001/XMLSchema#string", + "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/core.schema#/$defs/tStringValue" + }, + "ASM converter version": { + "$asm.pattern": "value datum", + "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0002749", + "$asm.type": "http://www.w3.org/2001/XMLSchema#string", + "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/core.schema#/$defs/tStringValue" + }, + "ASM file identifier": { + "$asm.pattern": "value datum", + "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0002969", + "$asm.type": "http://www.w3.org/2001/XMLSchema#string", + "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/core.schema#/$defs/tStringValue" + }, + "data system instance identifier": { + "$asm.pattern": "value datum", + "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0002772", + "$asm.type": "http://www.w3.org/2001/XMLSchema#string", + "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/core.schema#/$defs/tStringValue" + }, + "database primary key": { + "$asm.pattern": "value datum", + "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0002041", + "$asm.type": "http://www.w3.org/2001/XMLSchema#string", + "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/core.schema#/$defs/tStringValue" + }, + "file name": { + "$asm.pattern": "value datum", + "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0001926", + "$asm.type": "http://www.w3.org/2001/XMLSchema#string", + "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/core.schema#/$defs/tStringValue" + }, + "software name": { + "$asm.pattern": "value datum", + "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0002802", + "$asm.type": "http://www.w3.org/2001/XMLSchema#string", + "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/core.schema#/$defs/tStringValue" + }, + "software version": { + "$asm.pattern": "value datum", + "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0001700", + "$asm.type": "http://www.w3.org/2001/XMLSchema#string", + "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/core.schema#/$defs/tStringValue" + }, + "UNC path": { + "$asm.pattern": "value datum", + "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0001906", + "$asm.type": "http://www.w3.org/2001/XMLSchema#string", + "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/core.schema#/$defs/tStringValue" + }, + "custom information aggregate document": { + "allOf": [ + { + "$ref": "#/$defs/customInformationAggregateDocument" + } + ] + } + }, + "required": [ + "ASM file identifier", + "data system instance identifier" + ], + "type": "object" + }, + "device system document": { + "$asm.pattern": "aggregate datum", + "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0002526", + "properties": { + "asset management identifier": { + "$asm.pattern": "value datum", + "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0001976", + "$asm.type": "http://www.w3.org/2001/XMLSchema#string", + "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/core.schema#/$defs/tStringValue" + }, + "brand name": { + "$asm.pattern": "value datum", + "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0001680", + "$asm.type": "http://www.w3.org/2001/XMLSchema#string", + "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/core.schema#/$defs/tStringValue" + }, + "description": { + "$asm.pattern": "any datum", + "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0000922" + }, + "device document": { + "$asm.array-mixed": false, + "$asm.array-ordered": true, + "$asm.pattern": "indexed datum", + "items": { + "allOf": [ + { + "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0002567", + "properties": { + "brand name": { + "$asm.pattern": "value datum", + "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0001680", + "$asm.type": "http://www.w3.org/2001/XMLSchema#string", + "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/core.schema#/$defs/tStringValue" + }, + "device identifier": { + "$asm.pattern": "value datum", + "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0002018", + "$asm.type": "http://www.w3.org/2001/XMLSchema#string", + "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/core.schema#/$defs/tStringValue" + }, + "device type": { + "$asm.pattern": "value datum", + "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0002568", + "$asm.type": "http://www.w3.org/2001/XMLSchema#string", + "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/core.schema#/$defs/tStringValue" + }, + "equipment serial number": { + "$asm.pattern": "value datum", + "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0001119", + "$asm.type": "http://www.w3.org/2001/XMLSchema#string", + "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/core.schema#/$defs/tStringValue" + }, + "firmware version": { + "$asm.pattern": "value datum", + "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0001259", + "$asm.type": "http://www.w3.org/2001/XMLSchema#string", + "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/core.schema#/$defs/tStringValue" + }, + "model number": { + "$asm.pattern": "value datum", + "$asm.property-class": "http://purl.obolibrary.org/obo/IAO_0000017", + "$asm.type": "http://www.w3.org/2001/XMLSchema#string", + "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/core.schema#/$defs/tStringValue" + }, + "product manufacturer": { + "$asm.pattern": "value datum", + "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0001258", + "$asm.type": "http://www.w3.org/2001/XMLSchema#string", + "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/core.schema#/$defs/tStringValue" + }, + "written name": { + "$asm.pattern": "value datum", + "$asm.property-class": "http://purl.obolibrary.org/obo/IAO_0000590", + "$asm.type": "http://www.w3.org/2001/XMLSchema#string", + "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/core.schema#/$defs/tStringValue" + }, + "custom information aggregate document": { + "allOf": [ + { + "$ref": "#/$defs/customInformationAggregateDocument" + } + ] + } + }, + "required": [ + "device type" + ], + "type": "object" + }, + { + "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/core.schema#/$defs/orderedItem" + } + ] + }, + "minItems": 1, + "type": "array" + }, + "device identifier": { + "$asm.pattern": "value datum", + "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0002018", + "$asm.type": "http://www.w3.org/2001/XMLSchema#string", + "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/core.schema#/$defs/tStringValue" + }, + "equipment serial number": { + "$asm.pattern": "value datum", + "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0001119", + "$asm.type": "http://www.w3.org/2001/XMLSchema#string", + "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/core.schema#/$defs/tStringValue" + }, + "firmware version": { + "$asm.pattern": "value datum", + "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0001259", + "$asm.type": "http://www.w3.org/2001/XMLSchema#string", + "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/core.schema#/$defs/tStringValue" + }, + "model number": { + "$asm.pattern": "value datum", + "$asm.property-class": "http://purl.obolibrary.org/obo/IAO_0000017", + "$asm.type": "http://www.w3.org/2001/XMLSchema#string", + "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/core.schema#/$defs/tStringValue" + }, + "product manufacturer": { + "$asm.pattern": "value datum", + "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0001258", + "$asm.type": "http://www.w3.org/2001/XMLSchema#string", + "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/core.schema#/$defs/tStringValue" + }, + "custom information aggregate document": { + "allOf": [ + { + "$ref": "#/$defs/customInformationAggregateDocument" + } + ] + } + }, + "type": "object" + }, + "electronic project record": { + "allOf": [ + { + "$ref": "#/$defs/electronicProjectRecord" + } + ] + }, + "electronic signature aggregate document": { + "allOf": [ + { + "$ref": "#/$defs/electronicSignatureAggregateDocument" + } + ] + }, + "processed data aggregate document": { + "allOf": [ + { + "$ref": "#/$defs/processedDataAggregateDocument" + } + ] + }, + "statistics aggregate document": { + "allOf": [ + { + "$ref": "#/$defs/statisticsAggregateDocument" + } + ] + } + }, + "type": "object" + }, + "techniqueDocument": { + "$asm.pattern": "aggregate datum", + "properties": { + "analyst": { + "$asm.pattern": "value datum", + "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0001116", + "$asm.type": "http://www.w3.org/2001/XMLSchema#string", + "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/core.schema#/$defs/tStringValue" + }, + "electronic project record": { + "allOf": [ + { + "$ref": "#/$defs/electronicProjectRecord" + } + ] + }, + "measurement aggregate document": { + "$asm.pattern": "aggregate datum", + "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0002374", + "properties": { + "calculated data aggregate document": { + "allOf": [ + { + "$ref": "#/$defs/calculatedDataAggregateDocument" + } + ] + }, + "custom information aggregate document": { + "allOf": [ + { + "$ref": "#/$defs/customInformationAggregateDocument" + } + ] + }, + "diagnostic trace aggregate document": { + "$asm.pattern": "aggregate datum", + "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0002705", + "properties": { + "diagnostic trace document": { + "$asm.array-mixed": false, + "$asm.array-ordered": false, + "$asm.pattern": "indexed datum", + "items": { + "$asm.pattern": "aggregate datum", + "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0002706", + "patternProperties": { + "data cube$": { + "$asm.pattern": "datacube", + "$asm.property-class": "http://purl.org/linked-data/cube#DataSet", + "allOf": [ + { + "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/cube.schema#/$defs/tDatacube" + } + ] + } + }, + "properties": { + "description": { + "$asm.pattern": "any datum", + "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0000922" + }, + "custom information aggregate document": { + "allOf": [ + { + "$ref": "#/$defs/customInformationAggregateDocument" + } + ] + } + }, + "required": [ + "description" + ], + "type": "object" + }, + "minItems": 0, + "type": "array" + }, + "custom information aggregate document": { + "allOf": [ + { + "$ref": "#/$defs/customInformationAggregateDocument" + } + ] + } + }, + "type": "object" + }, + "error aggregate document": { + "allOf": [ + { + "$ref": "#/$defs/errorAggregateDocument" + } + ] + }, + "image aggregate document": { + "allOf": [ + { + "$ref": "#/$defs/imageAggregateDocument" + } + ] + }, + "measurement document": { + "$asm.array-mixed": false, + "$asm.array-ordered": false, + "$asm.pattern": "indexed datum", + "items": { + "$asm.pattern": "aggregate datum", + "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0002375", + "type": "object", + "properties": { + "calculated data aggregate document": { + "allOf": [ + { + "$ref": "#/$defs/calculatedDataAggregateDocument" + } + ] + }, + "custom information aggregate document": { + "allOf": [ + { + "$ref": "#/$defs/customInformationAggregateDocument" + } + ] + }, + "detection type": { + "$asm.pattern": "value datum", + "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0002534", + "$asm.type": "http://www.w3.org/2001/XMLSchema#string", + "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/core.schema#/$defs/tStringValue" + }, + "device control aggregate document": { + "$asm.pattern": "aggregate datum", + "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0002722", + "type": "object", + "properties": { + "device control document": { + "$asm.array-mixed": false, + "$asm.array-ordered": true, + "$asm.pattern": "indexed datum", + "type": "array", + "minItems": 1, + "items": { + "allOf": [ + { + "$asm.pattern": "aggregate datum", + "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0002723", + "type": "object", + "properties": { + "brand name": { + "$asm.pattern": "value datum", + "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0001680", + "$asm.type": "http://www.w3.org/2001/XMLSchema#string", + "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/core.schema#/$defs/tStringValue" + }, + "detection type": { + "$asm.pattern": "value datum", + "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0002534", + "$asm.type": "http://www.w3.org/2001/XMLSchema#string", + "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/core.schema#/$defs/tStringValue" + }, + "device identifier": { + "$asm.pattern": "value datum", + "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0002018", + "$asm.type": "http://www.w3.org/2001/XMLSchema#string", + "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/core.schema#/$defs/tStringValue" + }, + "device type": { + "$asm.pattern": "value datum", + "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0002568", + "$asm.type": "http://www.w3.org/2001/XMLSchema#string", + "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/core.schema#/$defs/tStringValue" + }, + "equipment serial number": { + "$asm.pattern": "value datum", + "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0001119", + "$asm.type": "http://www.w3.org/2001/XMLSchema#string", + "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/core.schema#/$defs/tStringValue" + }, + "firmware version": { + "$asm.pattern": "value datum", + "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0001259", + "$asm.type": "http://www.w3.org/2001/XMLSchema#string", + "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/core.schema#/$defs/tStringValue" + }, + "model number": { + "$asm.pattern": "value datum", + "$asm.property-class": "http://purl.obolibrary.org/obo/IAO_0000017", + "$asm.type": "http://www.w3.org/2001/XMLSchema#string", + "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/core.schema#/$defs/tStringValue" + }, + "product manufacturer": { + "$asm.pattern": "value datum", + "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0001258", + "$asm.type": "http://www.w3.org/2001/XMLSchema#string", + "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/core.schema#/$defs/tStringValue" + }, + "custom information aggregate document": { + "allOf": [ + { + "$ref": "#/$defs/customInformationAggregateDocument" + } + ] + } + }, + "required": [ + "device type" + ] + }, + { + "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/core.schema#/$defs/orderedItem" + } + ] + } + }, + "custom information aggregate document": { + "allOf": [ + { + "$ref": "#/$defs/customInformationAggregateDocument" + } + ] + } + }, + "required": [ + "device control document" + ] + }, + "electronic project record": { + "allOf": [ + { + "$ref": "#/$defs/electronicProjectRecord" + } + ] + }, + "error aggregate document": { + "allOf": [ + { + "$ref": "#/$defs/errorAggregateDocument" + } + ] + }, + "image aggregate document": { + "allOf": [ + { + "$ref": "#/$defs/imageAggregateDocument" + } + ] + }, + "measurement identifier": { + "$asm.pattern": "value datum", + "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0001121", + "$asm.type": "http://www.w3.org/2001/XMLSchema#string", + "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/core.schema#/$defs/tStringValue" + }, + "measurement time": { + "$asm.pattern": "value datum", + "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0000952", + "$asm.type": "http://www.w3.org/2001/XMLSchema#dateTimeStamp", + "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/core.schema#/$defs/tDateTimeStampValue" + }, + "processed data aggregate document": { + "allOf": [ + { + "$ref": "#/$defs/processedDataAggregateDocument" + } + ] + }, + "sample document": { + "$asm.pattern": "aggregate datum", + "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0002083", + "properties": { + "batch identifier": { + "$asm.pattern": "value datum", + "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0001120", + "$asm.type": "http://www.w3.org/2001/XMLSchema#string", + "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/core.schema#/$defs/tStringValue" + }, + "description": { + "$asm.pattern": "any datum", + "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0000922" + }, + "sample identifier": { + "$asm.pattern": "value datum", + "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0001118", + "$asm.type": "http://www.w3.org/2001/XMLSchema#string", + "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/core.schema#/$defs/tStringValue" + }, + "sample role type": { + "$asm.pattern": "class datum", + "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0002242", + "allOf": [ + { + "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/core.schema#/$defs/tClass" + }, + { + "$asm.value-sub-class-of": "http://purl.allotrope.org/ontologies/role#AFRL_0000035", + "enum": [ + "control sample role", + "standard sample role", + "validation sample role", + "experiment sample role", + "sample role", + "spiked sample role", + "blank role", + "unknown sample role", + "calibration sample role", + "unspiked sample role", + "specimen role", + "quality control sample role", + "reference sample role" + ], + "type": "string" + } + ] + }, + "written name": { + "$asm.pattern": "value datum", + "$asm.property-class": "http://purl.obolibrary.org/obo/IAO_0000590", + "$asm.type": "http://www.w3.org/2001/XMLSchema#string", + "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/core.schema#/$defs/tStringValue" + }, + "custom information aggregate document": { + "allOf": [ + { + "$ref": "#/$defs/customInformationAggregateDocument" + } + ] + } + }, + "required": [ + "sample identifier" + ], + "type": "object" + }, + "statistics aggregate document": { + "allOf": [ + { + "$ref": "#/$defs/statisticsAggregateDocument" + } + ] + } + }, + "required": [ + "sample document", + "device control aggregate document" + ] + }, + "minItems": 1, + "type": "array" + }, + "processed data aggregate document": { + "allOf": [ + { + "$ref": "#/$defs/processedDataAggregateDocument" + } + ] + }, + "statistics aggregate document": { + "allOf": [ + { + "$ref": "#/$defs/statisticsAggregateDocument" + } + ] + } + }, + "required": [ + "measurement document" + ], + "type": "object" + }, + "submitter": { + "$asm.pattern": "value datum", + "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0002531", + "$asm.type": "http://www.w3.org/2001/XMLSchema#string", + "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/core.schema#/$defs/tStringValue" + } + }, + "required": [ + "measurement aggregate document" + ], + "type": "object" + } + } + }, + "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/core.schema": { + "$id": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/core.schema", + "title": "Schema for leaf node values.", + "$defs": { + "asm": { + "properties": { + "$asm.manifest": { + "oneOf": [ + { + "type": "string", + "format": "iri" + }, + { + "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/manifest.schema" + } + ] + } + } + }, + "tQuantityValue": { + "type": "object", + "properties": { + "value": { + "type": "number" + }, + "unit": { + "$ref": "#/$defs/tUnit" + }, + "has statistic datum role": { + "$ref": "#/$defs/tStatisticDatumRole" + }, + "@type": { + "$ref": "#/$defs/tClass" + } + }, + "$asm.type": "http://qudt.org/schema/qudt#QuantityValue", + "required": [ + "value", + "unit" + ] + }, + "tNumericValue": { + "anyOf": [ + { + "$ref": "#/$defs/tByteValue" + }, + { + "$ref": "#/$defs/tShortValue" + }, + { + "$ref": "#/$defs/tIntValue" + }, + { + "$ref": "#/$defs/tLongValue" + }, + { + "$ref": "#/$defs/tUnsignedByteValue" + }, + { + "$ref": "#/$defs/tUnsignedShortValue" + }, + { + "$ref": "#/$defs/tUnsignedIntValue" + }, + { + "$ref": "#/$defs/tUnsignedLongValue" + }, + { + "$ref": "#/$defs/tFloatValue" + }, + { + "$ref": "#/$defs/tDoubleValue" + }, + { + "$ref": "#/$defs/tDecimalValue" + }, + { + "$ref": "#/$defs/tIntegerValue" + } + ] + }, + "tOrderedValue": { + "oneOf": [ + { + "$ref": "#/$defs/tNumericValue" + }, + { + "$ref": "#/$defs/tStringValue" + }, + { + "$ref": "#/$defs/tDateTimeValue" + }, + { + "$ref": "#/$defs/tDateTimeStampValue" + }, + { + "$ref": "#/$defs/tDateValue" + }, + { + "$ref": "#/$defs/tTimeValue" + } + ] + }, + "tRangeValue": { + "type": "object", + "properties": { + "minInclusive": { + "$ref": "#/$defs/tOrderedValue" + }, + "minExclusive": { + "$ref": "#/$defs/tOrderedValue" + }, + "maxInclusive": { + "$ref": "#/$defs/tOrderedValue" + }, + "maxExclusive": { + "$ref": "#/$defs/tOrderedValue" + }, + "unit": { + "$ref": "#/$defs/tUnit" + } + }, + "dependencies": { + "minInclusive": { + "not": { + "required": [ + "minExclusive" + ] + } + }, + "minExclusive": { + "not": { + "required": [ + "min" + ] + } + }, + "maxInclusive": { + "not": { + "required": [ + "maxExclusive" + ] + } + }, + "maxExclusive": { + "not": { + "required": [ + "max" + ] + } + } + }, + "$asm.type": "http://purl.allotrope.org/ontologies/common#AFC_0000021" + }, + "tStatisticDatumRole": { + "description": "A statistic datum role.", + "$asm.lookup-property": "http://www.w3.org/2004/02/skos/core#prefLabel", + "$asm.type": "http://www.w3.org/2000/01/rdf-schema#Class", + "type": "string", + "enum": [ + "arithmetic mean role", + "median role", + "relative standard deviation role", + "skewness role", + "standard deviation role", + "variance role", + "maximum value role", + "minimum value role", + "initial value role", + "final value role" + ], + "$asm.value-sub-class-of": "http://purl.allotrope.org/ontologies/role#AFRL_0000328" + }, + "tUnit": { + "description": "A unit is referenced by its QUDT symbol. It MUST be unique within the QUDT units defined in the vocabularies declared in the manifest.", + "type": "string", + "$asm.lookup-property": "http://purl.allotrope.org/ontology/qudt-ext/schema#symbol", + "$asm.type": "http://qudt.org/schema/qudt#Unit" + }, + "tBooleanValue": { + "description": "A boolean value.", + "$asm.type": "http://www.w3.org/2001/XMLSchema#boolean", + "oneOf": [ + { + "type": "boolean" + }, + { + "type": "object", + "properties": { + "@type": { + "$ref": "#/$defs/tClass" + }, + "value": { + "type": "boolean" + } + }, + "required": [ + "@type", + "value" + ] + } + ] + }, + "tDecimalValue": { + "description": "A number value stored as an XSD decimal.", + "$asm.type": "http://www.w3.org/2001/XMLSchema#decimal", + "oneOf": [ + { + "type": "number" + }, + { + "type": "object", + "properties": { + "@type": { + "$ref": "#/$defs/tClass" + }, + "value": { + "type": "number" + } + }, + "required": [ + "@type", + "value" + ] + } + ] + }, + "tDoubleValue": { + "description": "A number value stored as an XSD double.", + "$asm.type": "http://www.w3.org/2001/XMLSchema#double", + "oneOf": [ + { + "type": "number" + }, + { + "type": "object", + "properties": { + "@type": { + "$ref": "#/$defs/tClass" + }, + "value": { + "type": "number" + } + }, + "required": [ + "@type", + "value" + ] + } + ] + }, + "tFloatValue": { + "description": "A number value stored as an XSD float.", + "$asm.type": "http://www.w3.org/2001/XMLSchema#float", + "oneOf": [ + { + "type": "number" + }, + { + "type": "object", + "properties": { + "@type": { + "$ref": "#/$defs/tClass" + }, + "value": { + "type": "number" + } + }, + "required": [ + "@type", + "value" + ] + } + ] + }, + "tStringValue": { + "description": "A literal string in UTF-8 encoding.", + "$asm.type": "http://www.w3.org/2001/XMLSchema#string", + "oneOf": [ + { + "type": "string" + }, + { + "type": "object", + "properties": { + "@type": { + "$ref": "#/$defs/tClass" + }, + "value": { + "type": "string" + } + }, + "required": [ + "@type", + "value" + ] + } + ] + }, + "tByteValue": { + "description": "A signed 8 bit integer value.", + "$asm.type": "http://www.w3.org/2001/XMLSchema#byte", + "oneOf": [ + { + "type": "integer", + "minimum": -128, + "maximum": 127 + }, + { + "type": "object", + "properties": { + "@type": { + "$ref": "#/$defs/tClass" + }, + "value": { + "type": "integer", + "minimum": -128, + "maximum": 127 + } + }, + "required": [ + "@type", + "value" + ] + } + ] + }, + "tShortValue": { + "description": "A signed 16 bit integer value.", + "$asm.type": "http://www.w3.org/2001/XMLSchema#short", + "oneOf": [ + { + "type": "integer", + "minimum": -32768, + "maximum": 32767 + }, + { + "type": "object", + "properties": { + "@type": { + "$ref": "#/$defs/tClass" + }, + "value": { + "type": "integer", + "minimum": -32768, + "maximum": 32767 + } + }, + "required": [ + "@type", + "value" + ] + } + ] + }, + "tIntValue": { + "description": "A signed 32 bit integer value.", + "$asm.type": "http://www.w3.org/2001/XMLSchema#int", + "oneOf": [ + { + "type": "integer", + "minimum": -2147483648, + "maximum": 2147483647 + }, + { + "type": "object", + "properties": { + "@type": { + "$ref": "#/$defs/tClass" + }, + "value": { + "type": "integer", + "minimum": -2147483648, + "maximum": 2147483647 + } + }, + "required": [ + "@type", + "value" + ] + } + ] + }, + "tLongValue": { + "description": "A signed 64 bit integer value.", + "$asm.type": "http://www.w3.org/2001/XMLSchema#long", + "oneOf": [ + { + "type": "integer", + "minimum": -9223372036854776000, + "maximum": 9223372036854776000 + }, + { + "type": "object", + "properties": { + "@type": { + "$ref": "#/$defs/tClass" + }, + "value": { + "type": "integer", + "minimum": -9223372036854776000, + "maximum": 9223372036854776000 + } + }, + "required": [ + "@type", + "value" + ] + } + ] + }, + "tUnsignedByteValue": { + "description": "An unsigned 8 bit integer value.", + "$asm.type": "http://www.w3.org/2001/XMLSchema#unsignedByte", + "oneOf": [ + { + "type": "integer", + "minimum": 0, + "maximum": 255 + }, + { + "type": "object", + "properties": { + "@type": { + "$ref": "#/$defs/tClass" + }, + "value": { + "type": "integer", + "minimum": 0, + "maximum": 255 + } + }, + "required": [ + "@type", + "value" + ] + } + ] + }, + "tUnsignedShortValue": { + "description": "An unsigned 16 bit integer value.", + "$asm.type": "http://www.w3.org/2001/XMLSchema#unsignedShort", + "oneOf": [ + { + "type": "integer", + "minimum": 0, + "maximum": 65535 + }, + { + "type": "object", + "properties": { + "@type": { + "$ref": "#/$defs/tClass" + }, + "value": { + "type": "integer", + "minimum": 0, + "maximum": 65535 + } + }, + "required": [ + "@type", + "value" + ] + } + ] + }, + "tUnsignedIntValue": { + "description": "A signed 32 bit integer value.", + "$asm.type": "http://www.w3.org/2001/XMLSchema#unsignedInt", + "oneOf": [ + { + "type": "integer", + "minimum": 0, + "maximum": 4294967295 + }, + { + "type": "object", + "properties": { + "@type": { + "$ref": "#/$defs/tClass" + }, + "value": { + "type": "integer", + "minimum": 0, + "maximum": 4294967295 + } + }, + "required": [ + "@type", + "value" + ] + } + ] + }, + "tUnsignedLongValue": { + "description": "A signed 64 bit integer value.", + "$asm.type": "http://www.w3.org/2001/XMLSchema#unsignedLong", + "oneOf": [ + { + "type": "integer", + "minimum": 0, + "maximum": 18446744073709552000 + }, + { + "type": "object", + "properties": { + "@type": { + "$ref": "#/$defs/tClass" + }, + "value": { + "type": "integer", + "minimum": 0, + "maximum": 18446744073709552000 + } + }, + "required": [ + "@type", + "value" + ] + } + ] + }, + "tIntegerValue": { + "description": "A arbitrary length integer value.", + "$asm.type": "http://www.w3.org/2001/XMLSchema#integer", + "oneOf": [ + { + "type": "integer" + }, + { + "type": "object", + "properties": { + "@type": { + "$ref": "#/$defs/tClass" + }, + "value": { + "type": "integer" + } + }, + "required": [ + "@type", + "value" + ] + } + ] + }, + "tIRIValue": { + "description": "A literal IRI reference, not to be confused with a resource reference (tResource)", + "$asm.type": "http://www.w3.org/2001/XMLSchema#anyURI", + "oneOf": [ + { + "type": "string", + "format": "iri" + }, + { + "type": "object", + "properties": { + "@type": { + "$ref": "#/$defs/tClass" + }, + "value": { + "type": "string", + "format": "iri" + } + }, + "required": [ + "@type", + "value" + ] + } + ] + }, + "tDateTimeValue": { + "description": "All timestamps MUST be in ISO8601 date/time format.", + "$asm.type": "http://www.w3.org/2001/XMLSchema#dateTime", + "oneOf": [ + { + "type": "string", + "format": "date-time" + }, + { + "type": "object", + "properties": { + "@type": { + "$ref": "#/$defs/tClass" + }, + "value": { + "type": "string", + "format": "date-time" + } + }, + "required": [ + "@type", + "value" + ] + } + ] + }, + "tDateTimeStampValue": { + "description": "All timestamps MUST be in ISO8601 date/time format.", + "$asm.type": "http://www.w3.org/2001/XMLSchema#dateTimeStamp", + "oneOf": [ + { + "type": "string", + "format": "date-time" + }, + { + "type": "object", + "properties": { + "@type": { + "$ref": "#/$defs/tClass" + }, + "value": { + "type": "string", + "format": "date-time" + } + }, + "required": [ + "@type", + "value" + ] + } + ] + }, + "tDateValue": { + "description": "All timestamps MUST be in ISO8601 date format.", + "$asm.type": "http://www.w3.org/2001/XMLSchema#date", + "oneOf": [ + { + "type": "string", + "format": "date" + }, + { + "type": "object", + "properties": { + "@type": { + "$ref": "#/$defs/tClass" + }, + "value": { + "type": "string", + "format": "date" + } + }, + "required": [ + "@type", + "value" + ] + } + ] + }, + "tTimeValue": { + "description": "All timestamps MUST be in ISO8601 time format.", + "$asm.type": "http://www.w3.org/2001/XMLSchema#time", + "oneOf": [ + { + "type": "string", + "format": "time" + }, + { + "type": "object", + "properties": { + "@type": { + "$ref": "#/$defs/tClass" + }, + "value": { + "type": "string", + "format": "time" + } + }, + "required": [ + "@type", + "value" + ] + } + ] + }, + "tDurationValue": { + "description": "All durations MUST be in ISO8601 duration format.", + "$asm.type": "http://www.w3.org/2001/XMLSchema#duration", + "oneOf": [ + { + "type": "string", + "format": "duration" + }, + { + "type": "object", + "properties": { + "@type": { + "$ref": "#/$defs/tClass" + }, + "value": { + "type": "string", + "format": "duration" + } + }, + "required": [ + "@type", + "value" + ] + } + ] + }, + "tClass": { + "description": "A class reference is the SKOS preferred label of a class. This label MUST be unique within the transitive closure of the vocabulary referenced by the manifest.", + "type": "string", + "$asm.lookup-property": "http://www.w3.org/2004/02/skos/core#prefLabel", + "$asm.type": "http://www.w3.org/2000/01/rdf-schema#Class" + }, + "tObject": { + "description": "An JSON object with properties. This will be mapped to an RDF resource, which can be a blank node.", + "type": "object", + "$asm.type": "http://www.w3.org/2000/01/rdf-schema#Resource" + }, + "tArray": { + "description": "An JSON array. This will be mapped to a list, which can be a blank node.", + "type": "array", + "$asm.type": "http://purl.allotrope.org/ontologies/common#AFC_0000160" + }, + "tNamed": { + "description": "A reference to an arbitrary RDF resource identified by a SKOS preferred label. The label MUST be unique.", + "type": "string", + "$asm.lookup-property": "http://www.w3.org/2004/02/skos/core#prefLabel", + "$asm.type": "http://www.w3.org/2000/01/rdf-schema#Resource" + }, + "tResource": { + "description": "A reference to an arbitrary RDF resource identified by an IRI. The mapping to RDF will introduce a node reference instead of a literal IRI.", + "type": "string", + "format": "iri", + "$asm.type": "http://www.w3.org/2000/01/rdf-schema#Resource" + }, + "tReference": { + "description": "A reference to an object within an JSON document using JSON pointers.", + "type": "string", + "format": "uri-reference", + "$asm.type": "http://www.w3.org/2000/01/rdf-schema#Resource" + }, + "mixedItem": { + "description": "A schema for a polymorphic array item, which requires that each item has a @type declaration", + "properties": { + "@type": { + "$ref": "#/$defs/tClass" + } + }, + "required": [ + "@type" + ] + }, + "orderedItem": { + "description": "A schema for an array item, that is ordered in a not-natural way. This means that it MUST have an explicit @index property stating the position. The index value is a strict positive 32bit signed integer (excluding 0).", + "properties": { + "@index": { + "type": "integer", + "minimum": 1, + "maximum": 2147483647 + } + } + } + } + }, + "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/cube.schema": { + "$id": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/cube.schema", + "$defs": { + "tDatacube": { + "type": "object", + "properties": { + "label": { + "type": "string" + }, + "cube-structure": { + "$ref": "#/$defs/tDatacubeStructure" + }, + "data": { + "$ref": "#/$defs/tDatacubeData" + } + } + }, + "tDatacubeData": { + "allOf": [ + { + "$ref": "#/$defs/tDimensionData" + }, + { + "$ref": "#/$defs/tMeasureData" + } + ] + }, + "tDimensionData": { + "properties": { + "dimensions": { + "type": "array", + "items": { + "oneOf": [ + { + "$ref": "#/$defs/tDimensionArray" + }, + { + "$ref": "#/$defs/tFunction" + } + ] + } + } + }, + "required": [ + "dimensions" + ] + }, + "tMeasureData": { + "oneOf": [ + { + "properties": { + "measures": { + "type": "array", + "items": { + "$ref": "#/$defs/tMeasureArray" + } + } + }, + "required": [ + "measures" + ] + }, + { + "properties": { + "points": { + "type": "array", + "items": { + "$ref": "#/$defs/tTupleData" + } + } + }, + "required": [ + "points" + ] + } + ] + }, + "tTupleData": { + "$comment": "heterogenous array of data used in point arrays", + "type": "array", + "items": { + "oneOf": [ + { + "type": "number" + }, + { + "type": "boolean" + }, + { + "type": "string" + }, + { + "type": "null" + } + ] + } + }, + "tDimensionArray": { + "$comment": "homogenous array of data used in explicit dimension arrays", + "oneOf": [ + { + "$ref": "#/$defs/tNumberArray" + }, + { + "$ref": "#/$defs/tBooleanArray" + }, + { + "$ref": "#/$defs/tStringArray" + } + ] + }, + "tMeasureArray": { + "$comment": "homogenous array of data used in explicit measure arrays, may contain null values", + "oneOf": [ + { + "$ref": "#/$defs/tNumberOrNullArray" + }, + { + "$ref": "#/$defs/tBooleanOrNullArray" + }, + { + "$ref": "#/$defs/tStringOrNullArray" + } + ] + }, + "tNumberArray": { + "$comment": "homogenous array of numbers", + "type": "array", + "items": { + "type": "number" + } + }, + "tNumberOrNullArray": { + "$comment": "homogenous array of numbers, may contain null values", + "type": "array", + "items": { + "anyOf": [ + { + "type": "number" + }, + { + "type": "null" + } + ] + } + }, + "tBooleanArray": { + "$comment": "homogenous array of booleans", + "type": "array", + "items": { + "type": "boolean" + } + }, + "tBooleanOrNullArray": { + "$comment": "homogenous array of booleans, may contain null values", + "type": "array", + "items": { + "anyOf": [ + { + "type": "boolean" + }, + { + "type": "null" + } + ] + } + }, + "tStringArray": { + "$comment": "homogenous array of strings", + "type": "array", + "items": { + "type": "string" + } + }, + "tStringOrNullArray": { + "$comment": "homogenous array of strings, may contain null values", + "type": "array", + "items": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ] + } + }, + "tFunction": { + "type": "object", + "properties": { + "type": { + "enum": [ + "linear", + "logarithmic" + ], + "default": "linear" + }, + "start": { + "type": "number", + "default": 1 + }, + "length": { + "type": "number" + }, + "incr": { + "type": "number", + "default": 1 + } + } + }, + "tDatacubeStructure": { + "type": "object", + "properties": { + "dimensions": { + "type": "array", + "items": { + "$ref": "#/$defs/tDatacubeComponent" + }, + "uniqueItems": true + }, + "measures": { + "type": "array", + "items": { + "$ref": "#/$defs/tDatacubeComponent" + }, + "uniqueItems": true, + "minItems": 1 + } + }, + "required": [ + "dimensions", + "measures" + ] + }, + "tDatacubeComponent": { + "type": "object", + "properties": { + "@componentDatatype": { + "description": "Subset of XSD datatypes supported in simple models", + "default": "double", + "enum": [ + "double", + "float", + "decimal", + "integer", + "byte", + "int", + "short", + "long", + "string", + "boolean", + "dateTime" + ] + }, + "concept": { + "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/core.schema#/$defs/tClass" + }, + "unit": { + "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/core.schema#/$defs/tUnit" + }, + "scale": { + "enum": [ + "nominal", + "ordinal", + "cardinal", + "interval", + "range" + ] + }, + "$asm.fill-value": { + "type": [ + "string", + "number", + "integer", + "boolean" + ] + } + }, + "required": [ + "@componentDatatype", + "concept" + ], + "allOf": [ + { + "$ref": "#/$defs/cFillValueIEEE" + }, + { + "$ref": "#/$defs/cFillValueDecimal" + }, + { + "$ref": "#/$defs/cFillValueBoolean" + }, + { + "$ref": "#/$defs/cFillValueString" + } + ] + }, + "cFillValueBoolean": { + "$comment": "constraint on fill values if component data type is boolean", + "if": { + "properties": { + "@componentDatatype": { + "const": "boolean" + } + } + }, + "then": { + "$asm.fill-value": { + "type": "boolean", + "default": false + } + } + }, + "cFillValueIEEE": { + "$comment": "constraint on fill values if component data type is any numeric type", + "if": { + "properties": { + "@componentDatatype": { + "pattern": "double|float" + } + } + }, + "then": { + "$asm.fill-value": { + "oneOf": [ + { + "type": "number" + }, + { + "const": "NaN" + }, + { + "const": "+Infinity" + }, + { + "const": "-Infinity" + } + ], + "default": 0 + } + } + }, + "cFillValueDecimal": { + "$comment": "constraint on fill values if component data type is any numeric type", + "if": { + "properties": { + "@componentDatatype": { + "pattern": "integer|decimal|long|int|short|byte" + } + } + }, + "then": { + "$asm.fill-value": { + "type": "number", + "default": 0 + } + } + }, + "cFillValueString": { + "$comment": "constraint on fill values if component data type is string", + "if": { + "properties": { + "@componentDatatype": { + "pattern": "string|dateTime|date" + } + } + }, + "then": { + "$asm.fill-value": { + "type": "string", + "default": "" + } + } + } + } + }, + "http://purl.allotrope.org/json-schemas/qudt/REC/2024/09/units.schema": { + "$id": "http://purl.allotrope.org/json-schemas/qudt/REC/2024/09/units.schema", + "$comment": "Auto-generated from QUDT 1.1 and Allotrope Extensions for QUDT", + "$defs": { + "\"": { + "properties": { + "unit": { + "type": "string", + "const": "\"", + "$asm.unit-iri": "http://qudt.org/vocab/unit#SecondAngle" + } + }, + "required": [ + "unit" + ] + }, + "#": { + "properties": { + "unit": { + "type": "string", + "const": "#", + "$asm.unit-iri": "http://qudt.org/vocab/unit#Number" + } + }, + "required": [ + "unit" + ] + }, + "#/yr": { + "properties": { + "unit": { + "type": "string", + "const": "#/yr", + "$asm.unit-iri": "http://qudt.org/vocab/unit#NumberPerYear" + } + }, + "required": [ + "unit" + ] + }, + "%": { + "properties": { + "unit": { + "type": "string", + "const": "%", + "$asm.unit-iri": "http://qudt.org/vocab/unit#Percent" + } + }, + "required": [ + "unit" + ] + }, + "'": { + "properties": { + "unit": { + "type": "string", + "const": "'", + "$asm.unit-iri": "http://qudt.org/vocab/unit#MinuteAngle" + } + }, + "required": [ + "unit" + ] + }, + "(K^2) m/W": { + "properties": { + "unit": { + "type": "string", + "const": "(K^2) m/W", + "$asm.unit-iri": "http://qudt.org/vocab/unit#SquareMeterKelvinPerWatt" + } + }, + "required": [ + "unit" + ] + }, + "(unitless)": { + "properties": { + "unit": { + "type": "string", + "const": "(unitless)", + "$asm.unit-iri": "http://purl.allotrope.org/ontology/qudt-ext/unit#Unitless" + } + }, + "required": [ + "unit" + ] + }, + "(°F h ft^2)/Btu": { + "properties": { + "unit": { + "type": "string", + "const": "(°F h ft^2)/Btu", + "$asm.unit-iri": "http://qudt.org/vocab/unit#SquareFootHourDegreeFahrenheitPerBtu" + } + }, + "required": [ + "unit" + ] + }, + "1/cm": { + "properties": { + "unit": { + "type": "string", + "const": "1/cm", + "$asm.unit-iri": "http://purl.allotrope.org/ontology/qudt-ext/unit#ReciprocalCentimeter" + } + }, + "required": [ + "unit" + ] + }, + "10^-6/bar": { + "properties": { + "unit": { + "type": "string", + "const": "10^-6/bar", + "$asm.unit-iri": "http://purl.allotrope.org/ontology/qudt-ext/unit#DimensionlessMicroPerBar" + } + }, + "required": [ + "unit" + ] + }, + "10^6 cells/mL": { + "properties": { + "unit": { + "type": "string", + "const": "10^6 cells/mL", + "$asm.unit-iri": "http://purl.allotrope.org/ontology/qudt-ext/unit#MillionCellsPerMilliliter" + } + }, + "required": [ + "unit" + ] + }, + "10^9.CFU": { + "properties": { + "unit": { + "type": "string", + "const": "10^9.CFU", + "$asm.unit-iri": "http://purl.allotrope.org/ontology/qudt-ext/unit#BillionCFU" + } + }, + "required": [ + "unit" + ] + }, + "2θ": { + "properties": { + "unit": { + "type": "string", + "const": "2θ", + "$asm.unit-iri": "http://purl.allotrope.org/ontology/qudt-ext/unit#TwoTheta" + } + }, + "required": [ + "unit" + ] + }, + "A": { + "properties": { + "unit": { + "type": "string", + "const": "A", + "$asm.unit-iri": "http://qudt.org/vocab/unit#Ampere" + } + }, + "required": [ + "unit" + ] + }, + "A J^-1": { + "properties": { + "unit": { + "type": "string", + "const": "A J^-1", + "$asm.unit-iri": "http://qudt.org/vocab/unit#AmperePerJoule" + } + }, + "required": [ + "unit" + ] + }, + "A h": { + "properties": { + "unit": { + "type": "string", + "const": "A h", + "$asm.unit-iri": "http://qudt.org/vocab/unit#AmpereHour" + } + }, + "required": [ + "unit" + ] + }, + "A/deg": { + "properties": { + "unit": { + "type": "string", + "const": "A/deg", + "$asm.unit-iri": "http://qudt.org/vocab/unit#AmperePerDegree" + } + }, + "required": [ + "unit" + ] + }, + "A/m": { + "properties": { + "unit": { + "type": "string", + "const": "A/m", + "$asm.unit-iri": "http://qudt.org/vocab/unit#AmperePerMeter" + } + }, + "required": [ + "unit" + ] + }, + "A/m^2": { + "properties": { + "unit": { + "type": "string", + "const": "A/m^2", + "$asm.unit-iri": "http://qudt.org/vocab/unit#AmperePerSquareMeter" + } + }, + "required": [ + "unit" + ] + }, + "A/rad": { + "properties": { + "unit": { + "type": "string", + "const": "A/rad", + "$asm.unit-iri": "http://qudt.org/vocab/unit#AmperePerRadian" + } + }, + "required": [ + "unit" + ] + }, + "AMU": { + "properties": { + "unit": { + "type": "string", + "const": "AMU", + "$asm.unit-iri": "http://qudt.org/vocab/unit#UnifiedAtomicMassUnit" + } + }, + "required": [ + "unit" + ] + }, + "AT": { + "properties": { + "unit": { + "type": "string", + "const": "AT", + "$asm.unit-iri": "http://qudt.org/vocab/unit#TonAssay" + } + }, + "required": [ + "unit" + ] + }, + "AU": { + "properties": { + "unit": { + "type": "string", + "const": "AU", + "$asm.unit-iri": "http://purl.allotrope.org/ontology/qudt-ext/unit#AbsorbanceUnit" + } + }, + "required": [ + "unit" + ] + }, + "AU.s": { + "properties": { + "unit": { + "type": "string", + "const": "AU.s", + "$asm.unit-iri": "http://purl.allotrope.org/ontology/qudt-ext/unit#AbsorbanceUnitTimesSecond" + } + }, + "required": [ + "unit" + ] + }, + "At": { + "properties": { + "unit": { + "type": "string", + "const": "At", + "$asm.unit-iri": "http://qudt.org/vocab/unit#AmpereTurn" + } + }, + "required": [ + "unit" + ] + }, + "At/in": { + "properties": { + "unit": { + "type": "string", + "const": "At/in", + "$asm.unit-iri": "http://qudt.org/vocab/unit#AmpereTurnPerInch" + } + }, + "required": [ + "unit" + ] + }, + "At/m": { + "properties": { + "unit": { + "type": "string", + "const": "At/m", + "$asm.unit-iri": "http://qudt.org/vocab/unit#AmpereTurnPerMeter" + } + }, + "required": [ + "unit" + ] + }, + "B": { + "properties": { + "unit": { + "type": "string", + "const": "B", + "$asm.unit-iri": "http://qudt.org/vocab/unit#Byte" + } + }, + "required": [ + "unit" + ] + }, + "BPM": { + "properties": { + "unit": { + "type": "string", + "const": "BPM", + "$asm.unit-iri": "http://qudt.org/vocab/unit#HeartBeatsPerMinute" + } + }, + "required": [ + "unit" + ] + }, + "Bf": { + "properties": { + "unit": { + "type": "string", + "const": "Bf", + "$asm.unit-iri": "http://qudt.org/vocab/unit#BoardFoot" + } + }, + "required": [ + "unit" + ] + }, + "Bi": { + "properties": { + "unit": { + "type": "string", + "const": "Bi", + "$asm.unit-iri": "http://qudt.org/vocab/unit#Biot" + } + }, + "required": [ + "unit" + ] + }, + "Bq": { + "properties": { + "unit": { + "type": "string", + "const": "Bq", + "$asm.unit-iri": "http://qudt.org/vocab/unit#Becquerel" + } + }, + "required": [ + "unit" + ] + }, + "Bq/g": { + "properties": { + "unit": { + "type": "string", + "const": "Bq/g", + "$asm.unit-iri": "http://purl.allotrope.org/ontology/qudt-ext/unit#BecquerelPerGram" + } + }, + "required": [ + "unit" + ] + }, + "Btu (it)": { + "properties": { + "unit": { + "type": "string", + "const": "Btu (it)", + "$asm.unit-iri": "http://qudt.org/vocab/unit#BritishThermalUnitInternationalTable" + } + }, + "required": [ + "unit" + ] + }, + "Btu (th)": { + "properties": { + "unit": { + "type": "string", + "const": "Btu (th)", + "$asm.unit-iri": "http://qudt.org/vocab/unit#BritishThermalUnitThermochemical" + } + }, + "required": [ + "unit" + ] + }, + "Btu ft": { + "properties": { + "unit": { + "type": "string", + "const": "Btu ft", + "$asm.unit-iri": "http://qudt.org/vocab/unit#BtuFoot" + } + }, + "required": [ + "unit" + ] + }, + "Btu ft/(h ft^2 °F)": { + "properties": { + "unit": { + "type": "string", + "const": "Btu ft/(h ft^2 °F)", + "$asm.unit-iri": "http://qudt.org/vocab/unit#BtuFootPerSquareFootHourDegreeFahrenheit" + } + }, + "required": [ + "unit" + ] + }, + "Btu in": { + "properties": { + "unit": { + "type": "string", + "const": "Btu in", + "$asm.unit-iri": "http://qudt.org/vocab/unit#BtuInch" + } + }, + "required": [ + "unit" + ] + }, + "Btu in/(ft^2 s °F)": { + "properties": { + "unit": { + "type": "string", + "const": "Btu in/(ft^2 s °F)", + "$asm.unit-iri": "http://qudt.org/vocab/unit#BtuInchPerSquareFootSecondDegreeFahrenheit" + } + }, + "required": [ + "unit" + ] + }, + "Btu in/(h ft^2 °F)": { + "properties": { + "unit": { + "type": "string", + "const": "Btu in/(h ft^2 °F)", + "$asm.unit-iri": "http://qudt.org/vocab/unit#BtuInchPerSquareFootHourDegreeFahrenheit" + } + }, + "required": [ + "unit" + ] + }, + "Btu/(ft^2 s °F)": { + "properties": { + "unit": { + "type": "string", + "const": "Btu/(ft^2 s °F)", + "$asm.unit-iri": "http://qudt.org/vocab/unit#BtuPerSquareFootSecondDegreeFahrenheit" + } + }, + "required": [ + "unit" + ] + }, + "Btu/(h ft^2 °F)": { + "properties": { + "unit": { + "type": "string", + "const": "Btu/(h ft^2 °F)", + "$asm.unit-iri": "http://qudt.org/vocab/unit#BtuPerSquareFootHourDegreeFahrenheit" + } + }, + "required": [ + "unit" + ] + }, + "Btu/(h ft^2)": { + "properties": { + "unit": { + "type": "string", + "const": "Btu/(h ft^2)", + "$asm.unit-iri": "http://qudt.org/vocab/unit#BtuPerHourSquareFoot" + } + }, + "required": [ + "unit" + ] + }, + "Btu/(lb mol °F)": { + "properties": { + "unit": { + "type": "string", + "const": "Btu/(lb mol °F)", + "$asm.unit-iri": "http://qudt.org/vocab/unit#BtuPerPoundMoleDegreeFahrenheit" + } + }, + "required": [ + "unit" + ] + }, + "Btu/(lb mol)": { + "properties": { + "unit": { + "type": "string", + "const": "Btu/(lb mol)", + "$asm.unit-iri": "http://qudt.org/vocab/unit#BtuPerPoundMole" + } + }, + "required": [ + "unit" + ] + }, + "Btu/(lb °F)": { + "properties": { + "unit": { + "type": "string", + "const": "Btu/(lb °F)", + "$asm.unit-iri": "http://qudt.org/vocab/unit#BtuPerPoundDegreeFahrenheit" + } + }, + "required": [ + "unit" + ] + }, + "Btu/(lb °R)": { + "properties": { + "unit": { + "type": "string", + "const": "Btu/(lb °R)", + "$asm.unit-iri": "http://qudt.org/vocab/unit#BtuPerPoundDegreeRankine" + } + }, + "required": [ + "unit" + ] + }, + "Btu/(s ft^2)": { + "properties": { + "unit": { + "type": "string", + "const": "Btu/(s ft^2)", + "$asm.unit-iri": "http://qudt.org/vocab/unit#BtuPerSecondSquareFoot" + } + }, + "required": [ + "unit" + ] + }, + "Btu/ft^2": { + "properties": { + "unit": { + "type": "string", + "const": "Btu/ft^2", + "$asm.unit-iri": "http://qudt.org/vocab/unit#BtuPerSquareFoot" + } + }, + "required": [ + "unit" + ] + }, + "Btu/h": { + "properties": { + "unit": { + "type": "string", + "const": "Btu/h", + "$asm.unit-iri": "http://qudt.org/vocab/unit#BtuPerHour" + } + }, + "required": [ + "unit" + ] + }, + "Btu/lb": { + "properties": { + "unit": { + "type": "string", + "const": "Btu/lb", + "$asm.unit-iri": "http://qudt.org/vocab/unit#BtuPerPound" + } + }, + "required": [ + "unit" + ] + }, + "Btu/s": { + "properties": { + "unit": { + "type": "string", + "const": "Btu/s", + "$asm.unit-iri": "http://qudt.org/vocab/unit#BtuPerSecond" + } + }, + "required": [ + "unit" + ] + }, + "Btu/°F": { + "properties": { + "unit": { + "type": "string", + "const": "Btu/°F", + "$asm.unit-iri": "http://qudt.org/vocab/unit#BtuPerDegreeFahrenheit" + } + }, + "required": [ + "unit" + ] + }, + "Btu/°R": { + "properties": { + "unit": { + "type": "string", + "const": "Btu/°R", + "$asm.unit-iri": "http://qudt.org/vocab/unit#BtuPerDegreeRankine" + } + }, + "required": [ + "unit" + ] + }, + "C": { + "properties": { + "unit": { + "type": "string", + "const": "C", + "$asm.unit-iri": "http://qudt.org/vocab/unit#Coulomb" + } + }, + "required": [ + "unit" + ] + }, + "C m": { + "properties": { + "unit": { + "type": "string", + "const": "C m", + "$asm.unit-iri": "http://qudt.org/vocab/unit#CoulombMeter" + } + }, + "required": [ + "unit" + ] + }, + "C m^-2": { + "properties": { + "unit": { + "type": "string", + "const": "C m^-2", + "$asm.unit-iri": "http://qudt.org/vocab/unit#CoulombPerSquareMeter" + } + }, + "required": [ + "unit" + ] + }, + "C m^-3": { + "properties": { + "unit": { + "type": "string", + "const": "C m^-3", + "$asm.unit-iri": "http://qudt.org/vocab/unit#CoulombPerCubicMeter" + } + }, + "required": [ + "unit" + ] + }, + "C m^2": { + "properties": { + "unit": { + "type": "string", + "const": "C m^2", + "$asm.unit-iri": "http://qudt.org/vocab/unit#CoulombSquareMeter" + } + }, + "required": [ + "unit" + ] + }, + "C/kg": { + "properties": { + "unit": { + "type": "string", + "const": "C/kg", + "$asm.unit-iri": "http://qudt.org/vocab/unit#CoulombPerKilogram" + } + }, + "required": [ + "unit" + ] + }, + "C/m": { + "properties": { + "unit": { + "type": "string", + "const": "C/m", + "$asm.unit-iri": "http://qudt.org/vocab/unit#CoulombPerMeter" + } + }, + "required": [ + "unit" + ] + }, + "C/mol": { + "properties": { + "unit": { + "type": "string", + "const": "C/mol", + "$asm.unit-iri": "http://qudt.org/vocab/unit#CoulombPerMole" + } + }, + "required": [ + "unit" + ] + }, + "CCID50/mL": { + "properties": { + "unit": { + "type": "string", + "const": "CCID50/mL", + "$asm.unit-iri": "http://purl.allotrope.org/ontology/qudt-ext/unit#CCID50PerMilliliter" + } + }, + "required": [ + "unit" + ] + }, + "CFU": { + "properties": { + "unit": { + "type": "string", + "const": "CFU", + "$asm.unit-iri": "http://qudt.org/vocab/unit#ColonyFormingUnit" + } + }, + "required": [ + "unit" + ] + }, + "C^2 m^2 J^-1": { + "properties": { + "unit": { + "type": "string", + "const": "C^2 m^2 J^-1", + "$asm.unit-iri": "http://qudt.org/vocab/unit#SquareCoulombMeterPerJoule" + } + }, + "required": [ + "unit" + ] + }, + "C^3 m^3 J^-2": { + "properties": { + "unit": { + "type": "string", + "const": "C^3 m^3 J^-2", + "$asm.unit-iri": "http://qudt.org/vocab/unit#CubicCoulombMeterPerSquareJoule" + } + }, + "required": [ + "unit" + ] + }, + "C^4 m^4 J^-3": { + "properties": { + "unit": { + "type": "string", + "const": "C^4 m^4 J^-3", + "$asm.unit-iri": "http://qudt.org/vocab/unit#QuarticCoulombMeterPerCubicEnergy" + } + }, + "required": [ + "unit" + ] + }, + "Cal": { + "properties": { + "unit": { + "type": "string", + "const": "Cal", + "$asm.unit-iri": "http://qudt.org/vocab/unit#CalorieNutritional" + } + }, + "required": [ + "unit" + ] + }, + "Ci": { + "properties": { + "unit": { + "type": "string", + "const": "Ci", + "$asm.unit-iri": "http://qudt.org/vocab/unit#Curie" + } + }, + "required": [ + "unit" + ] + }, + "Counts": { + "properties": { + "unit": { + "type": "string", + "const": "Counts", + "$asm.unit-iri": "http://purl.allotrope.org/ontology/qudt-ext/unit#Counts" + } + }, + "required": [ + "unit" + ] + }, + "Counts.s": { + "properties": { + "unit": { + "type": "string", + "const": "Counts.s", + "$asm.unit-iri": "http://purl.allotrope.org/ontology/qudt-ext/unit#CountsTimesSecond" + } + }, + "required": [ + "unit" + ] + }, + "Counts/mL": { + "properties": { + "unit": { + "type": "string", + "const": "Counts/mL", + "$asm.unit-iri": "http://purl.allotrope.org/ontology/qudt-ext/unit#CountsPerMilliliter" + } + }, + "required": [ + "unit" + ] + }, + "Counts/s": { + "properties": { + "unit": { + "type": "string", + "const": "Counts/s", + "$asm.unit-iri": "http://purl.allotrope.org/ontology/qudt-ext/unit#CountsPerSecond" + } + }, + "required": [ + "unit" + ] + }, + "Counts/μL": { + "properties": { + "unit": { + "type": "string", + "const": "Counts/μL", + "$asm.unit-iri": "http://purl.allotrope.org/ontology/qudt-ext/unit#CountsPerMicroliter" + } + }, + "required": [ + "unit" + ] + }, + "D": { + "properties": { + "unit": { + "type": "string", + "const": "D", + "$asm.unit-iri": "http://qudt.org/vocab/unit#Debye" + } + }, + "required": [ + "unit" + ] + }, + "Da": { + "properties": { + "unit": { + "type": "string", + "const": "Da", + "$asm.unit-iri": "http://qudt.org/vocab/unit#Dalton" + } + }, + "required": [ + "unit" + ] + }, + "E_h": { + "properties": { + "unit": { + "type": "string", + "const": "E_h", + "$asm.unit-iri": "http://qudt.org/vocab/unit#Hartree" + } + }, + "required": [ + "unit" + ] + }, + "F": { + "properties": { + "unit": { + "type": "string", + "const": "F", + "$asm.unit-iri": "http://qudt.org/vocab/unit#Farad" + } + }, + "required": [ + "unit" + ] + }, + "F/m": { + "properties": { + "unit": { + "type": "string", + "const": "F/m", + "$asm.unit-iri": "http://qudt.org/vocab/unit#FaradPerMeter" + } + }, + "required": [ + "unit" + ] + }, + "FFU/mL": { + "properties": { + "unit": { + "type": "string", + "const": "FFU/mL", + "$asm.unit-iri": "http://purl.allotrope.org/ontology/qudt-ext/unit#FocusFormingUnitPerMilliliter" + } + }, + "required": [ + "unit" + ] + }, + "Fd": { + "properties": { + "unit": { + "type": "string", + "const": "Fd", + "$asm.unit-iri": "http://qudt.org/vocab/unit#Faraday" + } + }, + "required": [ + "unit" + ] + }, + "Fr": { + "properties": { + "unit": { + "type": "string", + "const": "Fr", + "$asm.unit-iri": "http://qudt.org/vocab/unit#Franklin" + } + }, + "required": [ + "unit" + ] + }, + "G": { + "properties": { + "unit": { + "type": "string", + "const": "G", + "$asm.unit-iri": "http://qudt.org/vocab/unit#Gravity" + } + }, + "required": [ + "unit" + ] + }, + "GHz": { + "properties": { + "unit": { + "type": "string", + "const": "GHz", + "$asm.unit-iri": "http://qudt.org/vocab/unit#GigaHertz" + } + }, + "required": [ + "unit" + ] + }, + "GU": { + "properties": { + "unit": { + "type": "string", + "const": "GU", + "$asm.unit-iri": "http://purl.allotrope.org/ontology/qudt-ext/unit#GlossUnit" + } + }, + "required": [ + "unit" + ] + }, + "Gal": { + "properties": { + "unit": { + "type": "string", + "const": "Gal", + "$asm.unit-iri": "http://qudt.org/vocab/unit#Gal" + } + }, + "required": [ + "unit" + ] + }, + "GeV": { + "properties": { + "unit": { + "type": "string", + "const": "GeV", + "$asm.unit-iri": "http://qudt.org/vocab/unit#GigaElectronVolt" + } + }, + "required": [ + "unit" + ] + }, + "GeV^-2": { + "properties": { + "unit": { + "type": "string", + "const": "GeV^-2", + "$asm.unit-iri": "http://qudt.org/vocab/unit#PerSquareGigaElectronVolt" + } + }, + "required": [ + "unit" + ] + }, + "Gi": { + "properties": { + "unit": { + "type": "string", + "const": "Gi", + "$asm.unit-iri": "http://qudt.org/vocab/unit#Gilbert" + } + }, + "required": [ + "unit" + ] + }, + "Gs": { + "properties": { + "unit": { + "type": "string", + "const": "Gs", + "$asm.unit-iri": "http://qudt.org/vocab/unit#Gauss" + } + }, + "required": [ + "unit" + ] + }, + "Gy": { + "properties": { + "unit": { + "type": "string", + "const": "Gy", + "$asm.unit-iri": "http://qudt.org/vocab/unit#Gray" + } + }, + "required": [ + "unit" + ] + }, + "Gy/s": { + "properties": { + "unit": { + "type": "string", + "const": "Gy/s", + "$asm.unit-iri": "http://qudt.org/vocab/unit#GrayPerSecond" + } + }, + "required": [ + "unit" + ] + }, + "H": { + "properties": { + "unit": { + "type": "string", + "const": "H", + "$asm.unit-iri": "http://qudt.org/vocab/unit#Henry" + } + }, + "required": [ + "unit" + ] + }, + "H/m": { + "properties": { + "unit": { + "type": "string", + "const": "H/m", + "$asm.unit-iri": "http://qudt.org/vocab/unit#HenryPerMeter" + } + }, + "required": [ + "unit" + ] + }, + "HP": { + "properties": { + "unit": { + "type": "string", + "const": "HP", + "$asm.unit-iri": "http://qudt.org/vocab/unit#Horsepower" + } + }, + "required": [ + "unit" + ] + }, + "Hz": { + "properties": { + "unit": { + "type": "string", + "const": "Hz", + "$asm.unit-iri": "http://qudt.org/vocab/unit#Hertz" + } + }, + "required": [ + "unit" + ] + }, + "Hz.s": { + "properties": { + "unit": { + "type": "string", + "const": "Hz.s", + "$asm.unit-iri": "http://purl.allotrope.org/ontology/qudt-ext/unit#HertzTimesSecond" + } + }, + "required": [ + "unit" + ] + }, + "Hz/K": { + "properties": { + "unit": { + "type": "string", + "const": "Hz/K", + "$asm.unit-iri": "http://qudt.org/vocab/unit#HertzPerKelvin" + } + }, + "required": [ + "unit" + ] + }, + "Hz/T": { + "properties": { + "unit": { + "type": "string", + "const": "Hz/T", + "$asm.unit-iri": "http://qudt.org/vocab/unit#HertzPerTesla" + } + }, + "required": [ + "unit" + ] + }, + "Hz/V": { + "properties": { + "unit": { + "type": "string", + "const": "Hz/V", + "$asm.unit-iri": "http://qudt.org/vocab/unit#HertzPerVolt" + } + }, + "required": [ + "unit" + ] + }, + "IU": { + "properties": { + "unit": { + "type": "string", + "const": "IU", + "$asm.unit-iri": "http://qudt.org/vocab/unit#InternationalUnit" + } + }, + "required": [ + "unit" + ] + }, + "IU/L": { + "properties": { + "unit": { + "type": "string", + "const": "IU/L", + "$asm.unit-iri": "http://qudt.org/vocab/unit#InternationalUnitPerLiter" + } + }, + "required": [ + "unit" + ] + }, + "J": { + "properties": { + "unit": { + "type": "string", + "const": "J", + "$asm.unit-iri": "http://qudt.org/vocab/unit#Joule" + } + }, + "required": [ + "unit" + ] + }, + "J T^-2": { + "properties": { + "unit": { + "type": "string", + "const": "J T^-2", + "$asm.unit-iri": "http://qudt.org/vocab/unit#JoulePerSquareTesla" + } + }, + "required": [ + "unit" + ] + }, + "J m mol^-1": { + "properties": { + "unit": { + "type": "string", + "const": "J m mol^-1", + "$asm.unit-iri": "http://qudt.org/vocab/unit#JouleMeterPerMole" + } + }, + "required": [ + "unit" + ] + }, + "J mol^-1 K^-1": { + "properties": { + "unit": { + "type": "string", + "const": "J mol^-1 K^-1", + "$asm.unit-iri": "http://qudt.org/vocab/unit#JoulePerMoleKelvin" + } + }, + "required": [ + "unit" + ] + }, + "J s": { + "properties": { + "unit": { + "type": "string", + "const": "J s", + "$asm.unit-iri": "http://qudt.org/vocab/unit#JouleSecond" + } + }, + "required": [ + "unit" + ] + }, + "J s mol^-1": { + "properties": { + "unit": { + "type": "string", + "const": "J s mol^-1", + "$asm.unit-iri": "http://qudt.org/vocab/unit#JouleSecondPerMole" + } + }, + "required": [ + "unit" + ] + }, + "J/(g °C)": { + "properties": { + "unit": { + "type": "string", + "const": "J/(g °C)", + "$asm.unit-iri": "http://purl.allotrope.org/ontology/qudt-ext/unit#JoulePerGramDegreeCelsius" + } + }, + "required": [ + "unit" + ] + }, + "J/(kg K Pa)": { + "properties": { + "unit": { + "type": "string", + "const": "J/(kg K Pa)", + "$asm.unit-iri": "http://qudt.org/vocab/unit#JoulePerKilogramKelvinPerPascal" + } + }, + "required": [ + "unit" + ] + }, + "J/(kg K m^3)": { + "properties": { + "unit": { + "type": "string", + "const": "J/(kg K m^3)", + "$asm.unit-iri": "http://qudt.org/vocab/unit#JoulePerKilogramKelvinPerCubicMeter" + } + }, + "required": [ + "unit" + ] + }, + "J/(kg K)": { + "properties": { + "unit": { + "type": "string", + "const": "J/(kg K)", + "$asm.unit-iri": "http://qudt.org/vocab/unit#JoulePerKilogramKelvin" + } + }, + "required": [ + "unit" + ] + }, + "J/(m^3 K)": { + "properties": { + "unit": { + "type": "string", + "const": "J/(m^3 K)", + "$asm.unit-iri": "http://qudt.org/vocab/unit#JoulePerCubicMeterKelvin" + } + }, + "required": [ + "unit" + ] + }, + "J/K": { + "properties": { + "unit": { + "type": "string", + "const": "J/K", + "$asm.unit-iri": "http://qudt.org/vocab/unit#JoulePerKelvin" + } + }, + "required": [ + "unit" + ] + }, + "J/T": { + "properties": { + "unit": { + "type": "string", + "const": "J/T", + "$asm.unit-iri": "http://qudt.org/vocab/unit#JoulePerTesla" + } + }, + "required": [ + "unit" + ] + }, + "J/g": { + "properties": { + "unit": { + "type": "string", + "const": "J/g", + "$asm.unit-iri": "http://purl.allotrope.org/ontology/qudt-ext/unit#JoulePerGram" + } + }, + "required": [ + "unit" + ] + }, + "J/kg": { + "properties": { + "unit": { + "type": "string", + "const": "J/kg", + "$asm.unit-iri": "http://qudt.org/vocab/unit#JoulePerKilogram" + } + }, + "required": [ + "unit" + ] + }, + "J/m^2": { + "properties": { + "unit": { + "type": "string", + "const": "J/m^2", + "$asm.unit-iri": "http://qudt.org/vocab/unit#JoulePerSquareMeter" + } + }, + "required": [ + "unit" + ] + }, + "J/m^3": { + "properties": { + "unit": { + "type": "string", + "const": "J/m^3", + "$asm.unit-iri": "http://qudt.org/vocab/unit#JoulePerCubicMeter" + } + }, + "required": [ + "unit" + ] + }, + "J/mol": { + "properties": { + "unit": { + "type": "string", + "const": "J/mol", + "$asm.unit-iri": "http://qudt.org/vocab/unit#JoulePerMole" + } + }, + "required": [ + "unit" + ] + }, + "J/°C": { + "properties": { + "unit": { + "type": "string", + "const": "J/°C", + "$asm.unit-iri": "http://purl.allotrope.org/ontology/qudt-ext/unit#JoulePerDegreeCelsius" + } + }, + "required": [ + "unit" + ] + }, + "K": { + "properties": { + "unit": { + "type": "string", + "const": "K", + "$asm.unit-iri": "http://qudt.org/vocab/unit#Kelvin" + } + }, + "required": [ + "unit" + ] + }, + "K-m/W": { + "properties": { + "unit": { + "type": "string", + "const": "K-m/W", + "$asm.unit-iri": "http://qudt.org/vocab/unit#MeterKelvinPerWatt" + } + }, + "required": [ + "unit" + ] + }, + "K/T": { + "properties": { + "unit": { + "type": "string", + "const": "K/T", + "$asm.unit-iri": "http://qudt.org/vocab/unit#KelvinPerTesla" + } + }, + "required": [ + "unit" + ] + }, + "K/W": { + "properties": { + "unit": { + "type": "string", + "const": "K/W", + "$asm.unit-iri": "http://qudt.org/vocab/unit#KelvinPerWatt" + } + }, + "required": [ + "unit" + ] + }, + "K/h": { + "properties": { + "unit": { + "type": "string", + "const": "K/h", + "$asm.unit-iri": "http://qudt.org/vocab/unit#KelvinPerHour" + } + }, + "required": [ + "unit" + ] + }, + "K/m": { + "properties": { + "unit": { + "type": "string", + "const": "K/m", + "$asm.unit-iri": "http://qudt.org/vocab/unit#KelvinPerMinute" + } + }, + "required": [ + "unit" + ] + }, + "K/s": { + "properties": { + "unit": { + "type": "string", + "const": "K/s", + "$asm.unit-iri": "http://qudt.org/vocab/unit#KelvinPerSecond" + } + }, + "required": [ + "unit" + ] + }, + "L": { + "properties": { + "unit": { + "type": "string", + "const": "L", + "$asm.unit-iri": "http://qudt.org/vocab/unit#Liter" + } + }, + "required": [ + "unit" + ] + }, + "L/(g cm)": { + "properties": { + "unit": { + "type": "string", + "const": "L/(g cm)", + "$asm.unit-iri": "http://purl.allotrope.org/ontology/qudt-ext/unit#LiterPerGramCentimeter" + } + }, + "required": [ + "unit" + ] + }, + "L/kg": { + "properties": { + "unit": { + "type": "string", + "const": "L/kg", + "$asm.unit-iri": "http://purl.allotrope.org/ontology/qudt-ext/unit#LiterPerKilogram" + } + }, + "required": [ + "unit" + ] + }, + "L/min": { + "properties": { + "unit": { + "type": "string", + "const": "L/min", + "$asm.unit-iri": "http://purl.allotrope.org/ontology/qudt-ext/unit#LiterPerMinute" + } + }, + "required": [ + "unit" + ] + }, + "L/s": { + "properties": { + "unit": { + "type": "string", + "const": "L/s", + "$asm.unit-iri": "http://purl.allotrope.org/ontology/qudt-ext/unit#LiterPerSecond" + } + }, + "required": [ + "unit" + ] + }, + "LU": { + "properties": { + "unit": { + "type": "string", + "const": "LU", + "$asm.unit-iri": "http://purl.allotrope.org/ontology/qudt-ext/unit#LuminescenceUnits" + } + }, + "required": [ + "unit" + ] + }, + "Lmb": { + "properties": { + "unit": { + "type": "string", + "const": "Lmb", + "$asm.unit-iri": "http://qudt.org/vocab/unit#Lambert" + } + }, + "required": [ + "unit" + ] + }, + "M": { + "properties": { + "unit": { + "type": "string", + "const": "M", + "$asm.unit-iri": "http://purl.allotrope.org/ontology/qudt-ext/unit#Molar" + } + }, + "required": [ + "unit" + ] + }, + "M$/Flight": { + "properties": { + "unit": { + "type": "string", + "const": "M$/Flight", + "$asm.unit-iri": "http://qudt.org/vocab/unit#MillionDollarsPerFlight" + } + }, + "required": [ + "unit" + ] + }, + "M$/yr": { + "properties": { + "unit": { + "type": "string", + "const": "M$/yr", + "$asm.unit-iri": "http://qudt.org/vocab/unit#MillionDollarsPerYear" + } + }, + "required": [ + "unit" + ] + }, + "MHz": { + "properties": { + "unit": { + "type": "string", + "const": "MHz", + "$asm.unit-iri": "http://qudt.org/vocab/unit#MegaHertz" + } + }, + "required": [ + "unit" + ] + }, + "MHz K^-1": { + "properties": { + "unit": { + "type": "string", + "const": "MHz K^-1", + "$asm.unit-iri": "http://qudt.org/vocab/unit#MegaHertzPerKelvin" + } + }, + "required": [ + "unit" + ] + }, + "MHz T^-1": { + "properties": { + "unit": { + "type": "string", + "const": "MHz T^-1", + "$asm.unit-iri": "http://qudt.org/vocab/unit#MegaHertzPerTesla" + } + }, + "required": [ + "unit" + ] + }, + "MPa": { + "properties": { + "unit": { + "type": "string", + "const": "MPa", + "$asm.unit-iri": "http://purl.allotrope.org/ontology/qudt-ext/unit#MegaPascal" + } + }, + "required": [ + "unit" + ] + }, + "MeV": { + "properties": { + "unit": { + "type": "string", + "const": "MeV", + "$asm.unit-iri": "http://qudt.org/vocab/unit#MegaElectronVolt" + } + }, + "required": [ + "unit" + ] + }, + "MeV fm": { + "properties": { + "unit": { + "type": "string", + "const": "MeV fm", + "$asm.unit-iri": "http://qudt.org/vocab/unit#MegaElectronVoltFemtometer" + } + }, + "required": [ + "unit" + ] + }, + "MeV/c": { + "properties": { + "unit": { + "type": "string", + "const": "MeV/c", + "$asm.unit-iri": "http://qudt.org/vocab/unit#MegaElectronVoltPerSpeedOfLight" + } + }, + "required": [ + "unit" + ] + }, + "MeV/cm": { + "properties": { + "unit": { + "type": "string", + "const": "MeV/cm", + "$asm.unit-iri": "http://qudt.org/vocab/unit#MegaElectronVoltPerCentimeter" + } + }, + "required": [ + "unit" + ] + }, + "Mx": { + "properties": { + "unit": { + "type": "string", + "const": "Mx", + "$asm.unit-iri": "http://qudt.org/vocab/unit#Maxwell" + } + }, + "required": [ + "unit" + ] + }, + "N": { + "properties": { + "unit": { + "type": "string", + "const": "N", + "$asm.unit-iri": "http://qudt.org/vocab/unit#Newton" + } + }, + "required": [ + "unit" + ] + }, + "N m": { + "properties": { + "unit": { + "type": "string", + "const": "N m", + "$asm.unit-iri": "http://qudt.org/vocab/unit#NewtonMeter" + } + }, + "required": [ + "unit" + ] + }, + "N/C": { + "properties": { + "unit": { + "type": "string", + "const": "N/C", + "$asm.unit-iri": "http://qudt.org/vocab/unit#NewtonPerCoulomb" + } + }, + "required": [ + "unit" + ] + }, + "N/kg": { + "properties": { + "unit": { + "type": "string", + "const": "N/kg", + "$asm.unit-iri": "http://qudt.org/vocab/unit#NewtonPerKilogram" + } + }, + "required": [ + "unit" + ] + }, + "N/m": { + "properties": { + "unit": { + "type": "string", + "const": "N/m", + "$asm.unit-iri": "http://qudt.org/vocab/unit#NewtonPerMeter" + } + }, + "required": [ + "unit" + ] + }, + "N/mm^2": { + "properties": { + "unit": { + "type": "string", + "const": "N/mm^2", + "$asm.unit-iri": "http://purl.allotrope.org/ontology/qudt-ext/unit#NewtonPerSquareMillimeter" + } + }, + "required": [ + "unit" + ] + }, + "NTU": { + "properties": { + "unit": { + "type": "string", + "const": "NTU", + "$asm.unit-iri": "http://qudt.org/vocab/unit#NephelometricTurbidityUnit" + } + }, + "required": [ + "unit" + ] + }, + "Nm/ct": { + "properties": { + "unit": { + "type": "string", + "const": "Nm/ct", + "$asm.unit-iri": "http://qudt.org/vocab/unit#Carat" + } + }, + "required": [ + "unit" + ] + }, + "Oe": { + "properties": { + "unit": { + "type": "string", + "const": "Oe", + "$asm.unit-iri": "http://qudt.org/vocab/unit#Oersted" + } + }, + "required": [ + "unit" + ] + }, + "Oe cm": { + "properties": { + "unit": { + "type": "string", + "const": "Oe cm", + "$asm.unit-iri": "http://qudt.org/vocab/unit#OerstedCentimeter" + } + }, + "required": [ + "unit" + ] + }, + "P": { + "properties": { + "unit": { + "type": "string", + "const": "P", + "$asm.unit-iri": "http://qudt.org/vocab/unit#Poise" + } + }, + "required": [ + "unit" + ] + }, + "PFU": { + "properties": { + "unit": { + "type": "string", + "const": "PFU", + "$asm.unit-iri": "http://purl.allotrope.org/ontology/qudt-ext/unit#PlaqueFormingUnit" + } + }, + "required": [ + "unit" + ] + }, + "Pa": { + "properties": { + "unit": { + "type": "string", + "const": "Pa", + "$asm.unit-iri": "http://qudt.org/vocab/unit#Pascal" + } + }, + "required": [ + "unit" + ] + }, + "Pa s": { + "properties": { + "unit": { + "type": "string", + "const": "Pa s", + "$asm.unit-iri": "http://qudt.org/vocab/unit#PascalSecond" + } + }, + "required": [ + "unit" + ] + }, + "Pa/hr": { + "properties": { + "unit": { + "type": "string", + "const": "Pa/hr", + "$asm.unit-iri": "http://qudt.org/vocab/unit#PascalPerHour" + } + }, + "required": [ + "unit" + ] + }, + "Pa/s": { + "properties": { + "unit": { + "type": "string", + "const": "Pa/s", + "$asm.unit-iri": "http://qudt.org/vocab/unit#PascalPerSecond" + } + }, + "required": [ + "unit" + ] + }, + "Pm": { + "properties": { + "unit": { + "type": "string", + "const": "Pm", + "$asm.unit-iri": "http://qudt.org/vocab/unit#Pica" + } + }, + "required": [ + "unit" + ] + }, + "Q_p": { + "properties": { + "unit": { + "type": "string", + "const": "Q_p", + "$asm.unit-iri": "http://qudt.org/vocab/unit#PlanckCharge" + } + }, + "required": [ + "unit" + ] + }, + "R": { + "properties": { + "unit": { + "type": "string", + "const": "R", + "$asm.unit-iri": "http://qudt.org/vocab/unit#Roentgen" + } + }, + "required": [ + "unit" + ] + }, + "RFU": { + "properties": { + "unit": { + "type": "string", + "const": "RFU", + "$asm.unit-iri": "http://purl.allotrope.org/ontology/qudt-ext/unit#RelativeFluorescenceUnit" + } + }, + "required": [ + "unit" + ] + }, + "RFU.mL": { + "properties": { + "unit": { + "type": "string", + "const": "RFU.mL", + "$asm.unit-iri": "http://purl.allotrope.org/ontology/qudt-ext/unit#RelativeFluorescenceUnitTimesMilliliter" + } + }, + "required": [ + "unit" + ] + }, + "RFU.s": { + "properties": { + "unit": { + "type": "string", + "const": "RFU.s", + "$asm.unit-iri": "http://purl.allotrope.org/ontology/qudt-ext/unit#RelativeFluorescenceUnitTimesSecond" + } + }, + "required": [ + "unit" + ] + }, + "RIU": { + "properties": { + "unit": { + "type": "string", + "const": "RIU", + "$asm.unit-iri": "http://purl.allotrope.org/ontology/qudt-ext/unit#RefractiveIndexUnit" + } + }, + "required": [ + "unit" + ] + }, + "RLU": { + "properties": { + "unit": { + "type": "string", + "const": "RLU", + "$asm.unit-iri": "http://purl.allotrope.org/ontology/qudt-ext/unit#RelativeLightUnit" + } + }, + "required": [ + "unit" + ] + }, + "RLU.mL": { + "properties": { + "unit": { + "type": "string", + "const": "RLU.mL", + "$asm.unit-iri": "http://purl.allotrope.org/ontology/qudt-ext/unit#RelativeLightUnitTimesMilliliter" + } + }, + "required": [ + "unit" + ] + }, + "RLU.s": { + "properties": { + "unit": { + "type": "string", + "const": "RLU.s", + "$asm.unit-iri": "http://purl.allotrope.org/ontology/qudt-ext/unit#RelativeLightUnitTimesSecond" + } + }, + "required": [ + "unit" + ] + }, + "RT": { + "properties": { + "unit": { + "type": "string", + "const": "RT", + "$asm.unit-iri": "http://qudt.org/vocab/unit#RegisterTon" + } + }, + "required": [ + "unit" + ] + }, + "S": { + "properties": { + "unit": { + "type": "string", + "const": "S", + "$asm.unit-iri": "http://qudt.org/vocab/unit#Siemens" + } + }, + "required": [ + "unit" + ] + }, + "S/m": { + "properties": { + "unit": { + "type": "string", + "const": "S/m", + "$asm.unit-iri": "http://purl.allotrope.org/ontology/qudt-ext/unit#SiemensPerMeter" + } + }, + "required": [ + "unit" + ] + }, + "Sh": { + "properties": { + "unit": { + "type": "string", + "const": "Sh", + "$asm.unit-iri": "http://qudt.org/vocab/unit#Shake" + } + }, + "required": [ + "unit" + ] + }, + "St": { + "properties": { + "unit": { + "type": "string", + "const": "St", + "$asm.unit-iri": "http://qudt.org/vocab/unit#Stokes" + } + }, + "required": [ + "unit" + ] + }, + "Sv": { + "properties": { + "unit": { + "type": "string", + "const": "Sv", + "$asm.unit-iri": "http://qudt.org/vocab/unit#Sievert" + } + }, + "required": [ + "unit" + ] + }, + "T": { + "properties": { + "unit": { + "type": "string", + "const": "T", + "$asm.unit-iri": "http://qudt.org/vocab/unit#Tesla" + } + }, + "required": [ + "unit" + ] + }, + "U": { + "properties": { + "unit": { + "type": "string", + "const": "U", + "$asm.unit-iri": "http://purl.allotrope.org/ontology/qudt-ext/unit#EnzymeUnit" + } + }, + "required": [ + "unit" + ] + }, + "U/nWb": { + "properties": { + "unit": { + "type": "string", + "const": "U/nWb", + "$asm.unit-iri": "http://qudt.org/vocab/unit#UnitPole" + } + }, + "required": [ + "unit" + ] + }, + "US gal": { + "properties": { + "unit": { + "type": "string", + "const": "US gal", + "$asm.unit-iri": "http://qudt.org/vocab/unit#GallonUS" + } + }, + "required": [ + "unit" + ] + }, + "V": { + "properties": { + "unit": { + "type": "string", + "const": "V", + "$asm.unit-iri": "http://qudt.org/vocab/unit#Volt" + } + }, + "required": [ + "unit" + ] + }, + "V m^-2": { + "properties": { + "unit": { + "type": "string", + "const": "V m^-2", + "$asm.unit-iri": "http://qudt.org/vocab/unit#VoltPerSquareMeter" + } + }, + "required": [ + "unit" + ] + }, + "V/m": { + "properties": { + "unit": { + "type": "string", + "const": "V/m", + "$asm.unit-iri": "http://qudt.org/vocab/unit#VoltPerMeter" + } + }, + "required": [ + "unit" + ] + }, + "V/s": { + "properties": { + "unit": { + "type": "string", + "const": "V/s", + "$asm.unit-iri": "http://qudt.org/vocab/unit#VoltPerSecond" + } + }, + "required": [ + "unit" + ] + }, + "W": { + "properties": { + "unit": { + "type": "string", + "const": "W", + "$asm.unit-iri": "http://qudt.org/vocab/unit#Watt" + } + }, + "required": [ + "unit" + ] + }, + "W h": { + "properties": { + "unit": { + "type": "string", + "const": "W h", + "$asm.unit-iri": "http://qudt.org/vocab/unit#Watthour" + } + }, + "required": [ + "unit" + ] + }, + "W m^-2 K^-4": { + "properties": { + "unit": { + "type": "string", + "const": "W m^-2 K^-4", + "$asm.unit-iri": "http://qudt.org/vocab/unit#WattPerSquareMeterQuarticKelvin" + } + }, + "required": [ + "unit" + ] + }, + "W m^2": { + "properties": { + "unit": { + "type": "string", + "const": "W m^2", + "$asm.unit-iri": "http://qudt.org/vocab/unit#WattSquareMeter" + } + }, + "required": [ + "unit" + ] + }, + "W m^2 sr^-1": { + "properties": { + "unit": { + "type": "string", + "const": "W m^2 sr^-1", + "$asm.unit-iri": "http://qudt.org/vocab/unit#WattSquareMeterPerSteradian" + } + }, + "required": [ + "unit" + ] + }, + "W/(m K)": { + "properties": { + "unit": { + "type": "string", + "const": "W/(m K)", + "$asm.unit-iri": "http://qudt.org/vocab/unit#WattPerMeterKelvin" + } + }, + "required": [ + "unit" + ] + }, + "W/(m^2 K)": { + "properties": { + "unit": { + "type": "string", + "const": "W/(m^2 K)", + "$asm.unit-iri": "http://qudt.org/vocab/unit#WattPerSquareMeterKelvin" + } + }, + "required": [ + "unit" + ] + }, + "W/(m^2 sr)": { + "properties": { + "unit": { + "type": "string", + "const": "W/(m^2 sr)", + "$asm.unit-iri": "http://qudt.org/vocab/unit#WattPerSquareMeterSteradian" + } + }, + "required": [ + "unit" + ] + }, + "W/K": { + "properties": { + "unit": { + "type": "string", + "const": "W/K", + "$asm.unit-iri": "http://purl.allotrope.org/ontology/qudt-ext/unit#WattPerKelvin" + } + }, + "required": [ + "unit" + ] + }, + "W/cm^2": { + "properties": { + "unit": { + "type": "string", + "const": "W/cm^2", + "$asm.unit-iri": "http://qudt.org/vocab/unit#WattPerSquareCentimeter" + } + }, + "required": [ + "unit" + ] + }, + "W/ft^2": { + "properties": { + "unit": { + "type": "string", + "const": "W/ft^2", + "$asm.unit-iri": "http://qudt.org/vocab/unit#WattPerSquareFoot" + } + }, + "required": [ + "unit" + ] + }, + "W/g": { + "properties": { + "unit": { + "type": "string", + "const": "W/g", + "$asm.unit-iri": "http://purl.allotrope.org/ontology/qudt-ext/unit#WattPerGram" + } + }, + "required": [ + "unit" + ] + }, + "W/in^2": { + "properties": { + "unit": { + "type": "string", + "const": "W/in^2", + "$asm.unit-iri": "http://qudt.org/vocab/unit#WattPerSquareInch" + } + }, + "required": [ + "unit" + ] + }, + "W/m^2": { + "properties": { + "unit": { + "type": "string", + "const": "W/m^2", + "$asm.unit-iri": "http://qudt.org/vocab/unit#WattPerSquareMeter" + } + }, + "required": [ + "unit" + ] + }, + "Wb": { + "properties": { + "unit": { + "type": "string", + "const": "Wb", + "$asm.unit-iri": "http://qudt.org/vocab/unit#Weber" + } + }, + "required": [ + "unit" + ] + }, + "Z": { + "properties": { + "unit": { + "type": "string", + "const": "Z", + "$asm.unit-iri": "http://qudt.org/vocab/unit#AtomicNumber" + } + }, + "required": [ + "unit" + ] + }, + "[S/m].L": { + "properties": { + "unit": { + "type": "string", + "const": "[S/m].L", + "$asm.unit-iri": "http://purl.allotrope.org/ontology/qudt-ext/unit#SiemensPerMeterTimesLiter" + } + }, + "required": [ + "unit" + ] + }, + "[S/m].s": { + "properties": { + "unit": { + "type": "string", + "const": "[S/m].s", + "$asm.unit-iri": "http://purl.allotrope.org/ontology/qudt-ext/unit#SiemensPerMeterTimesSecond" + } + }, + "required": [ + "unit" + ] + }, + "[sps]": { + "properties": { + "unit": { + "type": "string", + "const": "[sps]", + "$asm.unit-iri": "http://purl.allotrope.org/ontology/qudt-ext/unit#SamplePerSecond" + } + }, + "required": [ + "unit" + ] + }, + "a": { + "properties": { + "unit": { + "type": "string", + "const": "a", + "$asm.unit-iri": "http://qudt.org/vocab/unit#Are" + } + }, + "required": [ + "unit" + ] + }, + "aS": { + "properties": { + "unit": { + "type": "string", + "const": "aS", + "$asm.unit-iri": "http://qudt.org/vocab/unit#Absiemen" + } + }, + "required": [ + "unit" + ] + }, + "abA": { + "properties": { + "unit": { + "type": "string", + "const": "abA", + "$asm.unit-iri": "http://qudt.org/vocab/unit#Abampere" + } + }, + "required": [ + "unit" + ] + }, + "abC": { + "properties": { + "unit": { + "type": "string", + "const": "abC", + "$asm.unit-iri": "http://qudt.org/vocab/unit#Abcoulomb" + } + }, + "required": [ + "unit" + ] + }, + "abC/cm^2": { + "properties": { + "unit": { + "type": "string", + "const": "abC/cm^2", + "$asm.unit-iri": "http://qudt.org/vocab/unit#AbcoulombPerSquareCentimeter" + } + }, + "required": [ + "unit" + ] + }, + "abF": { + "properties": { + "unit": { + "type": "string", + "const": "abF", + "$asm.unit-iri": "http://qudt.org/vocab/unit#Abfarad" + } + }, + "required": [ + "unit" + ] + }, + "abF/cm": { + "properties": { + "unit": { + "type": "string", + "const": "abF/cm", + "$asm.unit-iri": "http://qudt.org/vocab/unit#AbfaradPerCentimeter" + } + }, + "required": [ + "unit" + ] + }, + "abH": { + "properties": { + "unit": { + "type": "string", + "const": "abH", + "$asm.unit-iri": "http://qudt.org/vocab/unit#Abhenry" + } + }, + "required": [ + "unit" + ] + }, + "abT": { + "properties": { + "unit": { + "type": "string", + "const": "abT", + "$asm.unit-iri": "http://qudt.org/vocab/unit#Abtesla" + } + }, + "required": [ + "unit" + ] + }, + "abV": { + "properties": { + "unit": { + "type": "string", + "const": "abV", + "$asm.unit-iri": "http://qudt.org/vocab/unit#Abvolt" + } + }, + "required": [ + "unit" + ] + }, + "abV cm": { + "properties": { + "unit": { + "type": "string", + "const": "abV cm", + "$asm.unit-iri": "http://qudt.org/vocab/unit#AbvoltCentimeter" + } + }, + "required": [ + "unit" + ] + }, + "abV-s": { + "properties": { + "unit": { + "type": "string", + "const": "abV-s", + "$asm.unit-iri": "http://qudt.org/vocab/unit#AbvoltSecond" + } + }, + "required": [ + "unit" + ] + }, + "abV/cm": { + "properties": { + "unit": { + "type": "string", + "const": "abV/cm", + "$asm.unit-iri": "http://qudt.org/vocab/unit#AbvoltPerCentimeter" + } + }, + "required": [ + "unit" + ] + }, + "abΩ": { + "properties": { + "unit": { + "type": "string", + "const": "abΩ", + "$asm.unit-iri": "http://qudt.org/vocab/unit#Abohm" + } + }, + "required": [ + "unit" + ] + }, + "ac": { + "properties": { + "unit": { + "type": "string", + "const": "ac", + "$asm.unit-iri": "http://qudt.org/vocab/unit#Acre" + } + }, + "required": [ + "unit" + ] + }, + "ac ft": { + "properties": { + "unit": { + "type": "string", + "const": "ac ft", + "$asm.unit-iri": "http://qudt.org/vocab/unit#AcreFoot" + } + }, + "required": [ + "unit" + ] + }, + "amu": { + "properties": { + "unit": { + "type": "string", + "const": "amu", + "$asm.unit-iri": "http://qudt.org/vocab/unit#AtomicMassUnit" + } + }, + "required": [ + "unit" + ] + }, + "arb'U": { + "properties": { + "unit": { + "type": "string", + "const": "arb'U", + "$asm.unit-iri": "http://purl.allotrope.org/ontology/qudt-ext/unit#ArbitraryUnit" + } + }, + "required": [ + "unit" + ] + }, + "arb'U.Hz": { + "properties": { + "unit": { + "type": "string", + "const": "arb'U.Hz", + "$asm.unit-iri": "http://purl.allotrope.org/ontology/qudt-ext/unit#ArbitraryUnitTimesHertz" + } + }, + "required": [ + "unit" + ] + }, + "arb'U/V": { + "properties": { + "unit": { + "type": "string", + "const": "arb'U/V", + "$asm.unit-iri": "http://purl.allotrope.org/ontology/qudt-ext/unit#ArbitraryUnitPerVolt" + } + }, + "required": [ + "unit" + ] + }, + "arcMin": { + "properties": { + "unit": { + "type": "string", + "const": "arcMin", + "$asm.unit-iri": "http://qudt.org/vocab/unit#ArcMinute" + } + }, + "required": [ + "unit" + ] + }, + "arcSec": { + "properties": { + "unit": { + "type": "string", + "const": "arcSec", + "$asm.unit-iri": "http://qudt.org/vocab/unit#ArcSecond" + } + }, + "required": [ + "unit" + ] + }, + "at": { + "properties": { + "unit": { + "type": "string", + "const": "at", + "$asm.unit-iri": "http://qudt.org/vocab/unit#AtmosphereTechnical" + } + }, + "required": [ + "unit" + ] + }, + "atm": { + "properties": { + "unit": { + "type": "string", + "const": "atm", + "$asm.unit-iri": "http://qudt.org/vocab/unit#AtmosphereStandard" + } + }, + "required": [ + "unit" + ] + }, + "au": { + "properties": { + "unit": { + "type": "string", + "const": "au", + "$asm.unit-iri": "http://qudt.org/vocab/unit#AstronomicalUnit" + } + }, + "required": [ + "unit" + ] + }, + "b": { + "properties": { + "unit": { + "type": "string", + "const": "b", + "$asm.unit-iri": "http://qudt.org/vocab/unit#Barn" + } + }, + "required": [ + "unit" + ] + }, + "ban": { + "properties": { + "unit": { + "type": "string", + "const": "ban", + "$asm.unit-iri": "http://qudt.org/vocab/unit#Ban" + } + }, + "required": [ + "unit" + ] + }, + "bar": { + "properties": { + "unit": { + "type": "string", + "const": "bar", + "$asm.unit-iri": "http://qudt.org/vocab/unit#Bar" + } + }, + "required": [ + "unit" + ] + }, + "bbl": { + "properties": { + "unit": { + "type": "string", + "const": "bbl", + "$asm.unit-iri": "http://qudt.org/vocab/unit#Barrel" + } + }, + "required": [ + "unit" + ] + }, + "bit": { + "properties": { + "unit": { + "type": "string", + "const": "bit", + "$asm.unit-iri": "http://qudt.org/vocab/unit#Bit" + } + }, + "required": [ + "unit" + ] + }, + "bps": { + "properties": { + "unit": { + "type": "string", + "const": "bps", + "$asm.unit-iri": "http://qudt.org/vocab/unit#BitsPerSecond" + } + }, + "required": [ + "unit" + ] + }, + "breaths/min": { + "properties": { + "unit": { + "type": "string", + "const": "breaths/min", + "$asm.unit-iri": "http://qudt.org/vocab/unit#BreathPerMinute" + } + }, + "required": [ + "unit" + ] + }, + "bu": { + "properties": { + "unit": { + "type": "string", + "const": "bu", + "$asm.unit-iri": "http://qudt.org/vocab/unit#Bushel" + } + }, + "required": [ + "unit" + ] + }, + "cP": { + "properties": { + "unit": { + "type": "string", + "const": "cP", + "$asm.unit-iri": "http://qudt.org/vocab/unit#Centipoise" + } + }, + "required": [ + "unit" + ] + }, + "cSt": { + "properties": { + "unit": { + "type": "string", + "const": "cSt", + "$asm.unit-iri": "http://qudt.org/vocab/unit#Centistokes" + } + }, + "required": [ + "unit" + ] + }, + "cal": { + "properties": { + "unit": { + "type": "string", + "const": "cal", + "$asm.unit-iri": "http://qudt.org/vocab/unit#CalorieThermochemical" + } + }, + "required": [ + "unit" + ] + }, + "cal/(cm s °C)": { + "properties": { + "unit": { + "type": "string", + "const": "cal/(cm s °C)", + "$asm.unit-iri": "http://qudt.org/vocab/unit#KilocaloriePerCentimeterSecondDegreeCelsius" + } + }, + "required": [ + "unit" + ] + }, + "cal/(g.s)": { + "properties": { + "unit": { + "type": "string", + "const": "cal/(g.s)", + "$asm.unit-iri": "http://purl.allotrope.org/ontology/qudt-ext/unit#CaloriePerGramSecond" + } + }, + "required": [ + "unit" + ] + }, + "cal/s": { + "properties": { + "unit": { + "type": "string", + "const": "cal/s", + "$asm.unit-iri": "http://purl.allotrope.org/ontology/qudt-ext/unit#CaloriePerSecond" + } + }, + "required": [ + "unit" + ] + }, + "cd": { + "properties": { + "unit": { + "type": "string", + "const": "cd", + "$asm.unit-iri": "http://qudt.org/vocab/unit#Candela" + } + }, + "required": [ + "unit" + ] + }, + "cd/in^2": { + "properties": { + "unit": { + "type": "string", + "const": "cd/in^2", + "$asm.unit-iri": "http://qudt.org/vocab/unit#CandelaPerSquareInch" + } + }, + "required": [ + "unit" + ] + }, + "cd/m^2": { + "properties": { + "unit": { + "type": "string", + "const": "cd/m^2", + "$asm.unit-iri": "http://qudt.org/vocab/unit#CandelaPerSquareMeter" + } + }, + "required": [ + "unit" + ] + }, + "cdl": { + "properties": { + "unit": { + "type": "string", + "const": "cdl", + "$asm.unit-iri": "http://qudt.org/vocab/unit#Candle" + } + }, + "required": [ + "unit" + ] + }, + "cell": { + "properties": { + "unit": { + "type": "string", + "const": "cell", + "$asm.unit-iri": "http://purl.allotrope.org/ontology/qudt-ext/unit#Cell" + } + }, + "required": [ + "unit" + ] + }, + "ch": { + "properties": { + "unit": { + "type": "string", + "const": "ch", + "$asm.unit-iri": "http://qudt.org/vocab/unit#Chain" + } + }, + "required": [ + "unit" + ] + }, + "clo": { + "properties": { + "unit": { + "type": "string", + "const": "clo", + "$asm.unit-iri": "http://qudt.org/vocab/unit#Clo" + } + }, + "required": [ + "unit" + ] + }, + "cm": { + "properties": { + "unit": { + "type": "string", + "const": "cm", + "$asm.unit-iri": "http://qudt.org/vocab/unit#Centimeter" + } + }, + "required": [ + "unit" + ] + }, + "cm s °C": { + "properties": { + "unit": { + "type": "string", + "const": "cm s °C", + "$asm.unit-iri": "http://qudt.org/vocab/unit#CentimeterSecondDegreeCelsius" + } + }, + "required": [ + "unit" + ] + }, + "cm-degC": { + "properties": { + "unit": { + "type": "string", + "const": "cm-degC", + "$asm.unit-iri": "http://qudt.org/vocab/unit#DegreeCelsiusCentimeter" + } + }, + "required": [ + "unit" + ] + }, + "cm/s": { + "properties": { + "unit": { + "type": "string", + "const": "cm/s", + "$asm.unit-iri": "http://qudt.org/vocab/unit#CentimeterPerSecond" + } + }, + "required": [ + "unit" + ] + }, + "cm/s^2": { + "properties": { + "unit": { + "type": "string", + "const": "cm/s^2", + "$asm.unit-iri": "http://qudt.org/vocab/unit#CentimeterPerSecondSquared" + } + }, + "required": [ + "unit" + ] + }, + "cmH2O": { + "properties": { + "unit": { + "type": "string", + "const": "cmH2O", + "$asm.unit-iri": "http://qudt.org/vocab/unit#CentimeterOfWater" + } + }, + "required": [ + "unit" + ] + }, + "cm^2": { + "properties": { + "unit": { + "type": "string", + "const": "cm^2", + "$asm.unit-iri": "http://qudt.org/vocab/unit#SquareCentimeter" + } + }, + "required": [ + "unit" + ] + }, + "cm^2 min": { + "properties": { + "unit": { + "type": "string", + "const": "cm^2 min", + "$asm.unit-iri": "http://qudt.org/vocab/unit#SquareCentimeterMinute" + } + }, + "required": [ + "unit" + ] + }, + "cm^2 s": { + "properties": { + "unit": { + "type": "string", + "const": "cm^2 s", + "$asm.unit-iri": "http://qudt.org/vocab/unit#SquareCentimeterSecond" + } + }, + "required": [ + "unit" + ] + }, + "cm^2/g": { + "properties": { + "unit": { + "type": "string", + "const": "cm^2/g", + "$asm.unit-iri": "http://purl.allotrope.org/ontology/qudt-ext/unit#SquareCentimetersPerGram" + } + }, + "required": [ + "unit" + ] + }, + "cm^2/mol": { + "properties": { + "unit": { + "type": "string", + "const": "cm^2/mol", + "$asm.unit-iri": "http://purl.allotrope.org/ontology/qudt-ext/unit#SquareCentimetersPerMole" + } + }, + "required": [ + "unit" + ] + }, + "cm^3": { + "properties": { + "unit": { + "type": "string", + "const": "cm^3", + "$asm.unit-iri": "http://qudt.org/vocab/unit#CubicCentimeter" + } + }, + "required": [ + "unit" + ] + }, + "cm^3/g STP": { + "properties": { + "unit": { + "type": "string", + "const": "cm^3/g STP", + "$asm.unit-iri": "http://purl.allotrope.org/ontology/qudt-ext/unit#CubicCentimeterPerGramAtSTP" + } + }, + "required": [ + "unit" + ] + }, + "cm^3/min": { + "properties": { + "unit": { + "type": "string", + "const": "cm^3/min", + "$asm.unit-iri": "http://purl.allotrope.org/ontology/qudt-ext/unit#CubicCentimeterPerMinute" + } + }, + "required": [ + "unit" + ] + }, + "cmil": { + "properties": { + "unit": { + "type": "string", + "const": "cmil", + "$asm.unit-iri": "http://qudt.org/vocab/unit#CircularMil" + } + }, + "required": [ + "unit" + ] + }, + "cord": { + "properties": { + "unit": { + "type": "string", + "const": "cord", + "$asm.unit-iri": "http://qudt.org/vocab/unit#Cord" + } + }, + "required": [ + "unit" + ] + }, + "cp": { + "properties": { + "unit": { + "type": "string", + "const": "cp", + "$asm.unit-iri": "http://qudt.org/vocab/unit#Candlepower" + } + }, + "required": [ + "unit" + ] + }, + "cup": { + "properties": { + "unit": { + "type": "string", + "const": "cup", + "$asm.unit-iri": "http://qudt.org/vocab/unit#LiquidCupUS" + } + }, + "required": [ + "unit" + ] + }, + "d": { + "properties": { + "unit": { + "type": "string", + "const": "d", + "$asm.unit-iri": "http://qudt.org/vocab/unit#Day" + } + }, + "required": [ + "unit" + ] + }, + "d (s)": { + "properties": { + "unit": { + "type": "string", + "const": "d (s)", + "$asm.unit-iri": "http://qudt.org/vocab/unit#DaySidereal" + } + }, + "required": [ + "unit" + ] + }, + "dB": { + "properties": { + "unit": { + "type": "string", + "const": "dB", + "$asm.unit-iri": "http://qudt.org/vocab/unit#Decibel" + } + }, + "required": [ + "unit" + ] + }, + "dBc": { + "properties": { + "unit": { + "type": "string", + "const": "dBc", + "$asm.unit-iri": "http://qudt.org/vocab/unit#DecibelCarrier" + } + }, + "required": [ + "unit" + ] + }, + "dBm": { + "properties": { + "unit": { + "type": "string", + "const": "dBm", + "$asm.unit-iri": "http://qudt.org/vocab/unit#DecibelReferredToOneMilliwatt" + } + }, + "required": [ + "unit" + ] + }, + "degC": { + "properties": { + "unit": { + "type": "string", + "const": "degC", + "$asm.unit-iri": "http://qudt.org/vocab/unit#DegreeCelsius" + } + }, + "required": [ + "unit" + ] + }, + "deg^2": { + "properties": { + "unit": { + "type": "string", + "const": "deg^2", + "$asm.unit-iri": "http://qudt.org/vocab/unit#SquareDegree" + } + }, + "required": [ + "unit" + ] + }, + "deg·mL·g−1·dm−1": { + "properties": { + "unit": { + "type": "string", + "const": "deg·mL·g−1·dm−1", + "$asm.unit-iri": "http://purl.allotrope.org/ontology/qudt-ext/unit#DegreeTimesMilliliterPerGramTimesDecimeter" + } + }, + "required": [ + "unit" + ] + }, + "dm": { + "properties": { + "unit": { + "type": "string", + "const": "dm", + "$asm.unit-iri": "http://qudt.org/vocab/unit#Decimeter" + } + }, + "required": [ + "unit" + ] + }, + "dpt": { + "properties": { + "unit": { + "type": "string", + "const": "dpt", + "$asm.unit-iri": "http://qudt.org/vocab/unit#Diopter" + } + }, + "required": [ + "unit" + ] + }, + "drp": { + "properties": { + "unit": { + "type": "string", + "const": "drp", + "$asm.unit-iri": "http://purl.allotrope.org/ontology/qudt-ext/unit#Drop" + } + }, + "required": [ + "unit" + ] + }, + "dry_gal": { + "properties": { + "unit": { + "type": "string", + "const": "dry_gal", + "$asm.unit-iri": "http://qudt.org/vocab/unit#DryGallonUS" + } + }, + "required": [ + "unit" + ] + }, + "dry_pt": { + "properties": { + "unit": { + "type": "string", + "const": "dry_pt", + "$asm.unit-iri": "http://qudt.org/vocab/unit#DryPintUS" + } + }, + "required": [ + "unit" + ] + }, + "dry_qt": { + "properties": { + "unit": { + "type": "string", + "const": "dry_qt", + "$asm.unit-iri": "http://qudt.org/vocab/unit#DryQuartUS" + } + }, + "required": [ + "unit" + ] + }, + "dwt": { + "properties": { + "unit": { + "type": "string", + "const": "dwt", + "$asm.unit-iri": "http://qudt.org/vocab/unit#PennyWeight" + } + }, + "required": [ + "unit" + ] + }, + "dyn": { + "properties": { + "unit": { + "type": "string", + "const": "dyn", + "$asm.unit-iri": "http://qudt.org/vocab/unit#Dyne" + } + }, + "required": [ + "unit" + ] + }, + "dyn cm": { + "properties": { + "unit": { + "type": "string", + "const": "dyn cm", + "$asm.unit-iri": "http://qudt.org/vocab/unit#DyneCentimeter" + } + }, + "required": [ + "unit" + ] + }, + "dyn/cm^2": { + "properties": { + "unit": { + "type": "string", + "const": "dyn/cm^2", + "$asm.unit-iri": "http://qudt.org/vocab/unit#DynePerSquareCentimeter" + } + }, + "required": [ + "unit" + ] + }, + "e": { + "properties": { + "unit": { + "type": "string", + "const": "e", + "$asm.unit-iri": "http://purl.allotrope.org/ontology/qudt-ext/unit#E" + } + }, + "required": [ + "unit" + ] + }, + "eV": { + "properties": { + "unit": { + "type": "string", + "const": "eV", + "$asm.unit-iri": "http://qudt.org/vocab/unit#ElectronVolt" + } + }, + "required": [ + "unit" + ] + }, + "eV s": { + "properties": { + "unit": { + "type": "string", + "const": "eV s", + "$asm.unit-iri": "http://qudt.org/vocab/unit#ElectronVoltSecond" + } + }, + "required": [ + "unit" + ] + }, + "eV/K": { + "properties": { + "unit": { + "type": "string", + "const": "eV/K", + "$asm.unit-iri": "http://qudt.org/vocab/unit#ElectronVoltPerKelvin" + } + }, + "required": [ + "unit" + ] + }, + "eV/T": { + "properties": { + "unit": { + "type": "string", + "const": "eV/T", + "$asm.unit-iri": "http://qudt.org/vocab/unit#ElectronVoltPerTesla" + } + }, + "required": [ + "unit" + ] + }, + "erg": { + "properties": { + "unit": { + "type": "string", + "const": "erg", + "$asm.unit-iri": "http://qudt.org/vocab/unit#Erg" + } + }, + "required": [ + "unit" + ] + }, + "erg s": { + "properties": { + "unit": { + "type": "string", + "const": "erg s", + "$asm.unit-iri": "http://qudt.org/vocab/unit#ErgSecond" + } + }, + "required": [ + "unit" + ] + }, + "erg/(cm^2 s)": { + "properties": { + "unit": { + "type": "string", + "const": "erg/(cm^2 s)", + "$asm.unit-iri": "http://qudt.org/vocab/unit#ErgPerSquareCentimeterSecond" + } + }, + "required": [ + "unit" + ] + }, + "erg/cm^3": { + "properties": { + "unit": { + "type": "string", + "const": "erg/cm^3", + "$asm.unit-iri": "http://qudt.org/vocab/unit#ErgPerCubicCentimeter" + } + }, + "required": [ + "unit" + ] + }, + "erg/s": { + "properties": { + "unit": { + "type": "string", + "const": "erg/s", + "$asm.unit-iri": "http://qudt.org/vocab/unit#ErgPerSecond" + } + }, + "required": [ + "unit" + ] + }, + "fL": { + "properties": { + "unit": { + "type": "string", + "const": "fL", + "$asm.unit-iri": "http://purl.allotrope.org/ontology/qudt-ext/unit#Femtoliter" + } + }, + "required": [ + "unit" + ] + }, + "fa": { + "properties": { + "unit": { + "type": "string", + "const": "fa", + "$asm.unit-iri": "http://qudt.org/vocab/unit#FractionalArea" + } + }, + "required": [ + "unit" + ] + }, + "fath": { + "properties": { + "unit": { + "type": "string", + "const": "fath", + "$asm.unit-iri": "http://qudt.org/vocab/unit#Fathom" + } + }, + "required": [ + "unit" + ] + }, + "fc": { + "properties": { + "unit": { + "type": "string", + "const": "fc", + "$asm.unit-iri": "http://qudt.org/vocab/unit#FootCandle" + } + }, + "required": [ + "unit" + ] + }, + "fermi": { + "properties": { + "unit": { + "type": "string", + "const": "fermi", + "$asm.unit-iri": "http://qudt.org/vocab/unit#Fermi" + } + }, + "required": [ + "unit" + ] + }, + "fg": { + "properties": { + "unit": { + "type": "string", + "const": "fg", + "$asm.unit-iri": "http://purl.allotrope.org/ontology/qudt-ext/unit#Femtogram" + } + }, + "required": [ + "unit" + ] + }, + "fg/L": { + "properties": { + "unit": { + "type": "string", + "const": "fg/L", + "$asm.unit-iri": "http://purl.allotrope.org/ontology/qudt-ext/unit#FemtogramPerLiter" + } + }, + "required": [ + "unit" + ] + }, + "fg/cm^2": { + "properties": { + "unit": { + "type": "string", + "const": "fg/cm^2", + "$asm.unit-iri": "http://purl.allotrope.org/ontology/qudt-ext/unit#FemtogramPerSquareCentimeter" + } + }, + "required": [ + "unit" + ] + }, + "fg/fL": { + "properties": { + "unit": { + "type": "string", + "const": "fg/fL", + "$asm.unit-iri": "http://purl.allotrope.org/ontology/qudt-ext/unit#FemtogramPerFemtoliter" + } + }, + "required": [ + "unit" + ] + }, + "fg/mL": { + "properties": { + "unit": { + "type": "string", + "const": "fg/mL", + "$asm.unit-iri": "http://purl.allotrope.org/ontology/qudt-ext/unit#FemtogramPerMilliliter" + } + }, + "required": [ + "unit" + ] + }, + "fg/m^2": { + "properties": { + "unit": { + "type": "string", + "const": "fg/m^2", + "$asm.unit-iri": "http://purl.allotrope.org/ontology/qudt-ext/unit#FemtogramPerSquareMeter" + } + }, + "required": [ + "unit" + ] + }, + "fg/nL": { + "properties": { + "unit": { + "type": "string", + "const": "fg/nL", + "$asm.unit-iri": "http://purl.allotrope.org/ontology/qudt-ext/unit#FemtogramPerNanoliter" + } + }, + "required": [ + "unit" + ] + }, + "fg/pL": { + "properties": { + "unit": { + "type": "string", + "const": "fg/pL", + "$asm.unit-iri": "http://purl.allotrope.org/ontology/qudt-ext/unit#FemtogramPerPicoliter" + } + }, + "required": [ + "unit" + ] + }, + "fg/μL": { + "properties": { + "unit": { + "type": "string", + "const": "fg/μL", + "$asm.unit-iri": "http://purl.allotrope.org/ontology/qudt-ext/unit#FemtogramPerMicroliter" + } + }, + "required": [ + "unit" + ] + }, + "flight": { + "properties": { + "unit": { + "type": "string", + "const": "flight", + "$asm.unit-iri": "http://qudt.org/vocab/unit#Flight" + } + }, + "required": [ + "unit" + ] + }, + "fm": { + "properties": { + "unit": { + "type": "string", + "const": "fm", + "$asm.unit-iri": "http://qudt.org/vocab/unit#Femtometer" + } + }, + "required": [ + "unit" + ] + }, + "fmol": { + "properties": { + "unit": { + "type": "string", + "const": "fmol", + "$asm.unit-iri": "http://purl.allotrope.org/ontology/qudt-ext/unit#Femtomole" + } + }, + "required": [ + "unit" + ] + }, + "fmol/L": { + "properties": { + "unit": { + "type": "string", + "const": "fmol/L", + "$asm.unit-iri": "http://purl.allotrope.org/ontology/qudt-ext/unit#Femtomolar" + } + }, + "required": [ + "unit" + ] + }, + "fps": { + "properties": { + "unit": { + "type": "string", + "const": "fps", + "$asm.unit-iri": "http://qudt.org/vocab/unit#FramePerSecond" + } + }, + "required": [ + "unit" + ] + }, + "ft": { + "properties": { + "unit": { + "type": "string", + "const": "ft", + "$asm.unit-iri": "http://qudt.org/vocab/unit#Foot" + } + }, + "required": [ + "unit" + ] + }, + "ft L": { + "properties": { + "unit": { + "type": "string", + "const": "ft L", + "$asm.unit-iri": "http://qudt.org/vocab/unit#FootLambert" + } + }, + "required": [ + "unit" + ] + }, + "ft lbf": { + "properties": { + "unit": { + "type": "string", + "const": "ft lbf", + "$asm.unit-iri": "http://qudt.org/vocab/unit#FootPoundForce" + } + }, + "required": [ + "unit" + ] + }, + "ft lbf/(ft^2 s)": { + "properties": { + "unit": { + "type": "string", + "const": "ft lbf/(ft^2 s)", + "$asm.unit-iri": "http://qudt.org/vocab/unit#FootPoundForcePerSquareFootSecond" + } + }, + "required": [ + "unit" + ] + }, + "ft lbf/ft^2": { + "properties": { + "unit": { + "type": "string", + "const": "ft lbf/ft^2", + "$asm.unit-iri": "http://qudt.org/vocab/unit#FootPoundForcePerSquareFoot" + } + }, + "required": [ + "unit" + ] + }, + "ft lbf/h": { + "properties": { + "unit": { + "type": "string", + "const": "ft lbf/h", + "$asm.unit-iri": "http://qudt.org/vocab/unit#FootPoundForcePerHour" + } + }, + "required": [ + "unit" + ] + }, + "ft lbf/m^2": { + "properties": { + "unit": { + "type": "string", + "const": "ft lbf/m^2", + "$asm.unit-iri": "http://qudt.org/vocab/unit#FootPoundForcePerSquareMeter" + } + }, + "required": [ + "unit" + ] + }, + "ft lbf/min": { + "properties": { + "unit": { + "type": "string", + "const": "ft lbf/min", + "$asm.unit-iri": "http://qudt.org/vocab/unit#FootPoundForcePerMinute" + } + }, + "required": [ + "unit" + ] + }, + "ft lbf/s": { + "properties": { + "unit": { + "type": "string", + "const": "ft lbf/s", + "$asm.unit-iri": "http://qudt.org/vocab/unit#FootPoundForcePerSecond" + } + }, + "required": [ + "unit" + ] + }, + "ft-pdl": { + "properties": { + "unit": { + "type": "string", + "const": "ft-pdl", + "$asm.unit-iri": "http://qudt.org/vocab/unit#FootPoundal" + } + }, + "required": [ + "unit" + ] + }, + "ft/h": { + "properties": { + "unit": { + "type": "string", + "const": "ft/h", + "$asm.unit-iri": "http://qudt.org/vocab/unit#FootPerHour" + } + }, + "required": [ + "unit" + ] + }, + "ft/min": { + "properties": { + "unit": { + "type": "string", + "const": "ft/min", + "$asm.unit-iri": "http://qudt.org/vocab/unit#FootPerMinute" + } + }, + "required": [ + "unit" + ] + }, + "ft/s": { + "properties": { + "unit": { + "type": "string", + "const": "ft/s", + "$asm.unit-iri": "http://qudt.org/vocab/unit#FootPerSecond" + } + }, + "required": [ + "unit" + ] + }, + "ft/s^2": { + "properties": { + "unit": { + "type": "string", + "const": "ft/s^2", + "$asm.unit-iri": "http://qudt.org/vocab/unit#FootPerSecondSquared" + } + }, + "required": [ + "unit" + ] + }, + "ftH2O": { + "properties": { + "unit": { + "type": "string", + "const": "ftH2O", + "$asm.unit-iri": "http://qudt.org/vocab/unit#FootOfWater" + } + }, + "required": [ + "unit" + ] + }, + "ftUS": { + "properties": { + "unit": { + "type": "string", + "const": "ftUS", + "$asm.unit-iri": "http://qudt.org/vocab/unit#FootUSSurvey" + } + }, + "required": [ + "unit" + ] + }, + "ft^2": { + "properties": { + "unit": { + "type": "string", + "const": "ft^2", + "$asm.unit-iri": "http://qudt.org/vocab/unit#SquareFoot" + } + }, + "required": [ + "unit" + ] + }, + "ft^2 h °F": { + "properties": { + "unit": { + "type": "string", + "const": "ft^2 h °F", + "$asm.unit-iri": "http://qudt.org/vocab/unit#SquareFootHourDegreeFahrenheit" + } + }, + "required": [ + "unit" + ] + }, + "ft^2 s °F": { + "properties": { + "unit": { + "type": "string", + "const": "ft^2 s °F", + "$asm.unit-iri": "http://qudt.org/vocab/unit#SquareFootSecondDegreeFahrenheit" + } + }, + "required": [ + "unit" + ] + }, + "ft^2 °F": { + "properties": { + "unit": { + "type": "string", + "const": "ft^2 °F", + "$asm.unit-iri": "http://qudt.org/vocab/unit#SquareFootDegreeFahrenheit" + } + }, + "required": [ + "unit" + ] + }, + "ft^2/(Btu in)": { + "properties": { + "unit": { + "type": "string", + "const": "ft^2/(Btu in)", + "$asm.unit-iri": "http://qudt.org/vocab/unit#SquareFootPerBtuInch" + } + }, + "required": [ + "unit" + ] + }, + "ft^2/h": { + "properties": { + "unit": { + "type": "string", + "const": "ft^2/h", + "$asm.unit-iri": "http://qudt.org/vocab/unit#SquareFootPerHour" + } + }, + "required": [ + "unit" + ] + }, + "ft^2/s": { + "properties": { + "unit": { + "type": "string", + "const": "ft^2/s", + "$asm.unit-iri": "http://qudt.org/vocab/unit#SquareFootPerSecond" + } + }, + "required": [ + "unit" + ] + }, + "ft^3": { + "properties": { + "unit": { + "type": "string", + "const": "ft^3", + "$asm.unit-iri": "http://qudt.org/vocab/unit#CubicFoot" + } + }, + "required": [ + "unit" + ] + }, + "ft^3/min": { + "properties": { + "unit": { + "type": "string", + "const": "ft^3/min", + "$asm.unit-iri": "http://qudt.org/vocab/unit#CubicFootPerMinute" + } + }, + "required": [ + "unit" + ] + }, + "ft^3/s": { + "properties": { + "unit": { + "type": "string", + "const": "ft^3/s", + "$asm.unit-iri": "http://qudt.org/vocab/unit#CubicFootPerSecond" + } + }, + "required": [ + "unit" + ] + }, + "fur": { + "properties": { + "unit": { + "type": "string", + "const": "fur", + "$asm.unit-iri": "http://qudt.org/vocab/unit#Furlong" + } + }, + "required": [ + "unit" + ] + }, + "g": { + "properties": { + "unit": { + "type": "string", + "const": "g", + "$asm.unit-iri": "http://qudt.org/vocab/unit#Gram" + } + }, + "required": [ + "unit" + ] + }, + "g °C": { + "properties": { + "unit": { + "type": "string", + "const": "g °C", + "$asm.unit-iri": "http://qudt.org/vocab/unit#GramDegreeCelsius" + } + }, + "required": [ + "unit" + ] + }, + "g/L": { + "properties": { + "unit": { + "type": "string", + "const": "g/L", + "$asm.unit-iri": "http://purl.allotrope.org/ontology/qudt-ext/unit#GramPerLiter" + } + }, + "required": [ + "unit" + ] + }, + "g/cm^2": { + "properties": { + "unit": { + "type": "string", + "const": "g/cm^2", + "$asm.unit-iri": "http://purl.allotrope.org/ontology/qudt-ext/unit#GramPerSquareCentimeter" + } + }, + "required": [ + "unit" + ] + }, + "g/cm^3": { + "properties": { + "unit": { + "type": "string", + "const": "g/cm^3", + "$asm.unit-iri": "http://purl.allotrope.org/ontology/qudt-ext/unit#GramPerCubicCentimeter" + } + }, + "required": [ + "unit" + ] + }, + "g/fL": { + "properties": { + "unit": { + "type": "string", + "const": "g/fL", + "$asm.unit-iri": "http://purl.allotrope.org/ontology/qudt-ext/unit#GramPerFemtoliter" + } + }, + "required": [ + "unit" + ] + }, + "g/mL": { + "properties": { + "unit": { + "type": "string", + "const": "g/mL", + "$asm.unit-iri": "http://purl.allotrope.org/ontology/qudt-ext/unit#GramPerMilliliter" + } + }, + "required": [ + "unit" + ] + }, + "g/m^2": { + "properties": { + "unit": { + "type": "string", + "const": "g/m^2", + "$asm.unit-iri": "http://purl.allotrope.org/ontology/qudt-ext/unit#GramPerSquareMeter" + } + }, + "required": [ + "unit" + ] + }, + "g/min": { + "properties": { + "unit": { + "type": "string", + "const": "g/min", + "$asm.unit-iri": "http://purl.allotrope.org/ontology/qudt-ext/unit#GramsPerMinute" + } + }, + "required": [ + "unit" + ] + }, + "g/mol": { + "properties": { + "unit": { + "type": "string", + "const": "g/mol", + "$asm.unit-iri": "http://purl.allotrope.org/ontology/qudt-ext/unit#GramPerMole" + } + }, + "required": [ + "unit" + ] + }, + "g/nL": { + "properties": { + "unit": { + "type": "string", + "const": "g/nL", + "$asm.unit-iri": "http://purl.allotrope.org/ontology/qudt-ext/unit#GramPerNanoliter" + } + }, + "required": [ + "unit" + ] + }, + "g/pL": { + "properties": { + "unit": { + "type": "string", + "const": "g/pL", + "$asm.unit-iri": "http://purl.allotrope.org/ontology/qudt-ext/unit#GramPerPicoliter" + } + }, + "required": [ + "unit" + ] + }, + "g/μL": { + "properties": { + "unit": { + "type": "string", + "const": "g/μL", + "$asm.unit-iri": "http://purl.allotrope.org/ontology/qudt-ext/unit#GramPerMicroliter" + } + }, + "required": [ + "unit" + ] + }, + "gal/d": { + "properties": { + "unit": { + "type": "string", + "const": "gal/d", + "$asm.unit-iri": "http://qudt.org/vocab/unit#GallonUSPerDay" + } + }, + "required": [ + "unit" + ] + }, + "gal/min": { + "properties": { + "unit": { + "type": "string", + "const": "gal/min", + "$asm.unit-iri": "http://qudt.org/vocab/unit#GallonUSPerMinute" + } + }, + "required": [ + "unit" + ] + }, + "gamma": { + "properties": { + "unit": { + "type": "string", + "const": "gamma", + "$asm.unit-iri": "http://qudt.org/vocab/unit#Gamma" + } + }, + "required": [ + "unit" + ] + }, + "gon": { + "properties": { + "unit": { + "type": "string", + "const": "gon", + "$asm.unit-iri": "http://qudt.org/vocab/unit#Gon" + } + }, + "required": [ + "unit" + ] + }, + "gr": { + "properties": { + "unit": { + "type": "string", + "const": "gr", + "$asm.unit-iri": "http://qudt.org/vocab/unit#Grain" + } + }, + "required": [ + "unit" + ] + }, + "gr/gal": { + "properties": { + "unit": { + "type": "string", + "const": "gr/gal", + "$asm.unit-iri": "http://qudt.org/vocab/unit#GrainPerGallon" + } + }, + "required": [ + "unit" + ] + }, + "grad": { + "properties": { + "unit": { + "type": "string", + "const": "grad", + "$asm.unit-iri": "http://qudt.org/vocab/unit#Grad" + } + }, + "required": [ + "unit" + ] + }, + "grd": { + "properties": { + "unit": { + "type": "string", + "const": "grd", + "$asm.unit-iri": "http://qudt.org/vocab/unit#Grade" + } + }, + "required": [ + "unit" + ] + }, + "h": { + "properties": { + "unit": { + "type": "string", + "const": "h", + "$asm.unit-iri": "http://qudt.org/vocab/unit#Hour" + } + }, + "required": [ + "unit" + ] + }, + "h ft^2": { + "properties": { + "unit": { + "type": "string", + "const": "h ft^2", + "$asm.unit-iri": "http://qudt.org/vocab/unit#HourSquareFoot" + } + }, + "required": [ + "unit" + ] + }, + "ha": { + "properties": { + "unit": { + "type": "string", + "const": "ha", + "$asm.unit-iri": "http://qudt.org/vocab/unit#Hectare" + } + }, + "required": [ + "unit" + ] + }, + "hp/H2O": { + "properties": { + "unit": { + "type": "string", + "const": "hp/H2O", + "$asm.unit-iri": "http://qudt.org/vocab/unit#HorsepowerWater" + } + }, + "required": [ + "unit" + ] + }, + "hp/V": { + "properties": { + "unit": { + "type": "string", + "const": "hp/V", + "$asm.unit-iri": "http://qudt.org/vocab/unit#HorsepowerElectric" + } + }, + "required": [ + "unit" + ] + }, + "hp/boiler": { + "properties": { + "unit": { + "type": "string", + "const": "hp/boiler", + "$asm.unit-iri": "http://qudt.org/vocab/unit#HorsepowerBoiler" + } + }, + "required": [ + "unit" + ] + }, + "hp/m": { + "properties": { + "unit": { + "type": "string", + "const": "hp/m", + "$asm.unit-iri": "http://qudt.org/vocab/unit#HorsepowerMetric" + } + }, + "required": [ + "unit" + ] + }, + "hr": { + "properties": { + "unit": { + "type": "string", + "const": "hr", + "$asm.unit-iri": "http://qudt.org/vocab/unit#HourSidereal" + } + }, + "required": [ + "unit" + ] + }, + "imp gal": { + "properties": { + "unit": { + "type": "string", + "const": "imp gal", + "$asm.unit-iri": "http://qudt.org/vocab/unit#GallonImperial" + } + }, + "required": [ + "unit" + ] + }, + "in": { + "properties": { + "unit": { + "type": "string", + "const": "in", + "$asm.unit-iri": "http://qudt.org/vocab/unit#Inch" + } + }, + "required": [ + "unit" + ] + }, + "in lbf": { + "properties": { + "unit": { + "type": "string", + "const": "in lbf", + "$asm.unit-iri": "http://qudt.org/vocab/unit#InchPoundForce" + } + }, + "required": [ + "unit" + ] + }, + "in/s^2": { + "properties": { + "unit": { + "type": "string", + "const": "in/s^2", + "$asm.unit-iri": "http://qudt.org/vocab/unit#InchPerSecondSquared" + } + }, + "required": [ + "unit" + ] + }, + "inAq": { + "properties": { + "unit": { + "type": "string", + "const": "inAq", + "$asm.unit-iri": "http://qudt.org/vocab/unit#InchOfWater" + } + }, + "required": [ + "unit" + ] + }, + "inHg": { + "properties": { + "unit": { + "type": "string", + "const": "inHg", + "$asm.unit-iri": "http://qudt.org/vocab/unit#InchOfMercury" + } + }, + "required": [ + "unit" + ] + }, + "in^2": { + "properties": { + "unit": { + "type": "string", + "const": "in^2", + "$asm.unit-iri": "http://qudt.org/vocab/unit#SquareInch" + } + }, + "required": [ + "unit" + ] + }, + "in^3": { + "properties": { + "unit": { + "type": "string", + "const": "in^3", + "$asm.unit-iri": "http://qudt.org/vocab/unit#CubicInch" + } + }, + "required": [ + "unit" + ] + }, + "in^3/min": { + "properties": { + "unit": { + "type": "string", + "const": "in^3/min", + "$asm.unit-iri": "http://qudt.org/vocab/unit#CubicInchPerMinute" + } + }, + "required": [ + "unit" + ] + }, + "kHz": { + "properties": { + "unit": { + "type": "string", + "const": "kHz", + "$asm.unit-iri": "http://qudt.org/vocab/unit#KiloHertz" + } + }, + "required": [ + "unit" + ] + }, + "kJ/(mol K)": { + "properties": { + "unit": { + "type": "string", + "const": "kJ/(mol K)", + "$asm.unit-iri": "http://purl.allotrope.org/ontology/qudt-ext/unit#KiloJoulePerMoleKelvin" + } + }, + "required": [ + "unit" + ] + }, + "kPa": { + "properties": { + "unit": { + "type": "string", + "const": "kPa", + "$asm.unit-iri": "http://qudt.org/vocab/unit#KiloPascal" + } + }, + "required": [ + "unit" + ] + }, + "kPaA": { + "properties": { + "unit": { + "type": "string", + "const": "kPaA", + "$asm.unit-iri": "http://qudt.org/vocab/unit#KiloPascalAbsolute" + } + }, + "required": [ + "unit" + ] + }, + "kV": { + "properties": { + "unit": { + "type": "string", + "const": "kV", + "$asm.unit-iri": "http://purl.allotrope.org/ontology/qudt-ext/unit#KiloVolt" + } + }, + "required": [ + "unit" + ] + }, + "kW": { + "properties": { + "unit": { + "type": "string", + "const": "kW", + "$asm.unit-iri": "http://qudt.org/vocab/unit#Kilowatt" + } + }, + "required": [ + "unit" + ] + }, + "kW h": { + "properties": { + "unit": { + "type": "string", + "const": "kW h", + "$asm.unit-iri": "http://qudt.org/vocab/unit#Kilowatthour" + } + }, + "required": [ + "unit" + ] + }, + "kat": { + "properties": { + "unit": { + "type": "string", + "const": "kat", + "$asm.unit-iri": "http://qudt.org/vocab/unit#Katal" + } + }, + "required": [ + "unit" + ] + }, + "kbps": { + "properties": { + "unit": { + "type": "string", + "const": "kbps", + "$asm.unit-iri": "http://qudt.org/vocab/unit#KilobitsPerSecond" + } + }, + "required": [ + "unit" + ] + }, + "kcal": { + "properties": { + "unit": { + "type": "string", + "const": "kcal", + "$asm.unit-iri": "http://qudt.org/vocab/unit#Kilocalorie" + } + }, + "required": [ + "unit" + ] + }, + "kcal/(cm^2 min)": { + "properties": { + "unit": { + "type": "string", + "const": "kcal/(cm^2 min)", + "$asm.unit-iri": "http://qudt.org/vocab/unit#KilocaloriePerSquareCentimeterMinute" + } + }, + "required": [ + "unit" + ] + }, + "kcal/(cm^2 s)": { + "properties": { + "unit": { + "type": "string", + "const": "kcal/(cm^2 s)", + "$asm.unit-iri": "http://qudt.org/vocab/unit#KilocaloriePerSquareCentimeterSecond" + } + }, + "required": [ + "unit" + ] + }, + "kcal/(g °C)": { + "properties": { + "unit": { + "type": "string", + "const": "kcal/(g °C)", + "$asm.unit-iri": "http://qudt.org/vocab/unit#KilocaloriePerGramDegreeCelsius" + } + }, + "required": [ + "unit" + ] + }, + "kcal/(mol °C)": { + "properties": { + "unit": { + "type": "string", + "const": "kcal/(mol °C)", + "$asm.unit-iri": "http://qudt.org/vocab/unit#KilocaloriePerMoleDegreeCelsius" + } + }, + "required": [ + "unit" + ] + }, + "kcal/cm^2": { + "properties": { + "unit": { + "type": "string", + "const": "kcal/cm^2", + "$asm.unit-iri": "http://qudt.org/vocab/unit#KilocaloriePerSquareCentimeter" + } + }, + "required": [ + "unit" + ] + }, + "kcal/g": { + "properties": { + "unit": { + "type": "string", + "const": "kcal/g", + "$asm.unit-iri": "http://qudt.org/vocab/unit#KilocaloriePerGram" + } + }, + "required": [ + "unit" + ] + }, + "kcal/min": { + "properties": { + "unit": { + "type": "string", + "const": "kcal/min", + "$asm.unit-iri": "http://qudt.org/vocab/unit#KilocaloriePerMinute" + } + }, + "required": [ + "unit" + ] + }, + "kcal/mol": { + "properties": { + "unit": { + "type": "string", + "const": "kcal/mol", + "$asm.unit-iri": "http://qudt.org/vocab/unit#KilocaloriePerMole" + } + }, + "required": [ + "unit" + ] + }, + "kcal/s": { + "properties": { + "unit": { + "type": "string", + "const": "kcal/s", + "$asm.unit-iri": "http://qudt.org/vocab/unit#KilocaloriePerSecond" + } + }, + "required": [ + "unit" + ] + }, + "keV": { + "properties": { + "unit": { + "type": "string", + "const": "keV", + "$asm.unit-iri": "http://qudt.org/vocab/unit#KiloElectronVolt" + } + }, + "required": [ + "unit" + ] + }, + "keV/µm": { + "properties": { + "unit": { + "type": "string", + "const": "keV/µm", + "$asm.unit-iri": "http://qudt.org/vocab/unit#KiloElectronVoltPerMicrometer" + } + }, + "required": [ + "unit" + ] + }, + "kg": { + "properties": { + "unit": { + "type": "string", + "const": "kg", + "$asm.unit-iri": "http://qudt.org/vocab/unit#Kilogram" + } + }, + "required": [ + "unit" + ] + }, + "kg K": { + "properties": { + "unit": { + "type": "string", + "const": "kg K", + "$asm.unit-iri": "http://qudt.org/vocab/unit#KilogramKelvin" + } + }, + "required": [ + "unit" + ] + }, + "kg m s^-1": { + "properties": { + "unit": { + "type": "string", + "const": "kg m s^-1", + "$asm.unit-iri": "http://qudt.org/vocab/unit#KilogramMeterPerSecond" + } + }, + "required": [ + "unit" + ] + }, + "kg m^2": { + "properties": { + "unit": { + "type": "string", + "const": "kg m^2", + "$asm.unit-iri": "http://qudt.org/vocab/unit#KilogramMeterSquared" + } + }, + "required": [ + "unit" + ] + }, + "kg mol^-1": { + "properties": { + "unit": { + "type": "string", + "const": "kg mol^-1", + "$asm.unit-iri": "http://qudt.org/vocab/unit#KilogramPerMole" + } + }, + "required": [ + "unit" + ] + }, + "kg s^2": { + "properties": { + "unit": { + "type": "string", + "const": "kg s^2", + "$asm.unit-iri": "http://qudt.org/vocab/unit#KilogramSecondSquared" + } + }, + "required": [ + "unit" + ] + }, + "kg/L": { + "properties": { + "unit": { + "type": "string", + "const": "kg/L", + "$asm.unit-iri": "http://purl.allotrope.org/ontology/qudt-ext/unit#KilogramPerLiter" + } + }, + "required": [ + "unit" + ] + }, + "kg/cm^2": { + "properties": { + "unit": { + "type": "string", + "const": "kg/cm^2", + "$asm.unit-iri": "http://purl.allotrope.org/ontology/qudt-ext/unit#KilogramPerSquareCentimeter" + } + }, + "required": [ + "unit" + ] + }, + "kg/fL": { + "properties": { + "unit": { + "type": "string", + "const": "kg/fL", + "$asm.unit-iri": "http://purl.allotrope.org/ontology/qudt-ext/unit#KilogramPerFemtoliter" + } + }, + "required": [ + "unit" + ] + }, + "kg/h": { + "properties": { + "unit": { + "type": "string", + "const": "kg/h", + "$asm.unit-iri": "http://qudt.org/vocab/unit#KilogramPerHour" + } + }, + "required": [ + "unit" + ] + }, + "kg/m": { + "properties": { + "unit": { + "type": "string", + "const": "kg/m", + "$asm.unit-iri": "http://qudt.org/vocab/unit#KilogramPerMeter" + } + }, + "required": [ + "unit" + ] + }, + "kg/mL": { + "properties": { + "unit": { + "type": "string", + "const": "kg/mL", + "$asm.unit-iri": "http://purl.allotrope.org/ontology/qudt-ext/unit#KilogramPerMilliliter" + } + }, + "required": [ + "unit" + ] + }, + "kg/m^2": { + "properties": { + "unit": { + "type": "string", + "const": "kg/m^2", + "$asm.unit-iri": "http://qudt.org/vocab/unit#KilogramPerSquareMeter" + } + }, + "required": [ + "unit" + ] + }, + "kg/m^3": { + "properties": { + "unit": { + "type": "string", + "const": "kg/m^3", + "$asm.unit-iri": "http://qudt.org/vocab/unit#KilogramPerCubicMeter" + } + }, + "required": [ + "unit" + ] + }, + "kg/nL": { + "properties": { + "unit": { + "type": "string", + "const": "kg/nL", + "$asm.unit-iri": "http://purl.allotrope.org/ontology/qudt-ext/unit#KilogramPerNanoliter" + } + }, + "required": [ + "unit" + ] + }, + "kg/pL": { + "properties": { + "unit": { + "type": "string", + "const": "kg/pL", + "$asm.unit-iri": "http://purl.allotrope.org/ontology/qudt-ext/unit#KilogramPerPicoliter" + } + }, + "required": [ + "unit" + ] + }, + "kg/s": { + "properties": { + "unit": { + "type": "string", + "const": "kg/s", + "$asm.unit-iri": "http://qudt.org/vocab/unit#KilogramPerSecond" + } + }, + "required": [ + "unit" + ] + }, + "kg/μL": { + "properties": { + "unit": { + "type": "string", + "const": "kg/μL", + "$asm.unit-iri": "http://purl.allotrope.org/ontology/qudt-ext/unit#KilogramPerMicroliter" + } + }, + "required": [ + "unit" + ] + }, + "kgf": { + "properties": { + "unit": { + "type": "string", + "const": "kgf", + "$asm.unit-iri": "http://qudt.org/vocab/unit#KilogramForce" + } + }, + "required": [ + "unit" + ] + }, + "kgf m": { + "properties": { + "unit": { + "type": "string", + "const": "kgf m", + "$asm.unit-iri": "http://qudt.org/vocab/unit#KilogramForceMeter" + } + }, + "required": [ + "unit" + ] + }, + "kgf/cm^2": { + "properties": { + "unit": { + "type": "string", + "const": "kgf/cm^2", + "$asm.unit-iri": "http://qudt.org/vocab/unit#KilogramForcePerSquareCentimeter" + } + }, + "required": [ + "unit" + ] + }, + "kip": { + "properties": { + "unit": { + "type": "string", + "const": "kip", + "$asm.unit-iri": "http://qudt.org/vocab/unit#Kip" + } + }, + "required": [ + "unit" + ] + }, + "kip/in^2": { + "properties": { + "unit": { + "type": "string", + "const": "kip/in^2", + "$asm.unit-iri": "http://qudt.org/vocab/unit#KipPerSquareInch" + } + }, + "required": [ + "unit" + ] + }, + "km": { + "properties": { + "unit": { + "type": "string", + "const": "km", + "$asm.unit-iri": "http://qudt.org/vocab/unit#Kilometer" + } + }, + "required": [ + "unit" + ] + }, + "km/h": { + "properties": { + "unit": { + "type": "string", + "const": "km/h", + "$asm.unit-iri": "http://qudt.org/vocab/unit#KilometerPerHour" + } + }, + "required": [ + "unit" + ] + }, + "km/s": { + "properties": { + "unit": { + "type": "string", + "const": "km/s", + "$asm.unit-iri": "http://qudt.org/vocab/unit#KilometerPerSecond" + } + }, + "required": [ + "unit" + ] + }, + "km^3/s^2": { + "properties": { + "unit": { + "type": "string", + "const": "km^3/s^2", + "$asm.unit-iri": "http://qudt.org/vocab/unit#CubicKilometerPerSecondSquared" + } + }, + "required": [ + "unit" + ] + }, + "kn": { + "properties": { + "unit": { + "type": "string", + "const": "kn", + "$asm.unit-iri": "http://qudt.org/vocab/unit#Knot" + } + }, + "required": [ + "unit" + ] + }, + "kp": { + "properties": { + "unit": { + "type": "string", + "const": "kp", + "$asm.unit-iri": "http://qudt.org/vocab/unit#KiloPond" + } + }, + "required": [ + "unit" + ] + }, + "kt/s": { + "properties": { + "unit": { + "type": "string", + "const": "kt/s", + "$asm.unit-iri": "http://qudt.org/vocab/unit#KnotPerSecond" + } + }, + "required": [ + "unit" + ] + }, + "l_P": { + "properties": { + "unit": { + "type": "string", + "const": "l_P", + "$asm.unit-iri": "http://qudt.org/vocab/unit#PlanckLength" + } + }, + "required": [ + "unit" + ] + }, + "lb mol": { + "properties": { + "unit": { + "type": "string", + "const": "lb mol", + "$asm.unit-iri": "http://qudt.org/vocab/unit#PoundMole" + } + }, + "required": [ + "unit" + ] + }, + "lb mol °F": { + "properties": { + "unit": { + "type": "string", + "const": "lb mol °F", + "$asm.unit-iri": "http://qudt.org/vocab/unit#PoundMoleDegreeFahrenheit" + } + }, + "required": [ + "unit" + ] + }, + "lb-degF": { + "properties": { + "unit": { + "type": "string", + "const": "lb-degF", + "$asm.unit-iri": "http://qudt.org/vocab/unit#PoundDegreeFahrenheit" + } + }, + "required": [ + "unit" + ] + }, + "lb-degR": { + "properties": { + "unit": { + "type": "string", + "const": "lb-degR", + "$asm.unit-iri": "http://qudt.org/vocab/unit#PoundDegreeRankine" + } + }, + "required": [ + "unit" + ] + }, + "lb/(ft-hr)": { + "properties": { + "unit": { + "type": "string", + "const": "lb/(ft-hr)", + "$asm.unit-iri": "http://qudt.org/vocab/unit#PoundPerFootHour" + } + }, + "required": [ + "unit" + ] + }, + "lb/(ft-s)": { + "properties": { + "unit": { + "type": "string", + "const": "lb/(ft-s)", + "$asm.unit-iri": "http://qudt.org/vocab/unit#PoundPerFootSecond" + } + }, + "required": [ + "unit" + ] + }, + "lb/ft": { + "properties": { + "unit": { + "type": "string", + "const": "lb/ft", + "$asm.unit-iri": "http://qudt.org/vocab/unit#PoundPerFoot" + } + }, + "required": [ + "unit" + ] + }, + "lb/ft^2": { + "properties": { + "unit": { + "type": "string", + "const": "lb/ft^2", + "$asm.unit-iri": "http://qudt.org/vocab/unit#PoundPerSquareFoot" + } + }, + "required": [ + "unit" + ] + }, + "lb/ft^3": { + "properties": { + "unit": { + "type": "string", + "const": "lb/ft^3", + "$asm.unit-iri": "http://qudt.org/vocab/unit#PoundPerCubicFoot" + } + }, + "required": [ + "unit" + ] + }, + "lb/gal": { + "properties": { + "unit": { + "type": "string", + "const": "lb/gal", + "$asm.unit-iri": "http://qudt.org/vocab/unit#PoundPerGallon" + } + }, + "required": [ + "unit" + ] + }, + "lb/hr": { + "properties": { + "unit": { + "type": "string", + "const": "lb/hr", + "$asm.unit-iri": "http://qudt.org/vocab/unit#PoundPerHour" + } + }, + "required": [ + "unit" + ] + }, + "lb/in": { + "properties": { + "unit": { + "type": "string", + "const": "lb/in", + "$asm.unit-iri": "http://qudt.org/vocab/unit#PoundPerInch" + } + }, + "required": [ + "unit" + ] + }, + "lb/in^3": { + "properties": { + "unit": { + "type": "string", + "const": "lb/in^3", + "$asm.unit-iri": "http://qudt.org/vocab/unit#PoundPerCubicInch" + } + }, + "required": [ + "unit" + ] + }, + "lb/min": { + "properties": { + "unit": { + "type": "string", + "const": "lb/min", + "$asm.unit-iri": "http://qudt.org/vocab/unit#PoundPerMinute" + } + }, + "required": [ + "unit" + ] + }, + "lb/yd^3": { + "properties": { + "unit": { + "type": "string", + "const": "lb/yd^3", + "$asm.unit-iri": "http://qudt.org/vocab/unit#PoundPerCubicYard" + } + }, + "required": [ + "unit" + ] + }, + "lb_av": { + "properties": { + "unit": { + "type": "string", + "const": "lb_av", + "$asm.unit-iri": "http://purl.allotrope.org/ontology/qudt-ext/unit#AvoirdupoisPound" + } + }, + "required": [ + "unit" + ] + }, + "lbf": { + "properties": { + "unit": { + "type": "string", + "const": "lbf", + "$asm.unit-iri": "http://qudt.org/vocab/unit#PoundForce" + } + }, + "required": [ + "unit" + ] + }, + "lbf / in^2-s": { + "properties": { + "unit": { + "type": "string", + "const": "lbf / in^2-s", + "$asm.unit-iri": "http://qudt.org/vocab/unit#PoundForcePerSquareInchSecond" + } + }, + "required": [ + "unit" + ] + }, + "lbf-ft": { + "properties": { + "unit": { + "type": "string", + "const": "lbf-ft", + "$asm.unit-iri": "http://qudt.org/vocab/unit#PoundForceFoot" + } + }, + "required": [ + "unit" + ] + }, + "lbf-in": { + "properties": { + "unit": { + "type": "string", + "const": "lbf-in", + "$asm.unit-iri": "http://qudt.org/vocab/unit#PoundForceInch" + } + }, + "required": [ + "unit" + ] + }, + "lbf-s/ft^2": { + "properties": { + "unit": { + "type": "string", + "const": "lbf-s/ft^2", + "$asm.unit-iri": "http://qudt.org/vocab/unit#PoundForceSecondPerSquareFoot" + } + }, + "required": [ + "unit" + ] + }, + "lbf-s/in^2": { + "properties": { + "unit": { + "type": "string", + "const": "lbf-s/in^2", + "$asm.unit-iri": "http://qudt.org/vocab/unit#PoundForceSecondPerSquareInch" + } + }, + "required": [ + "unit" + ] + }, + "lbf/ft": { + "properties": { + "unit": { + "type": "string", + "const": "lbf/ft", + "$asm.unit-iri": "http://qudt.org/vocab/unit#PoundForcePerFoot" + } + }, + "required": [ + "unit" + ] + }, + "lbf/ft^2": { + "properties": { + "unit": { + "type": "string", + "const": "lbf/ft^2", + "$asm.unit-iri": "http://qudt.org/vocab/unit#PoundForcePerSquareFoot" + } + }, + "required": [ + "unit" + ] + }, + "lbf/in": { + "properties": { + "unit": { + "type": "string", + "const": "lbf/in", + "$asm.unit-iri": "http://qudt.org/vocab/unit#PoundForcePerInch" + } + }, + "required": [ + "unit" + ] + }, + "lbf/lb": { + "properties": { + "unit": { + "type": "string", + "const": "lbf/lb", + "$asm.unit-iri": "http://qudt.org/vocab/unit#PoundForcePerPound" + } + }, + "required": [ + "unit" + ] + }, + "lbf/s": { + "properties": { + "unit": { + "type": "string", + "const": "lbf/s", + "$asm.unit-iri": "http://qudt.org/vocab/unit#FootPoundForceSecond" + } + }, + "required": [ + "unit" + ] + }, + "lbm": { + "properties": { + "unit": { + "type": "string", + "const": "lbm", + "$asm.unit-iri": "http://qudt.org/vocab/unit#PoundMass" + } + }, + "required": [ + "unit" + ] + }, + "lbm (tr)": { + "properties": { + "unit": { + "type": "string", + "const": "lbm (tr)", + "$asm.unit-iri": "http://qudt.org/vocab/unit#PoundTroy" + } + }, + "required": [ + "unit" + ] + }, + "lbm/m^3": { + "properties": { + "unit": { + "type": "string", + "const": "lbm/m^3", + "$asm.unit-iri": "http://qudt.org/vocab/unit#PoundPerCubicMeter" + } + }, + "required": [ + "unit" + ] + }, + "lcwt": { + "properties": { + "unit": { + "type": "string", + "const": "lcwt", + "$asm.unit-iri": "http://qudt.org/vocab/unit#HundredWeightLong" + } + }, + "required": [ + "unit" + ] + }, + "lm": { + "properties": { + "unit": { + "type": "string", + "const": "lm", + "$asm.unit-iri": "http://qudt.org/vocab/unit#Lumen" + } + }, + "required": [ + "unit" + ] + }, + "lx": { + "properties": { + "unit": { + "type": "string", + "const": "lx", + "$asm.unit-iri": "http://qudt.org/vocab/unit#Lux" + } + }, + "required": [ + "unit" + ] + }, + "ly": { + "properties": { + "unit": { + "type": "string", + "const": "ly", + "$asm.unit-iri": "http://qudt.org/vocab/unit#LightYear" + } + }, + "required": [ + "unit" + ] + }, + "m": { + "properties": { + "unit": { + "type": "string", + "const": "m", + "$asm.unit-iri": "http://qudt.org/vocab/unit#Meter" + } + }, + "required": [ + "unit" + ] + }, + "m K": { + "properties": { + "unit": { + "type": "string", + "const": "m K", + "$asm.unit-iri": "http://qudt.org/vocab/unit#MeterKelvin" + } + }, + "required": [ + "unit" + ] + }, + "m T": { + "properties": { + "unit": { + "type": "string", + "const": "m T", + "$asm.unit-iri": "http://qudt.org/vocab/unit#TeslaMeter" + } + }, + "required": [ + "unit" + ] + }, + "m V": { + "properties": { + "unit": { + "type": "string", + "const": "m V", + "$asm.unit-iri": "http://qudt.org/vocab/unit#VoltMeter" + } + }, + "required": [ + "unit" + ] + }, + "m h^-1": { + "properties": { + "unit": { + "type": "string", + "const": "m h^-1", + "$asm.unit-iri": "http://qudt.org/vocab/unit#MeterPerHour" + } + }, + "required": [ + "unit" + ] + }, + "m min^-1": { + "properties": { + "unit": { + "type": "string", + "const": "m min^-1", + "$asm.unit-iri": "http://qudt.org/vocab/unit#MeterPerMinute" + } + }, + "required": [ + "unit" + ] + }, + "m s^-1": { + "properties": { + "unit": { + "type": "string", + "const": "m s^-1", + "$asm.unit-iri": "http://qudt.org/vocab/unit#MeterPerSecond" + } + }, + "required": [ + "unit" + ] + }, + "m s^-2": { + "properties": { + "unit": { + "type": "string", + "const": "m s^-2", + "$asm.unit-iri": "http://qudt.org/vocab/unit#MeterPerSecondSquared" + } + }, + "required": [ + "unit" + ] + }, + "m-kg": { + "properties": { + "unit": { + "type": "string", + "const": "m-kg", + "$asm.unit-iri": "http://qudt.org/vocab/unit#MeterKilogram" + } + }, + "required": [ + "unit" + ] + }, + "m/F": { + "properties": { + "unit": { + "type": "string", + "const": "m/F", + "$asm.unit-iri": "http://qudt.org/vocab/unit#MeterPerFarad" + } + }, + "required": [ + "unit" + ] + }, + "m/K": { + "properties": { + "unit": { + "type": "string", + "const": "m/K", + "$asm.unit-iri": "http://qudt.org/vocab/unit#MeterPerKelvin" + } + }, + "required": [ + "unit" + ] + }, + "m/z": { + "properties": { + "unit": { + "type": "string", + "const": "m/z", + "$asm.unit-iri": "http://purl.allotrope.org/ontology/qudt-ext/unit#MassPerCharge" + } + }, + "required": [ + "unit" + ] + }, + "mA": { + "properties": { + "unit": { + "type": "string", + "const": "mA", + "$asm.unit-iri": "http://purl.allotrope.org/ontology/qudt-ext/unit#MilliAmpere" + } + }, + "required": [ + "unit" + ] + }, + "mAU": { + "properties": { + "unit": { + "type": "string", + "const": "mAU", + "$asm.unit-iri": "http://purl.allotrope.org/ontology/qudt-ext/unit#MilliAbsorbanceUnit" + } + }, + "required": [ + "unit" + ] + }, + "mAU.L": { + "properties": { + "unit": { + "type": "string", + "const": "mAU.L", + "$asm.unit-iri": "http://purl.allotrope.org/ontology/qudt-ext/unit#MilliAbsorbanceUnitTimesLiter" + } + }, + "required": [ + "unit" + ] + }, + "mAU.mL": { + "properties": { + "unit": { + "type": "string", + "const": "mAU.mL", + "$asm.unit-iri": "http://purl.allotrope.org/ontology/qudt-ext/unit#MilliAbsorbanceUnitTimesMilliliter" + } + }, + "required": [ + "unit" + ] + }, + "mAU.min": { + "properties": { + "unit": { + "type": "string", + "const": "mAU.min", + "$asm.unit-iri": "http://purl.allotrope.org/ontology/qudt-ext/unit#MilliAbsorbanceUnitTimesMinute" + } + }, + "required": [ + "unit" + ] + }, + "mAU.s": { + "properties": { + "unit": { + "type": "string", + "const": "mAU.s", + "$asm.unit-iri": "http://purl.allotrope.org/ontology/qudt-ext/unit#MilliAbsorbanceUnitTimesSecond" + } + }, + "required": [ + "unit" + ] + }, + "mArbU": { + "properties": { + "unit": { + "type": "string", + "const": "mArbU", + "$asm.unit-iri": "http://purl.allotrope.org/ontology/qudt-ext/unit#MilliArbitraryUnit" + } + }, + "required": [ + "unit" + ] + }, + "mF/m": { + "properties": { + "unit": { + "type": "string", + "const": "mF/m", + "$asm.unit-iri": "http://purl.allotrope.org/ontology/qudt-ext/unit#MicroFaradPerMeter" + } + }, + "required": [ + "unit" + ] + }, + "mF/m kHz": { + "properties": { + "unit": { + "type": "string", + "const": "mF/m kHz", + "$asm.unit-iri": "http://purl.allotrope.org/ontology/qudt-ext/unit#MicroFaradPerMeterKiloHertz" + } + }, + "required": [ + "unit" + ] + }, + "mG": { + "properties": { + "unit": { + "type": "string", + "const": "mG", + "$asm.unit-iri": "http://qudt.org/vocab/unit#Milligravity" + } + }, + "required": [ + "unit" + ] + }, + "mH": { + "properties": { + "unit": { + "type": "string", + "const": "mH", + "$asm.unit-iri": "http://qudt.org/vocab/unit#MilliHenry" + } + }, + "required": [ + "unit" + ] + }, + "mL": { + "properties": { + "unit": { + "type": "string", + "const": "mL", + "$asm.unit-iri": "http://purl.allotrope.org/ontology/qudt-ext/unit#Milliliter" + } + }, + "required": [ + "unit" + ] + }, + "mL/L": { + "properties": { + "unit": { + "type": "string", + "const": "mL/L", + "$asm.unit-iri": "http://purl.allotrope.org/ontology/qudt-ext/unit#MilliliterPerLiter" + } + }, + "required": [ + "unit" + ] + }, + "mL/kg": { + "properties": { + "unit": { + "type": "string", + "const": "mL/kg", + "$asm.unit-iri": "http://purl.allotrope.org/ontology/qudt-ext/unit#MilliliterPerKilogram" + } + }, + "required": [ + "unit" + ] + }, + "mL/min": { + "properties": { + "unit": { + "type": "string", + "const": "mL/min", + "$asm.unit-iri": "http://purl.allotrope.org/ontology/qudt-ext/unit#MilliliterPerMinute" + } + }, + "required": [ + "unit" + ] + }, + "mL/min^2": { + "properties": { + "unit": { + "type": "string", + "const": "mL/min^2", + "$asm.unit-iri": "http://purl.allotrope.org/ontology/qudt-ext/unit#MilliliterPerMinuteSquared" + } + }, + "required": [ + "unit" + ] + }, + "mL/s": { + "properties": { + "unit": { + "type": "string", + "const": "mL/s", + "$asm.unit-iri": "http://purl.allotrope.org/ontology/qudt-ext/unit#MilliliterPerSecond" + } + }, + "required": [ + "unit" + ] + }, + "mL/s^2": { + "properties": { + "unit": { + "type": "string", + "const": "mL/s^2", + "$asm.unit-iri": "http://purl.allotrope.org/ontology/qudt-ext/unit#MilliliterPerSecondSquared" + } + }, + "required": [ + "unit" + ] + }, + "mM": { + "properties": { + "unit": { + "type": "string", + "const": "mM", + "$asm.unit-iri": "http://purl.allotrope.org/ontology/qudt-ext/unit#Millimolar" + } + }, + "required": [ + "unit" + ] + }, + "mS/cm": { + "properties": { + "unit": { + "type": "string", + "const": "mS/cm", + "$asm.unit-iri": "http://purl.allotrope.org/ontology/qudt-ext/unit#MillisiemenPerCentimeter" + } + }, + "required": [ + "unit" + ] + }, + "mT": { + "properties": { + "unit": { + "type": "string", + "const": "mT", + "$asm.unit-iri": "http://qudt.org/vocab/unit#MetricTon" + } + }, + "required": [ + "unit" + ] + }, + "mV": { + "properties": { + "unit": { + "type": "string", + "const": "mV", + "$asm.unit-iri": "http://purl.allotrope.org/ontology/qudt-ext/unit#Millivolt" + } + }, + "required": [ + "unit" + ] + }, + "mV.L": { + "properties": { + "unit": { + "type": "string", + "const": "mV.L", + "$asm.unit-iri": "http://purl.allotrope.org/ontology/qudt-ext/unit#MillivoltTimesLiter" + } + }, + "required": [ + "unit" + ] + }, + "mV.s": { + "properties": { + "unit": { + "type": "string", + "const": "mV.s", + "$asm.unit-iri": "http://purl.allotrope.org/ontology/qudt-ext/unit#MillivoltTimesSecond" + } + }, + "required": [ + "unit" + ] + }, + "mW": { + "properties": { + "unit": { + "type": "string", + "const": "mW", + "$asm.unit-iri": "http://purl.allotrope.org/ontology/qudt-ext/unit#MilliWatt" + } + }, + "required": [ + "unit" + ] + }, + "mW/g": { + "properties": { + "unit": { + "type": "string", + "const": "mW/g", + "$asm.unit-iri": "http://purl.allotrope.org/ontology/qudt-ext/unit#MilliWattPerGram" + } + }, + "required": [ + "unit" + ] + }, + "m^-1": { + "properties": { + "unit": { + "type": "string", + "const": "m^-1", + "$asm.unit-iri": "http://qudt.org/vocab/unit#PerMeter" + } + }, + "required": [ + "unit" + ] + }, + "m^-1 K^-1": { + "properties": { + "unit": { + "type": "string", + "const": "m^-1 K^-1", + "$asm.unit-iri": "http://qudt.org/vocab/unit#PerMeterKelvin" + } + }, + "required": [ + "unit" + ] + }, + "m^-1 T^-1": { + "properties": { + "unit": { + "type": "string", + "const": "m^-1 T^-1", + "$asm.unit-iri": "http://qudt.org/vocab/unit#PerTeslaMeter" + } + }, + "required": [ + "unit" + ] + }, + "m^-3": { + "properties": { + "unit": { + "type": "string", + "const": "m^-3", + "$asm.unit-iri": "http://qudt.org/vocab/unit#PerCubicMeter" + } + }, + "required": [ + "unit" + ] + }, + "m^2": { + "properties": { + "unit": { + "type": "string", + "const": "m^2", + "$asm.unit-iri": "http://qudt.org/vocab/unit#SquareMeter" + } + }, + "required": [ + "unit" + ] + }, + "m^2 K": { + "properties": { + "unit": { + "type": "string", + "const": "m^2 K", + "$asm.unit-iri": "http://qudt.org/vocab/unit#SquareMeterKelvin" + } + }, + "required": [ + "unit" + ] + }, + "m^2 sr": { + "properties": { + "unit": { + "type": "string", + "const": "m^2 sr", + "$asm.unit-iri": "http://qudt.org/vocab/unit#SquareMeterSteradian" + } + }, + "required": [ + "unit" + ] + }, + "m^2/K": { + "properties": { + "unit": { + "type": "string", + "const": "m^2/K", + "$asm.unit-iri": "http://qudt.org/vocab/unit#SquareMeterPerKelvin" + } + }, + "required": [ + "unit" + ] + }, + "m^2/g": { + "properties": { + "unit": { + "type": "string", + "const": "m^2/g", + "$asm.unit-iri": "http://purl.allotrope.org/ontology/qudt-ext/unit#SquareMetersPerGram" + } + }, + "required": [ + "unit" + ] + }, + "m^2/s": { + "properties": { + "unit": { + "type": "string", + "const": "m^2/s", + "$asm.unit-iri": "http://qudt.org/vocab/unit#SquareMeterPerSecond" + } + }, + "required": [ + "unit" + ] + }, + "m^3": { + "properties": { + "unit": { + "type": "string", + "const": "m^3", + "$asm.unit-iri": "http://qudt.org/vocab/unit#CubicMeter" + } + }, + "required": [ + "unit" + ] + }, + "m^3 kg^-1 s^-2": { + "properties": { + "unit": { + "type": "string", + "const": "m^3 kg^-1 s^-2", + "$asm.unit-iri": "http://qudt.org/vocab/unit#CubicMeterPerKilogramSecondSquared" + } + }, + "required": [ + "unit" + ] + }, + "m^3 mol^-1": { + "properties": { + "unit": { + "type": "string", + "const": "m^3 mol^-1", + "$asm.unit-iri": "http://qudt.org/vocab/unit#CubicMeterPerMole" + } + }, + "required": [ + "unit" + ] + }, + "m^3/K": { + "properties": { + "unit": { + "type": "string", + "const": "m^3/K", + "$asm.unit-iri": "http://qudt.org/vocab/unit#CubicMeterPerKelvin" + } + }, + "required": [ + "unit" + ] + }, + "m^3/h": { + "properties": { + "unit": { + "type": "string", + "const": "m^3/h", + "$asm.unit-iri": "http://qudt.org/vocab/unit#CubicMeterPerHour" + } + }, + "required": [ + "unit" + ] + }, + "m^3/kg": { + "properties": { + "unit": { + "type": "string", + "const": "m^3/kg", + "$asm.unit-iri": "http://qudt.org/vocab/unit#CubicMeterPerKilogram" + } + }, + "required": [ + "unit" + ] + }, + "m^3/s": { + "properties": { + "unit": { + "type": "string", + "const": "m^3/s", + "$asm.unit-iri": "http://qudt.org/vocab/unit#CubicMeterPerSecond" + } + }, + "required": [ + "unit" + ] + }, + "m^3/s^2": { + "properties": { + "unit": { + "type": "string", + "const": "m^3/s^2", + "$asm.unit-iri": "http://qudt.org/vocab/unit#CubicMeterPerSecondSquared" + } + }, + "required": [ + "unit" + ] + }, + "m_P": { + "properties": { + "unit": { + "type": "string", + "const": "m_P", + "$asm.unit-iri": "http://qudt.org/vocab/unit#PlanckMass" + } + }, + "required": [ + "unit" + ] + }, + "mbar": { + "properties": { + "unit": { + "type": "string", + "const": "mbar", + "$asm.unit-iri": "http://qudt.org/vocab/unit#Millibar" + } + }, + "required": [ + "unit" + ] + }, + "mbps": { + "properties": { + "unit": { + "type": "string", + "const": "mbps", + "$asm.unit-iri": "http://qudt.org/vocab/unit#MegabitsPerSecond" + } + }, + "required": [ + "unit" + ] + }, + "mcal/(mol °C)": { + "properties": { + "unit": { + "type": "string", + "const": "mcal/(mol °C)", + "$asm.unit-iri": "http://purl.allotrope.org/ontology/qudt-ext/unit#MilliCaloriePerMoleDegreeCelsius" + } + }, + "required": [ + "unit" + ] + }, + "mcal/min": { + "properties": { + "unit": { + "type": "string", + "const": "mcal/min", + "$asm.unit-iri": "http://purl.allotrope.org/ontology/qudt-ext/unit#MilliCaloriePerMinute" + } + }, + "required": [ + "unit" + ] + }, + "mcal/s": { + "properties": { + "unit": { + "type": "string", + "const": "mcal/s", + "$asm.unit-iri": "http://purl.allotrope.org/ontology/qudt-ext/unit#MilliCaloriePerSecond" + } + }, + "required": [ + "unit" + ] + }, + "mg": { + "properties": { + "unit": { + "type": "string", + "const": "mg", + "$asm.unit-iri": "http://purl.allotrope.org/ontology/qudt-ext/unit#Milligram" + } + }, + "required": [ + "unit" + ] + }, + "mg/L": { + "properties": { + "unit": { + "type": "string", + "const": "mg/L", + "$asm.unit-iri": "http://purl.allotrope.org/ontology/qudt-ext/unit#MilligramPerLiter" + } + }, + "required": [ + "unit" + ] + }, + "mg/cm^2": { + "properties": { + "unit": { + "type": "string", + "const": "mg/cm^2", + "$asm.unit-iri": "http://purl.allotrope.org/ontology/qudt-ext/unit#MilligramPerSquareCentimeter" + } + }, + "required": [ + "unit" + ] + }, + "mg/dL": { + "properties": { + "unit": { + "type": "string", + "const": "mg/dL", + "$asm.unit-iri": "http://purl.allotrope.org/ontology/qudt-ext/unit#MilligramPerDeciliter" + } + }, + "required": [ + "unit" + ] + }, + "mg/fL": { + "properties": { + "unit": { + "type": "string", + "const": "mg/fL", + "$asm.unit-iri": "http://purl.allotrope.org/ontology/qudt-ext/unit#MilligramPerFemtoliter" + } + }, + "required": [ + "unit" + ] + }, + "mg/kg": { + "properties": { + "unit": { + "type": "string", + "const": "mg/kg", + "$asm.unit-iri": "http://purl.allotrope.org/ontology/qudt-ext/unit#MilligramPerKilogram" + } + }, + "required": [ + "unit" + ] + }, + "mg/mL": { + "properties": { + "unit": { + "type": "string", + "const": "mg/mL", + "$asm.unit-iri": "http://purl.allotrope.org/ontology/qudt-ext/unit#MilligramPerMilliliter" + } + }, + "required": [ + "unit" + ] + }, + "mg/m^2": { + "properties": { + "unit": { + "type": "string", + "const": "mg/m^2", + "$asm.unit-iri": "http://purl.allotrope.org/ontology/qudt-ext/unit#MilligramPerSquareMeter" + } + }, + "required": [ + "unit" + ] + }, + "mg/min": { + "properties": { + "unit": { + "type": "string", + "const": "mg/min", + "$asm.unit-iri": "http://purl.allotrope.org/ontology/qudt-ext/unit#MilligramPerMinute" + } + }, + "required": [ + "unit" + ] + }, + "mg/nL": { + "properties": { + "unit": { + "type": "string", + "const": "mg/nL", + "$asm.unit-iri": "http://purl.allotrope.org/ontology/qudt-ext/unit#MilligramPerNanoliter" + } + }, + "required": [ + "unit" + ] + }, + "mg/pL": { + "properties": { + "unit": { + "type": "string", + "const": "mg/pL", + "$asm.unit-iri": "http://purl.allotrope.org/ontology/qudt-ext/unit#MilligramPerPicoliter" + } + }, + "required": [ + "unit" + ] + }, + "mg/s": { + "properties": { + "unit": { + "type": "string", + "const": "mg/s", + "$asm.unit-iri": "http://purl.allotrope.org/ontology/qudt-ext/unit#MilligramPerSecond" + } + }, + "required": [ + "unit" + ] + }, + "mg/μL": { + "properties": { + "unit": { + "type": "string", + "const": "mg/μL", + "$asm.unit-iri": "http://purl.allotrope.org/ontology/qudt-ext/unit#MilligramPerMicroliter" + } + }, + "required": [ + "unit" + ] + }, + "mho": { + "properties": { + "unit": { + "type": "string", + "const": "mho", + "$asm.unit-iri": "http://qudt.org/vocab/unit#Mho" + } + }, + "required": [ + "unit" + ] + }, + "mi": { + "properties": { + "unit": { + "type": "string", + "const": "mi", + "$asm.unit-iri": "http://qudt.org/vocab/unit#MileInternational" + } + }, + "required": [ + "unit" + ] + }, + "mi/hr": { + "properties": { + "unit": { + "type": "string", + "const": "mi/hr", + "$asm.unit-iri": "http://qudt.org/vocab/unit#MilePerHour" + } + }, + "required": [ + "unit" + ] + }, + "mi/min": { + "properties": { + "unit": { + "type": "string", + "const": "mi/min", + "$asm.unit-iri": "http://qudt.org/vocab/unit#MilePerMinute" + } + }, + "required": [ + "unit" + ] + }, + "miUS": { + "properties": { + "unit": { + "type": "string", + "const": "miUS", + "$asm.unit-iri": "http://qudt.org/vocab/unit#MileUSStatute" + } + }, + "required": [ + "unit" + ] + }, + "mi^2": { + "properties": { + "unit": { + "type": "string", + "const": "mi^2", + "$asm.unit-iri": "http://qudt.org/vocab/unit#SquareMile" + } + }, + "required": [ + "unit" + ] + }, + "mi^3": { + "properties": { + "unit": { + "type": "string", + "const": "mi^3", + "$asm.unit-iri": "http://qudt.org/vocab/unit#CubicMile" + } + }, + "required": [ + "unit" + ] + }, + "microF": { + "properties": { + "unit": { + "type": "string", + "const": "microF", + "$asm.unit-iri": "http://qudt.org/vocab/unit#MicroFarad" + } + }, + "required": [ + "unit" + ] + }, + "mil": { + "properties": { + "unit": { + "type": "string", + "const": "mil", + "$asm.unit-iri": "http://qudt.org/vocab/unit#MilAngle" + } + }, + "required": [ + "unit" + ] + }, + "mil (l)": { + "properties": { + "unit": { + "type": "string", + "const": "mil (l)", + "$asm.unit-iri": "http://qudt.org/vocab/unit#MilLength" + } + }, + "required": [ + "unit" + ] + }, + "min": { + "properties": { + "unit": { + "type": "string", + "const": "min", + "$asm.unit-iri": "http://qudt.org/vocab/unit#MinuteTime" + } + }, + "required": [ + "unit" + ] + }, + "min (s)": { + "properties": { + "unit": { + "type": "string", + "const": "min (s)", + "$asm.unit-iri": "http://qudt.org/vocab/unit#MinuteSidereal" + } + }, + "required": [ + "unit" + ] + }, + "min^-1": { + "properties": { + "unit": { + "type": "string", + "const": "min^-1", + "$asm.unit-iri": "http://purl.allotrope.org/ontology/qudt-ext/unit#PerMinute" + } + }, + "required": [ + "unit" + ] + }, + "mm": { + "properties": { + "unit": { + "type": "string", + "const": "mm", + "$asm.unit-iri": "http://qudt.org/vocab/unit#Millimeter" + } + }, + "required": [ + "unit" + ] + }, + "mm/min": { + "properties": { + "unit": { + "type": "string", + "const": "mm/min", + "$asm.unit-iri": "http://purl.allotrope.org/ontology/qudt-ext/unit#MillimeterPerMinute" + } + }, + "required": [ + "unit" + ] + }, + "mm/s": { + "properties": { + "unit": { + "type": "string", + "const": "mm/s", + "$asm.unit-iri": "http://purl.allotrope.org/ontology/qudt-ext/unit#MillimeterPerSecond" + } + }, + "required": [ + "unit" + ] + }, + "mmHg": { + "properties": { + "unit": { + "type": "string", + "const": "mmHg", + "$asm.unit-iri": "http://qudt.org/vocab/unit#MillimeterOfMercury" + } + }, + "required": [ + "unit" + ] + }, + "mmHg/min": { + "properties": { + "unit": { + "type": "string", + "const": "mmHg/min", + "$asm.unit-iri": "http://purl.allotrope.org/ontology/qudt-ext/unit#MillimeterOfMercuryPerMinute" + } + }, + "required": [ + "unit" + ] + }, + "mmHgA": { + "properties": { + "unit": { + "type": "string", + "const": "mmHgA", + "$asm.unit-iri": "http://qudt.org/vocab/unit#MillimeterOfMercuryAbsolute" + } + }, + "required": [ + "unit" + ] + }, + "mm^3": { + "properties": { + "unit": { + "type": "string", + "const": "mm^3", + "$asm.unit-iri": "http://qudt.org/vocab/unit#CubicMillimeter" + } + }, + "required": [ + "unit" + ] + }, + "mmol": { + "properties": { + "unit": { + "type": "string", + "const": "mmol", + "$asm.unit-iri": "http://purl.allotrope.org/ontology/qudt-ext/unit#Millimole" + } + }, + "required": [ + "unit" + ] + }, + "mmol/L": { + "properties": { + "unit": { + "type": "string", + "const": "mmol/L", + "$asm.unit-iri": "http://purl.allotrope.org/ontology/qudt-ext/unit#MillimolePerLiter" + } + }, + "required": [ + "unit" + ] + }, + "mmol/mL": { + "properties": { + "unit": { + "type": "string", + "const": "mmol/mL", + "$asm.unit-iri": "http://purl.allotrope.org/ontology/qudt-ext/unit#MillimolePerMilliliter" + } + }, + "required": [ + "unit" + ] + }, + "mol": { + "properties": { + "unit": { + "type": "string", + "const": "mol", + "$asm.unit-iri": "http://qudt.org/vocab/unit#Mole" + } + }, + "required": [ + "unit" + ] + }, + "mol K": { + "properties": { + "unit": { + "type": "string", + "const": "mol K", + "$asm.unit-iri": "http://qudt.org/vocab/unit#MoleKelvin" + } + }, + "required": [ + "unit" + ] + }, + "mol-degC": { + "properties": { + "unit": { + "type": "string", + "const": "mol-degC", + "$asm.unit-iri": "http://qudt.org/vocab/unit#MoleDegreeCelsius" + } + }, + "required": [ + "unit" + ] + }, + "mol/L": { + "properties": { + "unit": { + "type": "string", + "const": "mol/L", + "$asm.unit-iri": "http://purl.allotrope.org/ontology/qudt-ext/unit#MolePerLiter" + } + }, + "required": [ + "unit" + ] + }, + "mol/dm^3": { + "properties": { + "unit": { + "type": "string", + "const": "mol/dm^3", + "$asm.unit-iri": "http://purl.allotrope.org/ontology/qudt-ext/unit#MolePerCubicDecimeter" + } + }, + "required": [ + "unit" + ] + }, + "mol/kg": { + "properties": { + "unit": { + "type": "string", + "const": "mol/kg", + "$asm.unit-iri": "http://qudt.org/vocab/unit#MolePerKilogram" + } + }, + "required": [ + "unit" + ] + }, + "mol/m^3": { + "properties": { + "unit": { + "type": "string", + "const": "mol/m^3", + "$asm.unit-iri": "http://qudt.org/vocab/unit#MolePerCubicMeter" + } + }, + "required": [ + "unit" + ] + }, + "mol^-1": { + "properties": { + "unit": { + "type": "string", + "const": "mol^-1", + "$asm.unit-iri": "http://qudt.org/vocab/unit#PerMole" + } + }, + "required": [ + "unit" + ] + }, + "mosm/kg": { + "properties": { + "unit": { + "type": "string", + "const": "mosm/kg", + "$asm.unit-iri": "http://purl.allotrope.org/ontology/qudt-ext/unit#MilliOsmolesPerKilogram" + } + }, + "required": [ + "unit" + ] + }, + "ms": { + "properties": { + "unit": { + "type": "string", + "const": "ms", + "$asm.unit-iri": "http://qudt.org/vocab/unit#MilliSecond" + } + }, + "required": [ + "unit" + ] + }, + "mtorr": { + "properties": { + "unit": { + "type": "string", + "const": "mtorr", + "$asm.unit-iri": "http://qudt.org/vocab/unit#MilliTorr" + } + }, + "required": [ + "unit" + ] + }, + "m°": { + "properties": { + "unit": { + "type": "string", + "const": "m°", + "$asm.unit-iri": "http://purl.allotrope.org/ontology/qudt-ext/unit#MilliDegreeAngle" + } + }, + "required": [ + "unit" + ] + }, + "m°.s": { + "properties": { + "unit": { + "type": "string", + "const": "m°.s", + "$asm.unit-iri": "http://purl.allotrope.org/ontology/qudt-ext/unit#MilliDegreeAngleTimesSecond" + } + }, + "required": [ + "unit" + ] + }, + "n mile": { + "properties": { + "unit": { + "type": "string", + "const": "n mile", + "$asm.unit-iri": "http://qudt.org/vocab/unit#NauticalMile" + } + }, + "required": [ + "unit" + ] + }, + "nA": { + "properties": { + "unit": { + "type": "string", + "const": "nA", + "$asm.unit-iri": "http://purl.allotrope.org/ontology/qudt-ext/unit#NanoAmpere" + } + }, + "required": [ + "unit" + ] + }, + "nC": { + "properties": { + "unit": { + "type": "string", + "const": "nC", + "$asm.unit-iri": "http://purl.allotrope.org/ontology/qudt-ext/unit#NanoCoulomb" + } + }, + "required": [ + "unit" + ] + }, + "nC.L": { + "properties": { + "unit": { + "type": "string", + "const": "nC.L", + "$asm.unit-iri": "http://purl.allotrope.org/ontology/qudt-ext/unit#NanoCoulombTimesLiter" + } + }, + "required": [ + "unit" + ] + }, + "nC.s": { + "properties": { + "unit": { + "type": "string", + "const": "nC.s", + "$asm.unit-iri": "http://purl.allotrope.org/ontology/qudt-ext/unit#NanoCoulombTimesSecond" + } + }, + "required": [ + "unit" + ] + }, + "nF": { + "properties": { + "unit": { + "type": "string", + "const": "nF", + "$asm.unit-iri": "http://qudt.org/vocab/unit#NanoFarad" + } + }, + "required": [ + "unit" + ] + }, + "nL": { + "properties": { + "unit": { + "type": "string", + "const": "nL", + "$asm.unit-iri": "http://purl.allotrope.org/ontology/qudt-ext/unit#Nanoliter" + } + }, + "required": [ + "unit" + ] + }, + "nano RIU.s": { + "properties": { + "unit": { + "type": "string", + "const": "nano RIU.s", + "$asm.unit-iri": "http://purl.allotrope.org/ontology/qudt-ext/unit#NanoRefractiveIndexUnitTimesSecond" + } + }, + "required": [ + "unit" + ] + }, + "nat": { + "properties": { + "unit": { + "type": "string", + "const": "nat", + "$asm.unit-iri": "http://qudt.org/vocab/unit#Nat" + } + }, + "required": [ + "unit" + ] + }, + "ng": { + "properties": { + "unit": { + "type": "string", + "const": "ng", + "$asm.unit-iri": "http://purl.allotrope.org/ontology/qudt-ext/unit#Nanogram" + } + }, + "required": [ + "unit" + ] + }, + "ng/L": { + "properties": { + "unit": { + "type": "string", + "const": "ng/L", + "$asm.unit-iri": "http://purl.allotrope.org/ontology/qudt-ext/unit#NanogramPerLiter" + } + }, + "required": [ + "unit" + ] + }, + "ng/cm^2": { + "properties": { + "unit": { + "type": "string", + "const": "ng/cm^2", + "$asm.unit-iri": "http://purl.allotrope.org/ontology/qudt-ext/unit#NanogramPerSquareCentimeter" + } + }, + "required": [ + "unit" + ] + }, + "ng/fL": { + "properties": { + "unit": { + "type": "string", + "const": "ng/fL", + "$asm.unit-iri": "http://purl.allotrope.org/ontology/qudt-ext/unit#NanogramPerFemtoliter" + } + }, + "required": [ + "unit" + ] + }, + "ng/mL": { + "properties": { + "unit": { + "type": "string", + "const": "ng/mL", + "$asm.unit-iri": "http://purl.allotrope.org/ontology/qudt-ext/unit#NanogramPerMilliliter" + } + }, + "required": [ + "unit" + ] + }, + "ng/m^2": { + "properties": { + "unit": { + "type": "string", + "const": "ng/m^2", + "$asm.unit-iri": "http://purl.allotrope.org/ontology/qudt-ext/unit#NanogramPerSquareMeter" + } + }, + "required": [ + "unit" + ] + }, + "ng/nL": { + "properties": { + "unit": { + "type": "string", + "const": "ng/nL", + "$asm.unit-iri": "http://purl.allotrope.org/ontology/qudt-ext/unit#NanogramPerNanoliter" + } + }, + "required": [ + "unit" + ] + }, + "ng/pL": { + "properties": { + "unit": { + "type": "string", + "const": "ng/pL", + "$asm.unit-iri": "http://purl.allotrope.org/ontology/qudt-ext/unit#NanogramPerPicoliter" + } + }, + "required": [ + "unit" + ] + }, + "ng/μL": { + "properties": { + "unit": { + "type": "string", + "const": "ng/μL", + "$asm.unit-iri": "http://purl.allotrope.org/ontology/qudt-ext/unit#NanogramPerMicroliter" + } + }, + "required": [ + "unit" + ] + }, + "nm": { + "properties": { + "unit": { + "type": "string", + "const": "nm", + "$asm.unit-iri": "http://purl.allotrope.org/ontology/qudt-ext/unit#Nanometer" + } + }, + "required": [ + "unit" + ] + }, + "nmi/hr": { + "properties": { + "unit": { + "type": "string", + "const": "nmi/hr", + "$asm.unit-iri": "http://qudt.org/vocab/unit#NauticalMilePerHour" + } + }, + "required": [ + "unit" + ] + }, + "nmi/min": { + "properties": { + "unit": { + "type": "string", + "const": "nmi/min", + "$asm.unit-iri": "http://qudt.org/vocab/unit#NauticalMilePerMinute" + } + }, + "required": [ + "unit" + ] + }, + "nmol": { + "properties": { + "unit": { + "type": "string", + "const": "nmol", + "$asm.unit-iri": "http://purl.allotrope.org/ontology/qudt-ext/unit#Nanomole" + } + }, + "required": [ + "unit" + ] + }, + "nmol/dm^3": { + "properties": { + "unit": { + "type": "string", + "const": "nmol/dm^3", + "$asm.unit-iri": "http://purl.allotrope.org/ontology/qudt-ext/unit#Nanomolar" + } + }, + "required": [ + "unit" + ] + }, + "osm/L": { + "properties": { + "unit": { + "type": "string", + "const": "osm/L", + "$asm.unit-iri": "http://purl.allotrope.org/ontology/qudt-ext/unit#OsmolesPerLiter" + } + }, + "required": [ + "unit" + ] + }, + "oz": { + "properties": { + "unit": { + "type": "string", + "const": "oz", + "$asm.unit-iri": "http://qudt.org/vocab/unit#OunceImperial" + } + }, + "required": [ + "unit" + ] + }, + "oz (tr)": { + "properties": { + "unit": { + "type": "string", + "const": "oz (tr)", + "$asm.unit-iri": "http://qudt.org/vocab/unit#OunceTroy" + } + }, + "required": [ + "unit" + ] + }, + "oz fl": { + "properties": { + "unit": { + "type": "string", + "const": "oz fl", + "$asm.unit-iri": "http://qudt.org/vocab/unit#LiquidOunceUS" + } + }, + "required": [ + "unit" + ] + }, + "oz/ft^2": { + "properties": { + "unit": { + "type": "string", + "const": "oz/ft^2", + "$asm.unit-iri": "http://qudt.org/vocab/unit#OuncePerSquareFoot" + } + }, + "required": [ + "unit" + ] + }, + "oz/gal": { + "properties": { + "unit": { + "type": "string", + "const": "oz/gal", + "$asm.unit-iri": "http://qudt.org/vocab/unit#OuncePerGallon" + } + }, + "required": [ + "unit" + ] + }, + "oz/in^3": { + "properties": { + "unit": { + "type": "string", + "const": "oz/in^3", + "$asm.unit-iri": "http://qudt.org/vocab/unit#OuncePerCubicInch" + } + }, + "required": [ + "unit" + ] + }, + "oz/yd^2": { + "properties": { + "unit": { + "type": "string", + "const": "oz/yd^2", + "$asm.unit-iri": "http://qudt.org/vocab/unit#OuncePerSquareYard" + } + }, + "required": [ + "unit" + ] + }, + "ozf": { + "properties": { + "unit": { + "type": "string", + "const": "ozf", + "$asm.unit-iri": "http://qudt.org/vocab/unit#OunceForce" + } + }, + "required": [ + "unit" + ] + }, + "ozf in": { + "properties": { + "unit": { + "type": "string", + "const": "ozf in", + "$asm.unit-iri": "http://qudt.org/vocab/unit#OunceForceInch" + } + }, + "required": [ + "unit" + ] + }, + "ozm": { + "properties": { + "unit": { + "type": "string", + "const": "ozm", + "$asm.unit-iri": "http://qudt.org/vocab/unit#OunceMass" + } + }, + "required": [ + "unit" + ] + }, + "pA": { + "properties": { + "unit": { + "type": "string", + "const": "pA", + "$asm.unit-iri": "http://purl.allotrope.org/ontology/qudt-ext/unit#PicoAmpere" + } + }, + "required": [ + "unit" + ] + }, + "pA.L": { + "properties": { + "unit": { + "type": "string", + "const": "pA.L", + "$asm.unit-iri": "http://purl.allotrope.org/ontology/qudt-ext/unit#PicoAmpereTimesLiter" + } + }, + "required": [ + "unit" + ] + }, + "pA.min": { + "properties": { + "unit": { + "type": "string", + "const": "pA.min", + "$asm.unit-iri": "http://purl.allotrope.org/ontology/qudt-ext/unit#PicoAmperesTimesMinute" + } + }, + "required": [ + "unit" + ] + }, + "pA.s": { + "properties": { + "unit": { + "type": "string", + "const": "pA.s", + "$asm.unit-iri": "http://purl.allotrope.org/ontology/qudt-ext/unit#PicoAmpereTimesSecond" + } + }, + "required": [ + "unit" + ] + }, + "pF": { + "properties": { + "unit": { + "type": "string", + "const": "pF", + "$asm.unit-iri": "http://qudt.org/vocab/unit#PicoFarad" + } + }, + "required": [ + "unit" + ] + }, + "pH": { + "properties": { + "unit": { + "type": "string", + "const": "pH", + "$asm.unit-iri": "http://purl.allotrope.org/ontology/qudt-ext/unit#PH" + } + }, + "required": [ + "unit" + ] + }, + "pL": { + "properties": { + "unit": { + "type": "string", + "const": "pL", + "$asm.unit-iri": "http://purl.allotrope.org/ontology/qudt-ext/unit#Picoliter" + } + }, + "required": [ + "unit" + ] + }, + "pc": { + "properties": { + "unit": { + "type": "string", + "const": "pc", + "$asm.unit-iri": "http://qudt.org/vocab/unit#Parsec" + } + }, + "required": [ + "unit" + ] + }, + "pdl": { + "properties": { + "unit": { + "type": "string", + "const": "pdl", + "$asm.unit-iri": "http://qudt.org/vocab/unit#Poundal" + } + }, + "required": [ + "unit" + ] + }, + "pdl/ft^2": { + "properties": { + "unit": { + "type": "string", + "const": "pdl/ft^2", + "$asm.unit-iri": "http://qudt.org/vocab/unit#PoundalPerSquareFoot" + } + }, + "required": [ + "unit" + ] + }, + "person": { + "properties": { + "unit": { + "type": "string", + "const": "person", + "$asm.unit-iri": "http://qudt.org/vocab/unit#Person" + } + }, + "required": [ + "unit" + ] + }, + "pg": { + "properties": { + "unit": { + "type": "string", + "const": "pg", + "$asm.unit-iri": "http://purl.allotrope.org/ontology/qudt-ext/unit#Picogram" + } + }, + "required": [ + "unit" + ] + }, + "pg/L": { + "properties": { + "unit": { + "type": "string", + "const": "pg/L", + "$asm.unit-iri": "http://purl.allotrope.org/ontology/qudt-ext/unit#PicogramPerLiter" + } + }, + "required": [ + "unit" + ] + }, + "pg/cm^2": { + "properties": { + "unit": { + "type": "string", + "const": "pg/cm^2", + "$asm.unit-iri": "http://purl.allotrope.org/ontology/qudt-ext/unit#PicogramPerSquareCentimeter" + } + }, + "required": [ + "unit" + ] + }, + "pg/fL": { + "properties": { + "unit": { + "type": "string", + "const": "pg/fL", + "$asm.unit-iri": "http://purl.allotrope.org/ontology/qudt-ext/unit#PicogramPerFemtoliter" + } + }, + "required": [ + "unit" + ] + }, + "pg/mL": { + "properties": { + "unit": { + "type": "string", + "const": "pg/mL", + "$asm.unit-iri": "http://purl.allotrope.org/ontology/qudt-ext/unit#PicogramPerMilliliter" + } + }, + "required": [ + "unit" + ] + }, + "pg/m^2": { + "properties": { + "unit": { + "type": "string", + "const": "pg/m^2", + "$asm.unit-iri": "http://purl.allotrope.org/ontology/qudt-ext/unit#PicogramPerSquareMeter" + } + }, + "required": [ + "unit" + ] + }, + "pg/nL": { + "properties": { + "unit": { + "type": "string", + "const": "pg/nL", + "$asm.unit-iri": "http://purl.allotrope.org/ontology/qudt-ext/unit#PicogramPerNanoliter" + } + }, + "required": [ + "unit" + ] + }, + "pg/pL": { + "properties": { + "unit": { + "type": "string", + "const": "pg/pL", + "$asm.unit-iri": "http://purl.allotrope.org/ontology/qudt-ext/unit#PicogramPerPicoliter" + } + }, + "required": [ + "unit" + ] + }, + "pg/μL": { + "properties": { + "unit": { + "type": "string", + "const": "pg/μL", + "$asm.unit-iri": "http://purl.allotrope.org/ontology/qudt-ext/unit#PicogramPerMicroliter" + } + }, + "required": [ + "unit" + ] + }, + "ph": { + "properties": { + "unit": { + "type": "string", + "const": "ph", + "$asm.unit-iri": "http://qudt.org/vocab/unit#Phot" + } + }, + "required": [ + "unit" + ] + }, + "pi": { + "properties": { + "unit": { + "type": "string", + "const": "pi", + "$asm.unit-iri": "http://qudt.org/vocab/unit#PintImperial" + } + }, + "required": [ + "unit" + ] + }, + "pixel": { + "properties": { + "unit": { + "type": "string", + "const": "pixel", + "$asm.unit-iri": "http://purl.allotrope.org/ontology/qudt-ext/unit#Pixel" + } + }, + "required": [ + "unit" + ] + }, + "pixel/mm": { + "properties": { + "unit": { + "type": "string", + "const": "pixel/mm", + "$asm.unit-iri": "http://purl.allotrope.org/ontology/qudt-ext/unit#PixelPerMillimeter" + } + }, + "required": [ + "unit" + ] + }, + "pk": { + "properties": { + "unit": { + "type": "string", + "const": "pk", + "$asm.unit-iri": "http://qudt.org/vocab/unit#Peck" + } + }, + "required": [ + "unit" + ] + }, + "plates/m": { + "properties": { + "unit": { + "type": "string", + "const": "plates/m", + "$asm.unit-iri": "http://purl.allotrope.org/ontology/qudt-ext/unit#PlatesPerMeter" + } + }, + "required": [ + "unit" + ] + }, + "pm": { + "properties": { + "unit": { + "type": "string", + "const": "pm", + "$asm.unit-iri": "http://purl.allotrope.org/ontology/qudt-ext/unit#Picometer" + } + }, + "required": [ + "unit" + ] + }, + "pmol": { + "properties": { + "unit": { + "type": "string", + "const": "pmol", + "$asm.unit-iri": "http://purl.allotrope.org/ontology/qudt-ext/unit#Picomole" + } + }, + "required": [ + "unit" + ] + }, + "pmol/dm^3": { + "properties": { + "unit": { + "type": "string", + "const": "pmol/dm^3", + "$asm.unit-iri": "http://purl.allotrope.org/ontology/qudt-ext/unit#Picomolar" + } + }, + "required": [ + "unit" + ] + }, + "pnt": { + "properties": { + "unit": { + "type": "string", + "const": "pnt", + "$asm.unit-iri": "http://qudt.org/vocab/unit#Point" + } + }, + "required": [ + "unit" + ] + }, + "ppb": { + "properties": { + "unit": { + "type": "string", + "const": "ppb", + "$asm.unit-iri": "http://purl.allotrope.org/ontology/qudt-ext/unit#PartsPerBillion" + } + }, + "required": [ + "unit" + ] + }, + "ppm": { + "properties": { + "unit": { + "type": "string", + "const": "ppm", + "$asm.unit-iri": "http://purl.allotrope.org/ontology/qudt-ext/unit#PartsPerMillion" + } + }, + "required": [ + "unit" + ] + }, + "ppm.arb'U": { + "properties": { + "unit": { + "type": "string", + "const": "ppm.arb'U", + "$asm.unit-iri": "http://purl.allotrope.org/ontology/qudt-ext/unit#PartsPerMillionTimesArbitraryUnit" + } + }, + "required": [ + "unit" + ] + }, + "psi": { + "properties": { + "unit": { + "type": "string", + "const": "psi", + "$asm.unit-iri": "http://qudt.org/vocab/unit#PoundForcePerSquareInch" + } + }, + "required": [ + "unit" + ] + }, + "pt": { + "properties": { + "unit": { + "type": "string", + "const": "pt", + "$asm.unit-iri": "http://qudt.org/vocab/unit#LiquidPintUS" + } + }, + "required": [ + "unit" + ] + }, + "qt": { + "properties": { + "unit": { + "type": "string", + "const": "qt", + "$asm.unit-iri": "http://qudt.org/vocab/unit#LiquidQuartUS" + } + }, + "required": [ + "unit" + ] + }, + "quad": { + "properties": { + "unit": { + "type": "string", + "const": "quad", + "$asm.unit-iri": "http://qudt.org/vocab/unit#Quad" + } + }, + "required": [ + "unit" + ] + }, + "r": { + "properties": { + "unit": { + "type": "string", + "const": "r", + "$asm.unit-iri": "http://qudt.org/vocab/unit#Radian" + } + }, + "required": [ + "unit" + ] + }, + "rad": { + "properties": { + "unit": { + "type": "string", + "const": "rad", + "$asm.unit-iri": "http://qudt.org/vocab/unit#Rad" + } + }, + "required": [ + "unit" + ] + }, + "rad/h": { + "properties": { + "unit": { + "type": "string", + "const": "rad/h", + "$asm.unit-iri": "http://qudt.org/vocab/unit#RadianPerHour" + } + }, + "required": [ + "unit" + ] + }, + "rad/m": { + "properties": { + "unit": { + "type": "string", + "const": "rad/m", + "$asm.unit-iri": "http://qudt.org/vocab/unit#RadianPerMinute" + } + }, + "required": [ + "unit" + ] + }, + "rad/s": { + "properties": { + "unit": { + "type": "string", + "const": "rad/s", + "$asm.unit-iri": "http://qudt.org/vocab/unit#RadianPerSecond" + } + }, + "required": [ + "unit" + ] + }, + "rad/s^2": { + "properties": { + "unit": { + "type": "string", + "const": "rad/s^2", + "$asm.unit-iri": "http://qudt.org/vocab/unit#RadianPerSecondSquared" + } + }, + "required": [ + "unit" + ] + }, + "rd": { + "properties": { + "unit": { + "type": "string", + "const": "rd", + "$asm.unit-iri": "http://qudt.org/vocab/unit#Rod" + } + }, + "required": [ + "unit" + ] + }, + "rem": { + "properties": { + "unit": { + "type": "string", + "const": "rem", + "$asm.unit-iri": "http://qudt.org/vocab/unit#Rem" + } + }, + "required": [ + "unit" + ] + }, + "rev": { + "properties": { + "unit": { + "type": "string", + "const": "rev", + "$asm.unit-iri": "http://qudt.org/vocab/unit#Revolution" + } + }, + "required": [ + "unit" + ] + }, + "rev/h": { + "properties": { + "unit": { + "type": "string", + "const": "rev/h", + "$asm.unit-iri": "http://qudt.org/vocab/unit#RevolutionPerHour" + } + }, + "required": [ + "unit" + ] + }, + "rev/min": { + "properties": { + "unit": { + "type": "string", + "const": "rev/min", + "$asm.unit-iri": "http://qudt.org/vocab/unit#RevolutionPerMinute" + } + }, + "required": [ + "unit" + ] + }, + "rev/s": { + "properties": { + "unit": { + "type": "string", + "const": "rev/s", + "$asm.unit-iri": "http://qudt.org/vocab/unit#RevolutionPerSecond" + } + }, + "required": [ + "unit" + ] + }, + "s": { + "properties": { + "unit": { + "type": "string", + "const": "s", + "$asm.unit-iri": "http://qudt.org/vocab/unit#SecondTime" + } + }, + "required": [ + "unit" + ] + }, + "s T": { + "properties": { + "unit": { + "type": "string", + "const": "s T", + "$asm.unit-iri": "http://qudt.org/vocab/unit#TeslaSecond" + } + }, + "required": [ + "unit" + ] + }, + "s ft^2": { + "properties": { + "unit": { + "type": "string", + "const": "s ft^2", + "$asm.unit-iri": "http://qudt.org/vocab/unit#SecondSquareFoot" + } + }, + "required": [ + "unit" + ] + }, + "s^-1": { + "properties": { + "unit": { + "type": "string", + "const": "s^-1", + "$asm.unit-iri": "http://qudt.org/vocab/unit#PerSecond" + } + }, + "required": [ + "unit" + ] + }, + "s^-1 T^-1": { + "properties": { + "unit": { + "type": "string", + "const": "s^-1 T^-1", + "$asm.unit-iri": "http://qudt.org/vocab/unit#PerTeslaSecond" + } + }, + "required": [ + "unit" + ] + }, + "s^2": { + "properties": { + "unit": { + "type": "string", + "const": "s^2", + "$asm.unit-iri": "http://qudt.org/vocab/unit#SecondTimeSquared" + } + }, + "required": [ + "unit" + ] + }, + "sb": { + "properties": { + "unit": { + "type": "string", + "const": "sb", + "$asm.unit-iri": "http://qudt.org/vocab/unit#Stilb" + } + }, + "required": [ + "unit" + ] + }, + "scwt": { + "properties": { + "unit": { + "type": "string", + "const": "scwt", + "$asm.unit-iri": "http://qudt.org/vocab/unit#HundredWeightShort" + } + }, + "required": [ + "unit" + ] + }, + "slug": { + "properties": { + "unit": { + "type": "string", + "const": "slug", + "$asm.unit-iri": "http://qudt.org/vocab/unit#Slug" + } + }, + "required": [ + "unit" + ] + }, + "slug/(ft s)": { + "properties": { + "unit": { + "type": "string", + "const": "slug/(ft s)", + "$asm.unit-iri": "http://qudt.org/vocab/unit#SlugPerFootSecond" + } + }, + "required": [ + "unit" + ] + }, + "slug/ft": { + "properties": { + "unit": { + "type": "string", + "const": "slug/ft", + "$asm.unit-iri": "http://qudt.org/vocab/unit#SlugPerFoot" + } + }, + "required": [ + "unit" + ] + }, + "slug/ft^2": { + "properties": { + "unit": { + "type": "string", + "const": "slug/ft^2", + "$asm.unit-iri": "http://qudt.org/vocab/unit#SlugPerSquareFoot" + } + }, + "required": [ + "unit" + ] + }, + "slug/ft^3": { + "properties": { + "unit": { + "type": "string", + "const": "slug/ft^3", + "$asm.unit-iri": "http://qudt.org/vocab/unit#SlugPerCubicFoot" + } + }, + "required": [ + "unit" + ] + }, + "slug/s": { + "properties": { + "unit": { + "type": "string", + "const": "slug/s", + "$asm.unit-iri": "http://qudt.org/vocab/unit#SlugPerSecond" + } + }, + "required": [ + "unit" + ] + }, + "sr": { + "properties": { + "unit": { + "type": "string", + "const": "sr", + "$asm.unit-iri": "http://qudt.org/vocab/unit#Steradian" + } + }, + "required": [ + "unit" + ] + }, + "st": { + "properties": { + "unit": { + "type": "string", + "const": "st", + "$asm.unit-iri": "http://qudt.org/vocab/unit#Stere" + } + }, + "required": [ + "unit" + ] + }, + "statA": { + "properties": { + "unit": { + "type": "string", + "const": "statA", + "$asm.unit-iri": "http://qudt.org/vocab/unit#Statampere" + } + }, + "required": [ + "unit" + ] + }, + "statC": { + "properties": { + "unit": { + "type": "string", + "const": "statC", + "$asm.unit-iri": "http://qudt.org/vocab/unit#Statcoulomb" + } + }, + "required": [ + "unit" + ] + }, + "statC/cm^2": { + "properties": { + "unit": { + "type": "string", + "const": "statC/cm^2", + "$asm.unit-iri": "http://qudt.org/vocab/unit#StatcoulombPerSquareCentimeter" + } + }, + "required": [ + "unit" + ] + }, + "statC/mol": { + "properties": { + "unit": { + "type": "string", + "const": "statC/mol", + "$asm.unit-iri": "http://qudt.org/vocab/unit#StatcoulombPerMole" + } + }, + "required": [ + "unit" + ] + }, + "statF": { + "properties": { + "unit": { + "type": "string", + "const": "statF", + "$asm.unit-iri": "http://qudt.org/vocab/unit#Statfarad" + } + }, + "required": [ + "unit" + ] + }, + "statH": { + "properties": { + "unit": { + "type": "string", + "const": "statH", + "$asm.unit-iri": "http://qudt.org/vocab/unit#Stathenry" + } + }, + "required": [ + "unit" + ] + }, + "statH/cm": { + "properties": { + "unit": { + "type": "string", + "const": "statH/cm", + "$asm.unit-iri": "http://qudt.org/vocab/unit#StathenryPerCentimeter" + } + }, + "required": [ + "unit" + ] + }, + "statS": { + "properties": { + "unit": { + "type": "string", + "const": "statS", + "$asm.unit-iri": "http://qudt.org/vocab/unit#Statmho" + } + }, + "required": [ + "unit" + ] + }, + "statV": { + "properties": { + "unit": { + "type": "string", + "const": "statV", + "$asm.unit-iri": "http://qudt.org/vocab/unit#Statvolt" + } + }, + "required": [ + "unit" + ] + }, + "statV cm": { + "properties": { + "unit": { + "type": "string", + "const": "statV cm", + "$asm.unit-iri": "http://qudt.org/vocab/unit#StatvoltCentimeter" + } + }, + "required": [ + "unit" + ] + }, + "statV/cm": { + "properties": { + "unit": { + "type": "string", + "const": "statV/cm", + "$asm.unit-iri": "http://qudt.org/vocab/unit#StatvoltPerCentimeter" + } + }, + "required": [ + "unit" + ] + }, + "statΩ": { + "properties": { + "unit": { + "type": "string", + "const": "statΩ", + "$asm.unit-iri": "http://qudt.org/vocab/unit#Statohm" + } + }, + "required": [ + "unit" + ] + }, + "t/fg": { + "properties": { + "unit": { + "type": "string", + "const": "t/fg", + "$asm.unit-iri": "http://qudt.org/vocab/unit#TonOfRefrigeration" + } + }, + "required": [ + "unit" + ] + }, + "t/lbf": { + "properties": { + "unit": { + "type": "string", + "const": "t/lbf", + "$asm.unit-iri": "http://qudt.org/vocab/unit#TonEnergy" + } + }, + "required": [ + "unit" + ] + }, + "t_P": { + "properties": { + "unit": { + "type": "string", + "const": "t_P", + "$asm.unit-iri": "http://qudt.org/vocab/unit#PlanckTime" + } + }, + "required": [ + "unit" + ] + }, + "tbsp": { + "properties": { + "unit": { + "type": "string", + "const": "tbsp", + "$asm.unit-iri": "http://qudt.org/vocab/unit#Tablespoon" + } + }, + "required": [ + "unit" + ] + }, + "tex": { + "properties": { + "unit": { + "type": "string", + "const": "tex", + "$asm.unit-iri": "http://qudt.org/vocab/unit#Tex" + } + }, + "required": [ + "unit" + ] + }, + "therm (EC)": { + "properties": { + "unit": { + "type": "string", + "const": "therm (EC)", + "$asm.unit-iri": "http://qudt.org/vocab/unit#ThermEEC" + } + }, + "required": [ + "unit" + ] + }, + "therm (US)": { + "properties": { + "unit": { + "type": "string", + "const": "therm (US)", + "$asm.unit-iri": "http://qudt.org/vocab/unit#ThermUS" + } + }, + "required": [ + "unit" + ] + }, + "toe": { + "properties": { + "unit": { + "type": "string", + "const": "toe", + "$asm.unit-iri": "http://qudt.org/vocab/unit#TonOfOilEquivalent" + } + }, + "required": [ + "unit" + ] + }, + "ton (l)": { + "properties": { + "unit": { + "type": "string", + "const": "ton (l)", + "$asm.unit-iri": "http://qudt.org/vocab/unit#TonLong" + } + }, + "required": [ + "unit" + ] + }, + "ton (s)": { + "properties": { + "unit": { + "type": "string", + "const": "ton (s)", + "$asm.unit-iri": "http://qudt.org/vocab/unit#TonShort" + } + }, + "required": [ + "unit" + ] + }, + "ton/h": { + "properties": { + "unit": { + "type": "string", + "const": "ton/h", + "$asm.unit-iri": "http://qudt.org/vocab/unit#TonShortPerHour" + } + }, + "required": [ + "unit" + ] + }, + "ton/yd": { + "properties": { + "unit": { + "type": "string", + "const": "ton/yd", + "$asm.unit-iri": "http://qudt.org/vocab/unit#TonShortPerCubicYard" + } + }, + "required": [ + "unit" + ] + }, + "ton/yd^3": { + "properties": { + "unit": { + "type": "string", + "const": "ton/yd^3", + "$asm.unit-iri": "http://qudt.org/vocab/unit#TonLongPerCubicYard" + } + }, + "required": [ + "unit" + ] + }, + "torr": { + "properties": { + "unit": { + "type": "string", + "const": "torr", + "$asm.unit-iri": "http://qudt.org/vocab/unit#Torr" + } + }, + "required": [ + "unit" + ] + }, + "tsp": { + "properties": { + "unit": { + "type": "string", + "const": "tsp", + "$asm.unit-iri": "http://qudt.org/vocab/unit#Teaspoon" + } + }, + "required": [ + "unit" + ] + }, + "u": { + "properties": { + "unit": { + "type": "string", + "const": "u", + "$asm.unit-iri": "http://qudt.org/vocab/unit#Dalton2" + } + }, + "required": [ + "unit" + ] + }, + "unitless": { + "properties": { + "unit": { + "type": "string", + "const": "unitless", + "$asm.unit-iri": "http://qudt.org/vocab/unit#Unitless" + } + }, + "required": [ + "unit" + ] + }, + "yd": { + "properties": { + "unit": { + "type": "string", + "const": "yd", + "$asm.unit-iri": "http://qudt.org/vocab/unit#Yard" + } + }, + "required": [ + "unit" + ] + }, + "yd^2": { + "properties": { + "unit": { + "type": "string", + "const": "yd^2", + "$asm.unit-iri": "http://qudt.org/vocab/unit#SquareYard" + } + }, + "required": [ + "unit" + ] + }, + "yd^3": { + "properties": { + "unit": { + "type": "string", + "const": "yd^3", + "$asm.unit-iri": "http://qudt.org/vocab/unit#CubicYard" + } + }, + "required": [ + "unit" + ] + }, + "yd^3/min": { + "properties": { + "unit": { + "type": "string", + "const": "yd^3/min", + "$asm.unit-iri": "http://qudt.org/vocab/unit#CubicYardPerMinute" + } + }, + "required": [ + "unit" + ] + }, + "yr": { + "properties": { + "unit": { + "type": "string", + "const": "yr", + "$asm.unit-iri": "http://qudt.org/vocab/unit#Year365Day" + } + }, + "required": [ + "unit" + ] + }, + "yr (s)": { + "properties": { + "unit": { + "type": "string", + "const": "yr (s)", + "$asm.unit-iri": "http://qudt.org/vocab/unit#YearSidereal" + } + }, + "required": [ + "unit" + ] + }, + "yr (t)": { + "properties": { + "unit": { + "type": "string", + "const": "yr (t)", + "$asm.unit-iri": "http://qudt.org/vocab/unit#YearTropical" + } + }, + "required": [ + "unit" + ] + }, + "°": { + "properties": { + "unit": { + "type": "string", + "const": "°", + "$asm.unit-iri": "http://qudt.org/vocab/unit#DegreeAngle" + } + }, + "required": [ + "unit" + ] + }, + "° s^-2": { + "properties": { + "unit": { + "type": "string", + "const": "° s^-2", + "$asm.unit-iri": "http://qudt.org/vocab/unit#DegreePerSecondSquared" + } + }, + "required": [ + "unit" + ] + }, + "°/h": { + "properties": { + "unit": { + "type": "string", + "const": "°/h", + "$asm.unit-iri": "http://qudt.org/vocab/unit#DegreePerHour" + } + }, + "required": [ + "unit" + ] + }, + "°/min": { + "properties": { + "unit": { + "type": "string", + "const": "°/min", + "$asm.unit-iri": "http://qudt.org/vocab/unit#DegreePerMinute" + } + }, + "required": [ + "unit" + ] + }, + "°/s": { + "properties": { + "unit": { + "type": "string", + "const": "°/s", + "$asm.unit-iri": "http://qudt.org/vocab/unit#DegreePerSecond" + } + }, + "required": [ + "unit" + ] + }, + "°C": { + "properties": { + "unit": { + "type": "string", + "const": "°C", + "$asm.unit-iri": "http://qudt.org/vocab/unit#DegreeCentigrade" + } + }, + "required": [ + "unit" + ] + }, + "°C/h": { + "properties": { + "unit": { + "type": "string", + "const": "°C/h", + "$asm.unit-iri": "http://qudt.org/vocab/unit#DegreeCelsiusPerHour" + } + }, + "required": [ + "unit" + ] + }, + "°C/min": { + "properties": { + "unit": { + "type": "string", + "const": "°C/min", + "$asm.unit-iri": "http://qudt.org/vocab/unit#DegreeCelsiusPerMinute" + } + }, + "required": [ + "unit" + ] + }, + "°C/s": { + "properties": { + "unit": { + "type": "string", + "const": "°C/s", + "$asm.unit-iri": "http://qudt.org/vocab/unit#DegreeCelsiusPerSecond" + } + }, + "required": [ + "unit" + ] + }, + "°F": { + "properties": { + "unit": { + "type": "string", + "const": "°F", + "$asm.unit-iri": "http://qudt.org/vocab/unit#DegreeFahrenheit" + } + }, + "required": [ + "unit" + ] + }, + "°F h": { + "properties": { + "unit": { + "type": "string", + "const": "°F h", + "$asm.unit-iri": "http://qudt.org/vocab/unit#DegreeFahrenheitHour" + } + }, + "required": [ + "unit" + ] + }, + "°F h/Btu": { + "properties": { + "unit": { + "type": "string", + "const": "°F h/Btu", + "$asm.unit-iri": "http://qudt.org/vocab/unit#DegreeFahrenheitHourPerBtu" + } + }, + "required": [ + "unit" + ] + }, + "°F/h": { + "properties": { + "unit": { + "type": "string", + "const": "°F/h", + "$asm.unit-iri": "http://qudt.org/vocab/unit#DegreeFahrenheitPerHour" + } + }, + "required": [ + "unit" + ] + }, + "°F/m": { + "properties": { + "unit": { + "type": "string", + "const": "°F/m", + "$asm.unit-iri": "http://qudt.org/vocab/unit#DegreeFahrenheitPerMinute" + } + }, + "required": [ + "unit" + ] + }, + "°F/s": { + "properties": { + "unit": { + "type": "string", + "const": "°F/s", + "$asm.unit-iri": "http://qudt.org/vocab/unit#DegreeFahrenheitPerSecond" + } + }, + "required": [ + "unit" + ] + }, + "°R": { + "properties": { + "unit": { + "type": "string", + "const": "°R", + "$asm.unit-iri": "http://qudt.org/vocab/unit#DegreeRankine" + } + }, + "required": [ + "unit" + ] + }, + "°R/h": { + "properties": { + "unit": { + "type": "string", + "const": "°R/h", + "$asm.unit-iri": "http://qudt.org/vocab/unit#DegreeRankinePerHour" + } + }, + "required": [ + "unit" + ] + }, + "°R/m": { + "properties": { + "unit": { + "type": "string", + "const": "°R/m", + "$asm.unit-iri": "http://qudt.org/vocab/unit#DegreeRankinePerMinute" + } + }, + "required": [ + "unit" + ] + }, + "°R/s": { + "properties": { + "unit": { + "type": "string", + "const": "°R/s", + "$asm.unit-iri": "http://qudt.org/vocab/unit#DegreeRankinePerSecond" + } + }, + "required": [ + "unit" + ] + }, + "µG": { + "properties": { + "unit": { + "type": "string", + "const": "µG", + "$asm.unit-iri": "http://qudt.org/vocab/unit#Microgravity" + } + }, + "required": [ + "unit" + ] + }, + "µH": { + "properties": { + "unit": { + "type": "string", + "const": "µH", + "$asm.unit-iri": "http://qudt.org/vocab/unit#MicroHenry" + } + }, + "required": [ + "unit" + ] + }, + "µL/min": { + "properties": { + "unit": { + "type": "string", + "const": "µL/min", + "$asm.unit-iri": "http://purl.allotrope.org/ontology/qudt-ext/unit#MicroliterPerMinute" + } + }, + "required": [ + "unit" + ] + }, + "µL/s": { + "properties": { + "unit": { + "type": "string", + "const": "µL/s", + "$asm.unit-iri": "http://purl.allotrope.org/ontology/qudt-ext/unit#MicroliterPerSecond" + } + }, + "required": [ + "unit" + ] + }, + "µV": { + "properties": { + "unit": { + "type": "string", + "const": "µV", + "$asm.unit-iri": "http://purl.allotrope.org/ontology/qudt-ext/unit#Microvolt" + } + }, + "required": [ + "unit" + ] + }, + "µW": { + "properties": { + "unit": { + "type": "string", + "const": "µW", + "$asm.unit-iri": "http://purl.allotrope.org/ontology/qudt-ext/unit#MicroWatt" + } + }, + "required": [ + "unit" + ] + }, + "µW/g": { + "properties": { + "unit": { + "type": "string", + "const": "µW/g", + "$asm.unit-iri": "http://purl.allotrope.org/ontology/qudt-ext/unit#MicroWattPerGram" + } + }, + "required": [ + "unit" + ] + }, + "µcal/°C": { + "properties": { + "unit": { + "type": "string", + "const": "µcal/°C", + "$asm.unit-iri": "http://purl.allotrope.org/ontology/qudt-ext/unit#MicroCaloriePerDegreeCelsius" + } + }, + "required": [ + "unit" + ] + }, + "µin": { + "properties": { + "unit": { + "type": "string", + "const": "µin", + "$asm.unit-iri": "http://qudt.org/vocab/unit#MicroInch" + } + }, + "required": [ + "unit" + ] + }, + "µm": { + "properties": { + "unit": { + "type": "string", + "const": "µm", + "$asm.unit-iri": "http://qudt.org/vocab/unit#Micrometer" + } + }, + "required": [ + "unit" + ] + }, + "µs": { + "properties": { + "unit": { + "type": "string", + "const": "µs", + "$asm.unit-iri": "http://qudt.org/vocab/unit#MicroSecond" + } + }, + "required": [ + "unit" + ] + }, + "µtorr": { + "properties": { + "unit": { + "type": "string", + "const": "µtorr", + "$asm.unit-iri": "http://qudt.org/vocab/unit#MicroTorr" + } + }, + "required": [ + "unit" + ] + }, + "Å": { + "properties": { + "unit": { + "type": "string", + "const": "Å", + "$asm.unit-iri": "http://qudt.org/vocab/unit#Angstrom" + } + }, + "required": [ + "unit" + ] + }, + "Å^2": { + "properties": { + "unit": { + "type": "string", + "const": "Å^2", + "$asm.unit-iri": "http://purl.allotrope.org/ontology/qudt-ext/unit#SquareAngstrom" + } + }, + "required": [ + "unit" + ] + }, + "Θ_P": { + "properties": { + "unit": { + "type": "string", + "const": "Θ_P", + "$asm.unit-iri": "http://qudt.org/vocab/unit#PlanckTemperature" + } + }, + "required": [ + "unit" + ] + }, + "Ω": { + "properties": { + "unit": { + "type": "string", + "const": "Ω", + "$asm.unit-iri": "http://qudt.org/vocab/unit#Ohm" + } + }, + "required": [ + "unit" + ] + }, + "Ω m": { + "properties": { + "unit": { + "type": "string", + "const": "Ω m", + "$asm.unit-iri": "http://purl.allotrope.org/ontology/qudt-ext/unit#OhmMeter" + } + }, + "required": [ + "unit" + ] + }, + "εr": { + "properties": { + "unit": { + "type": "string", + "const": "εr", + "$asm.unit-iri": "http://qudt.org/vocab/unit#RelativePermittivity" + } + }, + "required": [ + "unit" + ] + }, + "μL": { + "properties": { + "unit": { + "type": "string", + "const": "μL", + "$asm.unit-iri": "http://purl.allotrope.org/ontology/qudt-ext/unit#Microliter" + } + }, + "required": [ + "unit" + ] + }, + "μM": { + "properties": { + "unit": { + "type": "string", + "const": "μM", + "$asm.unit-iri": "http://purl.allotrope.org/ontology/qudt-ext/unit#Micromolar" + } + }, + "required": [ + "unit" + ] + }, + "μS/cm": { + "properties": { + "unit": { + "type": "string", + "const": "μS/cm", + "$asm.unit-iri": "http://purl.allotrope.org/ontology/qudt-ext/unit#MicroSiemensPerCentimeter" + } + }, + "required": [ + "unit" + ] + }, + "μV.s": { + "properties": { + "unit": { + "type": "string", + "const": "μV.s", + "$asm.unit-iri": "http://purl.allotrope.org/ontology/qudt-ext/unit#MicroVoltTimesSecond" + } + }, + "required": [ + "unit" + ] + }, + "μg": { + "properties": { + "unit": { + "type": "string", + "const": "μg", + "$asm.unit-iri": "http://purl.allotrope.org/ontology/qudt-ext/unit#Microgram" + } + }, + "required": [ + "unit" + ] + }, + "μg/L": { + "properties": { + "unit": { + "type": "string", + "const": "μg/L", + "$asm.unit-iri": "http://purl.allotrope.org/ontology/qudt-ext/unit#MicrogramPerLiter" + } + }, + "required": [ + "unit" + ] + }, + "μg/cm^2": { + "properties": { + "unit": { + "type": "string", + "const": "μg/cm^2", + "$asm.unit-iri": "http://purl.allotrope.org/ontology/qudt-ext/unit#MicrogramPerSquareCentimeter" + } + }, + "required": [ + "unit" + ] + }, + "μg/fL": { + "properties": { + "unit": { + "type": "string", + "const": "μg/fL", + "$asm.unit-iri": "http://purl.allotrope.org/ontology/qudt-ext/unit#MicrogramPerFemtoliter" + } + }, + "required": [ + "unit" + ] + }, + "μg/mL": { + "properties": { + "unit": { + "type": "string", + "const": "μg/mL", + "$asm.unit-iri": "http://purl.allotrope.org/ontology/qudt-ext/unit#MicrogramPerMilliliter" + } + }, + "required": [ + "unit" + ] + }, + "μg/m^2": { + "properties": { + "unit": { + "type": "string", + "const": "μg/m^2", + "$asm.unit-iri": "http://purl.allotrope.org/ontology/qudt-ext/unit#MicrogramPerSquareMeter" + } + }, + "required": [ + "unit" + ] + }, + "μg/min": { + "properties": { + "unit": { + "type": "string", + "const": "μg/min", + "$asm.unit-iri": "http://purl.allotrope.org/ontology/qudt-ext/unit#MicrogramPerMinute" + } + }, + "required": [ + "unit" + ] + }, + "μg/nL": { + "properties": { + "unit": { + "type": "string", + "const": "μg/nL", + "$asm.unit-iri": "http://purl.allotrope.org/ontology/qudt-ext/unit#MicrogramPerNanoliter" + } + }, + "required": [ + "unit" + ] + }, + "μg/pL": { + "properties": { + "unit": { + "type": "string", + "const": "μg/pL", + "$asm.unit-iri": "http://purl.allotrope.org/ontology/qudt-ext/unit#MicrogramPerPicoliter" + } + }, + "required": [ + "unit" + ] + }, + "μg/μL": { + "properties": { + "unit": { + "type": "string", + "const": "μg/μL", + "$asm.unit-iri": "http://purl.allotrope.org/ontology/qudt-ext/unit#MicrogramPerMicroliter" + } + }, + "required": [ + "unit" + ] + }, + "μmol": { + "properties": { + "unit": { + "type": "string", + "const": "μmol", + "$asm.unit-iri": "http://purl.allotrope.org/ontology/qudt-ext/unit#Micromole" + } + }, + "required": [ + "unit" + ] + }, + "μr": { + "properties": { + "unit": { + "type": "string", + "const": "μr", + "$asm.unit-iri": "http://qudt.org/vocab/unit#RelativePermeability" + } + }, + "required": [ + "unit" + ] + }, + "€": { + "properties": { + "unit": { + "type": "string", + "const": "€", + "$asm.unit-iri": "http://qudt.org/vocab/unit#Euro" + } + }, + "required": [ + "unit" + ] + } + } + }, + "http://purl.allotrope.org/json-schemas/adm/absorbance/REC/2024/09/absorbance-cube-detector.schema": { + "$id": "http://purl.allotrope.org/json-schemas/adm/absorbance/REC/2024/09/absorbance-cube-detector.schema", + "$defs": { + "measurementDocumentItems": { + "properties": { + "device control aggregate document": { + "properties": { + "device control document": { + "items": { + "allOf": [ + { + "properties": { + "detector wavelength setting": { + "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0002456", + "$asm.pattern": "quantity datum", + "allOf": [ + { + "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/core.schema#/$defs/tQuantityValue" + }, + { + "$ref": "http://purl.allotrope.org/json-schemas/qudt/REC/2024/09/units.schema#/$defs/nm" + } + ] + }, + "detector bandwidth setting": { + "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0002477", + "$asm.pattern": "quantity datum", + "allOf": [ + { + "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/core.schema#/$defs/tQuantityValue" + }, + { + "$ref": "http://purl.allotrope.org/json-schemas/qudt/REC/2024/09/units.schema#/$defs/nm" + } + ] + }, + "electronic absorbance wavelength setting": { + "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0001254", + "$asm.pattern": "quantity datum", + "allOf": [ + { + "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/core.schema#/$defs/tQuantityValue" + }, + { + "$ref": "http://purl.allotrope.org/json-schemas/qudt/REC/2024/09/units.schema#/$defs/nm" + } + ] + }, + "electronic absorbance bandwidth setting": { + "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0001253", + "$asm.pattern": "quantity datum", + "allOf": [ + { + "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/core.schema#/$defs/tQuantityValue" + }, + { + "$ref": "http://purl.allotrope.org/json-schemas/qudt/REC/2024/09/units.schema#/$defs/nm" + } + ] + }, + "electronic absorbance reference bandwidth setting": { + "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0001251", + "$asm.pattern": "quantity datum", + "allOf": [ + { + "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/core.schema#/$defs/tQuantityValue" + }, + { + "$ref": "http://purl.allotrope.org/json-schemas/qudt/REC/2024/09/units.schema#/$defs/nm" + } + ] + }, + "total measurement time setting": { + "$asm.property-class": "http://purl.allotrope.org/ontologies/result#0002455", + "$asm.pattern": "quantity datum", + "allOf": [ + { + "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/core.schema#/$defs/tQuantityValue" + }, + { + "$ref": "http://purl.allotrope.org/json-schemas/qudt/REC/2024/09/units.schema#/$defs/s" + } + ] + }, + "read interval setting": { + "$asm.property-class": "http://purl.allotrope.org/ontologies/result#0002454", + "$asm.pattern": "quantity datum", + "allOf": [ + { + "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/core.schema#/$defs/tQuantityValue" + }, + { + "$ref": "http://purl.allotrope.org/json-schemas/qudt/REC/2024/09/units.schema#/$defs/s" + } + ] + }, + "number of scans setting": { + "$asm.property-class": "http://purl.allotrope.org/ontologies/result#0003051", + "$asm.pattern": "quantity datum", + "allOf": [ + { + "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/core.schema#/$defs/tQuantityValue" + }, + { + "$ref": "http://purl.allotrope.org/json-schemas/qudt/REC/2024/09/units.schema#/$defs/%23" + } + ] + } + } + } + ] + } + } + } + }, + "processed data aggregate document": { + "properties": { + "processed data document": { + "items": { + "allOf": [ + { + "properties": { + "peak list": { + "$asm.pattern": "aggregate datum", + "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0000432", + "type": "object", + "properties": { + "peak": { + "$asm.array-ordered": true, + "$asm.array-mixed": false, + "$asm.pattern": "indexed datum", + "type": "array", + "items": { + "allOf": [ + { + "$asm.pattern": "aggregate datum", + "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0000413", + "type": "object", + "properties": { + "peak height": { + "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0000948", + "$asm.pattern": "quantity datum", + "allOf": [ + { + "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/core.schema#/$defs/tQuantityValue" + }, + { + "$ref": "http://purl.allotrope.org/json-schemas/qudt/REC/2024/09/units.schema#/$defs/mAU" + } + ] + }, + "peak area": { + "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0001073", + "$asm.pattern": "quantity datum", + "allOf": [ + { + "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/core.schema#/$defs/tQuantityValue" + }, + { + "oneOf": [ + { + "$ref": "http://purl.allotrope.org/json-schemas/qudt/REC/2024/09/units.schema#/$defs/mAU.s" + }, + { + "$ref": "http://purl.allotrope.org/json-schemas/qudt/REC/2024/09/units.schema#/$defs/mAU.mL" + } + ] + } + ] + } + } + }, + { + "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/core.schema#/$defs/orderedItem" + } + ] + } + } + } + } + } + } + ] + } + } + } + } + }, + "oneOf": [ + { + "properties": { + "electropherogram data cube": { + "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0003018", + "$asm.pattern": "datacube", + "type": "object", + "allOf": [ + { + "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/cube.schema#/$defs/tDatacube" + }, + { + "properties": { + "cube-structure": { + "properties": { + "dimensions": { + "minItems": 1, + "maxItems": 1, + "prefixItems": [ + { + "oneOf": [ + { + "properties": { + "concept": { + "const": "elapsed time" + }, + "unit": { + "const": "s" + }, + "@componentDatatype": { + "const": "double" + } + } + } + ] + } + ] + }, + "measures": { + "minItems": 1, + "maxItems": 1, + "contains": { + "oneOf": [ + { + "properties": { + "concept": { + "const": "absorbance" + }, + "unit": { + "const": "mAU" + }, + "@componentDatatype": { + "const": "double" + } + } + } + ] + } + } + } + } + } + } + ] + } + }, + "required": [ + "electropherogram data cube" + ] + }, + { + "properties": { + "absorption profile data cube": { + "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0002963", + "$asm.pattern": "datacube", + "type": "object", + "allOf": [ + { + "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/cube.schema#/$defs/tDatacube" + }, + { + "properties": { + "cube-structure": { + "properties": { + "dimensions": { + "minItems": 1, + "maxItems": 1, + "prefixItems": [ + { + "oneOf": [ + { + "properties": { + "concept": { + "const": "elapsed time" + }, + "unit": { + "const": "s" + }, + "@componentDatatype": { + "const": "double" + } + } + } + ] + } + ] + }, + "measures": { + "minItems": 1, + "maxItems": 1, + "contains": { + "oneOf": [ + { + "properties": { + "concept": { + "const": "absorbance" + }, + "unit": { + "const": "mAU" + }, + "@componentDatatype": { + "const": "double" + } + } + } + ] + } + } + } + } + } + } + ] + } + }, + "required": [ + "absorption profile data cube" + ] + }, + { + "properties": { + "chromatogram data cube": { + "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0002550", + "$asm.pattern": "datacube", + "type": "object", + "allOf": [ + { + "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/cube.schema#/$defs/tDatacube" + }, + { + "properties": { + "cube-structure": { + "properties": { + "dimensions": { + "minItems": 1, + "maxItems": 1, + "prefixItems": [ + { + "oneOf": [ + { + "properties": { + "concept": { + "const": "retention time" + }, + "unit": { + "const": "s" + }, + "@componentDatatype": { + "const": "double" + } + } + }, + { + "properties": { + "concept": { + "const": "retention volume" + }, + "unit": { + "const": "mL" + }, + "@componentDatatype": { + "const": "double" + } + } + } + ] + } + ] + }, + "measures": { + "minItems": 1, + "maxItems": 1, + "contains": { + "oneOf": [ + { + "properties": { + "concept": { + "const": "absorbance" + }, + "unit": { + "const": "mAU" + }, + "@componentDatatype": { + "const": "double" + } + } + } + ] + } + } + } + } + } + } + ] + } + }, + "required": [ + "chromatogram data cube" + ] + } + ] + } + } + }, + "http://purl.allotrope.org/json-schemas/adm/absorbance/REC/2024/09/absorbance-spectrum-detector.schema": { + "$id": "http://purl.allotrope.org/json-schemas/adm/absorbance/REC/2024/09/absorbance-spectrum-detector.schema", + "$defs": { + "measurementDocumentItems": { + "properties": { + "device control aggregate document": { + "properties": { + "device control document": { + "items": { + "allOf": [ + { + "properties": { + "detector wavelength setting": { + "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0002456", + "$asm.pattern": "quantity datum", + "allOf": [ + { + "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/core.schema#/$defs/tQuantityValue" + }, + { + "$ref": "http://purl.allotrope.org/json-schemas/qudt/REC/2024/09/units.schema#/$defs/nm" + } + ] + }, + "detector bandwidth setting": { + "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0002477", + "$asm.pattern": "quantity datum", + "allOf": [ + { + "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/core.schema#/$defs/tQuantityValue" + }, + { + "$ref": "http://purl.allotrope.org/json-schemas/qudt/REC/2024/09/units.schema#/$defs/nm" + } + ] + }, + "electronic absorbance wavelength setting": { + "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0001254", + "$asm.pattern": "quantity datum", + "allOf": [ + { + "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/core.schema#/$defs/tQuantityValue" + }, + { + "$ref": "http://purl.allotrope.org/json-schemas/qudt/REC/2024/09/units.schema#/$defs/nm" + } + ] + }, + "electronic absorbance bandwidth setting": { + "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0001253", + "$asm.pattern": "quantity datum", + "allOf": [ + { + "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/core.schema#/$defs/tQuantityValue" + }, + { + "$ref": "http://purl.allotrope.org/json-schemas/qudt/REC/2024/09/units.schema#/$defs/nm" + } + ] + }, + "electronic absorbance reference bandwidth setting": { + "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0001251", + "$asm.pattern": "quantity datum", + "allOf": [ + { + "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/core.schema#/$defs/tQuantityValue" + }, + { + "$ref": "http://purl.allotrope.org/json-schemas/qudt/REC/2024/09/units.schema#/$defs/nm" + } + ] + }, + "electronic absorbance reference wavelength setting": { + "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0001252", + "$asm.pattern": "quantity datum", + "allOf": [ + { + "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/core.schema#/$defs/tQuantityValue" + }, + { + "$ref": "http://purl.allotrope.org/json-schemas/qudt/REC/2024/09/units.schema#/$defs/nm" + } + ] + } + } + }, + { + "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/core.schema#/$defs/orderedItem" + } + ] + }, + "minItems": 1 + } + } + }, + "three-dimensional ultraviolet spectrum data cube": { + "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0002551", + "$asm.pattern": "datacube", + "type": "object", + "allOf": [ + { + "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/cube.schema#/$defs/tDatacube" + }, + { + "properties": { + "cube-structure": { + "properties": { + "dimensions": { + "minItems": 2, + "maxItems": 2, + "prefixItems": [ + { + "properties": { + "concept": { + "const": "retention time" + }, + "unit": { + "const": "s" + }, + "@componentDatatype": { + "const": "double" + } + } + }, + { + "properties": { + "concept": { + "const": "wavelength" + }, + "unit": { + "const": "nm" + }, + "@componentDatatype": { + "const": "double" + } + } + } + ] + }, + "measures": { + "minItems": 1, + "maxItems": 1, + "contains": { + "oneOf": [ + { + "properties": { + "concept": { + "const": "absorbance" + }, + "unit": { + "const": "mAU" + }, + "@componentDatatype": { + "const": "double" + } + } + } + ] + } + } + } + } + } + } + ] + }, + "processed data aggregate document": { + "properties": { + "processed data document": { + "items": { + "allOf": [ + { + "properties": { + "peak list": { + "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0000432", + "$asm.pattern": "aggregate datum", + "type": "object", + "properties": { + "peak": { + "$asm.array-ordered": true, + "$asm.array-mixed": false, + "$asm.pattern": "indexed datum", + "type": "array", + "items": { + "allOf": [ + { + "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0000413", + "$asm.pattern": "aggregate datum", + "type": "object", + "properties": { + "peak height": { + "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0000948", + "$asm.pattern": "quantity datum", + "allOf": [ + { + "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/core.schema#/$defs/tQuantityValue" + }, + { + "$ref": "http://purl.allotrope.org/json-schemas/qudt/REC/2024/09/units.schema#/$defs/mAU" + } + ] + }, + "peak area": { + "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0001073", + "$asm.pattern": "quantity datum", + "allOf": [ + { + "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/core.schema#/$defs/tQuantityValue" + }, + { + "oneOf": [ + { + "$ref": "http://purl.allotrope.org/json-schemas/qudt/REC/2024/09/units.schema#/$defs/mAU.s" + }, + { + "$ref": "http://purl.allotrope.org/json-schemas/qudt/REC/2024/09/units.schema#/$defs/mAU.mL" + } + ] + } + ] + } + } + }, + { + "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/core.schema#/$defs/orderedItem" + } + ] + }, + "minItems": 0 + } + } + } + } + } + ] + } + } + } + } + } + } + } + }, + "http://purl.allotrope.org/json-schemas/adm/fluorescence/REC/2024/09/fluorescence-cube-detector.schema": { + "$id": "http://purl.allotrope.org/json-schemas/adm/fluorescence/REC/2024/09/fluorescence-cube-detector.schema", + "$defs": { + "measurementDocumentItems": { + "properties": { + "device control aggregate document": { + "properties": { + "device control document": { + "items": { + "allOf": [ + { + "properties": { + "detector wavelength setting": { + "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0002456", + "$asm.pattern": "quantity datum", + "allOf": [ + { + "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/core.schema#/$defs/tQuantityValue" + }, + { + "$ref": "http://purl.allotrope.org/json-schemas/qudt/REC/2024/09/units.schema#/$defs/nm" + } + ] + }, + "detector bandwidth setting": { + "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0002477", + "$asm.pattern": "quantity datum", + "allOf": [ + { + "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/core.schema#/$defs/tQuantityValue" + }, + { + "$ref": "http://purl.allotrope.org/json-schemas/qudt/REC/2024/09/units.schema#/$defs/nm" + } + ] + }, + "excitation wavelength setting": { + "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0002479", + "$asm.pattern": "quantity datum", + "allOf": [ + { + "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/core.schema#/$defs/tQuantityValue" + }, + { + "$ref": "http://purl.allotrope.org/json-schemas/qudt/REC/2024/09/units.schema#/$defs/nm" + } + ] + }, + "excitation bandwidth setting": { + "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0002549", + "$asm.pattern": "quantity datum", + "allOf": [ + { + "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/core.schema#/$defs/tQuantityValue" + }, + { + "$ref": "http://purl.allotrope.org/json-schemas/qudt/REC/2024/09/units.schema#/$defs/nm" + } + ] + }, + "total measurement time setting": { + "$asm.property-class": "http://purl.allotrope.org/ontologies/result#0002455", + "$asm.pattern": "quantity datum", + "allOf": [ + { + "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/core.schema#/$defs/tQuantityValue" + }, + { + "$ref": "http://purl.allotrope.org/json-schemas/qudt/REC/2024/09/units.schema#/$defs/s" + } + ] + }, + "read interval setting": { + "$asm.property-class": "http://purl.allotrope.org/ontologies/result#0002454", + "$asm.pattern": "quantity datum", + "allOf": [ + { + "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/core.schema#/$defs/tQuantityValue" + }, + { + "$ref": "http://purl.allotrope.org/json-schemas/qudt/REC/2024/09/units.schema#/$defs/s" + } + ] + }, + "number of scans setting": { + "$asm.property-class": "http://purl.allotrope.org/ontologies/result#0003051", + "$asm.pattern": "quantity datum", + "allOf": [ + { + "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/core.schema#/$defs/tQuantityValue" + }, + { + "$ref": "http://purl.allotrope.org/json-schemas/qudt/REC/2024/09/units.schema#/$defs/%23" + } + ] + } + } + }, + { + "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/core.schema#/$defs/orderedItem" + } + ] + }, + "minItems": 1 + } + } + }, + "processed data document": { + "properties": { + "peak list": { + "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0000432", + "$asm.pattern": "aggregate datum", + "type": "object", + "properties": { + "peak": { + "$asm.array-ordered": true, + "$asm.array-mixed": false, + "$asm.pattern": "indexed datum", + "type": "array", + "items": { + "allOf": [ + { + "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0000413", + "$asm.pattern": "aggregate datum", + "type": "object", + "properties": { + "peak height": { + "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0000948", + "$asm.pattern": "quantity datum", + "allOf": [ + { + "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/core.schema#/$defs/tQuantityValue" + }, + { + "$ref": "http://purl.allotrope.org/json-schemas/qudt/REC/2024/09/units.schema#/$defs/RFU" + } + ] + }, + "peak area": { + "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0001073", + "$asm.pattern": "quantity datum", + "allOf": [ + { + "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/core.schema#/$defs/tQuantityValue" + }, + { + "oneOf": [ + { + "$ref": "http://purl.allotrope.org/json-schemas/qudt/REC/2024/09/units.schema#/$defs/RFU.s" + }, + { + "$ref": "http://purl.allotrope.org/json-schemas/qudt/REC/2024/09/units.schema#/$defs/RFU.mL" + } + ] + } + ] + } + } + }, + { + "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/core.schema#/$defs/orderedItem" + } + ] + }, + "minItems": 0 + } + } + }, + "derived electropherogram data cube": { + "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0003020", + "$asm.pattern": "datacube", + "type": "object", + "allOf": [ + { + "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/cube.schema#/$defs/tDatacube" + }, + { + "properties": { + "cube-structure": { + "properties": { + "measures": { + "minItems": 1, + "maxItems": 1, + "contains": { + "oneOf": [ + { + "properties": { + "concept": { + "const": "fluorescence" + }, + "unit": { + "const": "RFU" + }, + "@componentDatatype": { + "const": "double" + } + } + } + ] + } + } + } + } + } + } + ] + } + } + } + }, + "oneOf": [ + { + "properties": { + "electropherogram data cube": { + "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0003018", + "$asm.pattern": "datacube", + "type": "object", + "allOf": [ + { + "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/cube.schema#/$defs/tDatacube" + }, + { + "properties": { + "cube-structure": { + "properties": { + "dimensions": { + "minItems": 1, + "maxItems": 1, + "prefixItems": [ + { + "oneOf": [ + { + "properties": { + "concept": { + "const": "elapsed time" + }, + "unit": { + "const": "s" + }, + "@componentDatatype": { + "const": "double" + } + } + } + ] + } + ] + }, + "measures": { + "minItems": 1, + "maxItems": 1, + "contains": { + "oneOf": [ + { + "properties": { + "concept": { + "const": "fluorescence" + }, + "unit": { + "const": "RFU" + }, + "@componentDatatype": { + "const": "double" + } + } + } + ] + } + } + } + } + } + } + ] + } + } + }, + { + "properties": { + "fluorescence emission profile data cube": { + "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0002965", + "$asm.pattern": "datacube", + "type": "object", + "allOf": [ + { + "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/cube.schema#/$defs/tDatacube" + }, + { + "properties": { + "cube-structure": { + "properties": { + "dimensions": { + "minItems": 1, + "maxItems": 1, + "prefixItems": [ + { + "oneOf": [ + { + "properties": { + "concept": { + "const": "elapsed time" + }, + "unit": { + "const": "s" + }, + "@componentDatatype": { + "const": "double" + } + } + } + ] + } + ] + }, + "measures": { + "minItems": 1, + "maxItems": 1, + "contains": { + "oneOf": [ + { + "properties": { + "concept": { + "const": "fluorescence" + }, + "unit": { + "const": "RFU" + }, + "@componentDatatype": { + "const": "double" + } + } + } + ] + } + } + } + } + } + } + ] + } + }, + "required": [ + "fluorescence emission profile data cube" + ] + }, + { + "properties": { + "chromatogram data cube": { + "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0002550", + "$asm.pattern": "datacube", + "type": "object", + "allOf": [ + { + "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/cube.schema#/$defs/tDatacube" + }, + { + "properties": { + "cube-structure": { + "properties": { + "dimensions": { + "minItems": 1, + "maxItems": 1, + "prefixItems": [ + { + "oneOf": [ + { + "properties": { + "concept": { + "const": "elapsed time" + }, + "unit": { + "const": "s" + }, + "@componentDatatype": { + "const": "double" + } + } + } + ] + } + ] + }, + "measures": { + "minItems": 1, + "maxItems": 1, + "contains": { + "oneOf": [ + { + "properties": { + "concept": { + "const": "fluorescence" + }, + "unit": { + "const": "RFU" + }, + "@componentDatatype": { + "const": "double" + } + } + } + ] + } + } + } + } + } + } + ] + } + }, + "required": [ + "chromatogram data cube" + ] + } + ] + } + } + }, + "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/manifest.schema": { + "$id": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/manifest.schema", + "title": "Schema for manifests.", + "type": "object", + "properties": { + "@id": { + "type": "string", + "format": "uri", + "minItems": 1, + "maxItems": 1 + }, + "@type": { + "type": "string", + "format": "uri", + "minItems": 1, + "maxItems": 1 + }, + "vocabulary": { + "type": "array", + "items": { + "type": "string", + "format": "uri" + }, + "minItems": 1 + }, + "shapes": { + "type": "array", + "items": { + "type": "string", + "format": "uri" + }, + "minItems": 1 + }, + "json-schemas": { + "type": "array", + "items": { + "type": "string", + "format": "uri" + }, + "minItems": 1 + } + }, + "required": [ + "vocabulary", + "json-schemas" + ] + } + } +} \ No newline at end of file From 2e9f544f20e4766a6745f05004391e880b5f7130 Mon Sep 17 00:00:00 2001 From: Alejandro Salgado Date: Wed, 9 Oct 2024 15:05:57 -0500 Subject: [PATCH 04/19] add mapper for electrophoresis benchling 09/24 --- .../benchling/_2024/_09/electrophoresis.py | 376 ++++++++++++++++++ 1 file changed, 376 insertions(+) create mode 100644 src/allotropy/allotrope/schema_mappers/adm/electrophoresis/benchling/_2024/_09/electrophoresis.py diff --git a/src/allotropy/allotrope/schema_mappers/adm/electrophoresis/benchling/_2024/_09/electrophoresis.py b/src/allotropy/allotrope/schema_mappers/adm/electrophoresis/benchling/_2024/_09/electrophoresis.py new file mode 100644 index 000000000..8e62a7fa7 --- /dev/null +++ b/src/allotropy/allotrope/schema_mappers/adm/electrophoresis/benchling/_2024/_09/electrophoresis.py @@ -0,0 +1,376 @@ +from dataclasses import dataclass +from typing import Any + +from allotropy.allotrope.converter import add_custom_information_document +from allotropy.allotrope.models.adm.electrophoresis.benchling._2024._09.electrophoresis import ( + CalculatedDataAggregateDocument, + CalculatedDataDocumentItem, + DataRegionAggregateDocument, + DataRegionDocumentItem, + DataSourceAggregateDocument, + DataSourceDocumentItem, + DataSystemDocument, + DeviceControlAggregateDocument, + DeviceControlDocumentItem, + DeviceSystemDocument, + ElectrophoresisAggregateDocument, + ElectrophoresisDocumentItem, + ErrorAggregateDocument, + ErrorDocumentItem, + MeasurementAggregateDocument, + MeasurementDocument, + Model, + Peak, + PeakList, + ProcessedDataAggregateDocument, + ProcessedDataDocumentItem, + SampleDocument, +) +from allotropy.allotrope.models.shared.definitions.custom import ( + TQuantityValueDegreeCelsius, + TQuantityValuePercent, + TQuantityValueRelativeFluorescenceUnit, + TQuantityValueUnitless, +) +from allotropy.allotrope.models.shared.definitions.definitions import ( + JsonFloat, + TQuantityValue, +) +from allotropy.allotrope.schema_mappers.schema_mapper import SchemaMapper +from allotropy.constants import ASM_CONVERTER_VERSION +from allotropy.parsers.utils.values import ( + quantity_or_none, + quantity_or_none_from_unit, +) + + +@dataclass(frozen=True) +class ProcessedDataFeature: + identifier: str + start: JsonFloat + start_unit: str + end: JsonFloat + end_unit: str + area: JsonFloat + relative_area: JsonFloat + position: JsonFloat | None = None + position_unit: str | None = None + height: JsonFloat | None = None + relative_corrected_area: JsonFloat | None = None + name: str | None = None + comment: str | None = None + + +@dataclass(frozen=True) +class ProcessedData: + peaks: list[ProcessedDataFeature] + data_regions: list[ProcessedDataFeature] + + +@dataclass(frozen=True) +class DataSource: + identifier: str + feature: str + + +@dataclass(frozen=True) +class CalculatedDataItem: + identifier: str + name: str + value: float + unit: str + data_sources: list[DataSource] + + +@dataclass(frozen=True) +class Error: + error: str + feature: str | None = None + + +@dataclass(frozen=True) +class Measurement: + # Measurement metadata + identifier: str + measurement_time: str + sample_identifier: str + + # Processed data + processed_data: ProcessedData + + # Optional metadata + description: str | None = None + location_identifier: str | None = None + + # Optional settings + compartment_temperature: float | None = None + + # Optional processed data + calculated_data: list[CalculatedDataItem] | None = None + + # Errors + errors: list[Error] | None = None + + +@dataclass(frozen=True) +class MeasurementGroup: + measurements: list[Measurement] + + +@dataclass(frozen=True) +class Metadata: + device_type: str + data_system_instance_identifier: str + analyst: str + file_identifier: str + + device_identifier: str | None = None + model_number: str | None = None + software_name: str | None = None + detection_type: str | None = None + unc_path: str | None = None + software_version: str | None = None + equipment_serial_number: str | None = None + product_manufacturer: str | None = None + brand_name: str | None = None + + file_name: str | None = None + + measurement_time: str | None = None + analytical_method_identifier: str | None = None + method_version: str | None = None + experimental_data_identifier: str | None = None + + +@dataclass(frozen=True) +class Data: + metadata: Metadata + measurement_groups: list[MeasurementGroup] + calculated_data: list[CalculatedDataItem] | None = None + + +class Mapper(SchemaMapper[Data, Model]): + MANIFEST = "http://purl.allotrope.org/manifests/electrophoresis/BENCHLING/2024/09/electrophoresis.manifest" + + def map_model(self, data: Data) -> Model: + return Model( + electrophoresis_aggregate_document=ElectrophoresisAggregateDocument( + device_system_document=DeviceSystemDocument( + brand_name=data.metadata.brand_name, + product_manufacturer=data.metadata.product_manufacturer, + device_identifier=data.metadata.device_identifier, + equipment_serial_number=data.metadata.equipment_serial_number, + ), + data_system_document=DataSystemDocument( + data_system_instance_identifier=data.metadata.data_system_instance_identifier, + file_name=data.metadata.file_name, + software_name=data.metadata.software_name, + software_version=data.metadata.software_version, + ASM_converter_name=self.converter_name, + ASM_converter_version=ASM_CONVERTER_VERSION, + ASM_file_identifier=data.metadata.file_identifier, + ), + electrophoresis_document=[ + add_custom_information_document( + self._get_technique_document(measurement_group, data.metadata), + self._get_technique_doc_custom_document(data.metadata), + ) + for measurement_group in data.measurement_groups + ], + calculated_data_aggregate_document=self._get_calculated_data_aggregate_document( + data.calculated_data + ), + ), + field_asm_manifest=self.MANIFEST, + ) + + def _get_technique_doc_custom_document(self, metadata: Metadata) -> dict[str, Any]: + # TODO(ASM gaps): we believe these values should be introduced to ASM. + return { + "analytical method identifier": metadata.analytical_method_identifier, + "method version": metadata.method_version, + "experimental data identifier": metadata.experimental_data_identifier, + } + + def _get_technique_document( + self, measurement_group: MeasurementGroup, metadata: Metadata + ) -> ElectrophoresisDocumentItem: + return ElectrophoresisDocumentItem( + analyst=metadata.analyst, + measurement_aggregate_document=MeasurementAggregateDocument( + measurement_document=[ + add_custom_information_document( + self._get_measurement_document_item(measurement, metadata), + self._get_measurement_custom_document(measurement), + ) + for measurement in measurement_group.measurements + ], + ), + ) + + def _get_measurement_custom_document( + self, measurement: Measurement + ) -> dict[str, Any]: + # TODO(ASM gaps): we believe these values should be introduced to ASM. + return { + "compartment temperature": quantity_or_none( + TQuantityValueDegreeCelsius, + measurement.compartment_temperature, + ), + } + + def _get_measurement_document_item( + self, measurement: Measurement, metadata: Metadata + ) -> MeasurementDocument: + return MeasurementDocument( + measurement_identifier=measurement.identifier, + measurement_time=self.get_date_time(measurement.measurement_time), + device_control_aggregate_document=DeviceControlAggregateDocument( + device_control_document=[ + DeviceControlDocumentItem( + device_identifier=metadata.device_identifier, + device_type=metadata.device_type, + detection_type=metadata.detection_type, + ), + ] + ), + sample_document=add_custom_information_document( + self._get_sample_document(measurement), + self._get_measurement_custom_document(measurement), + ), + error_aggregate_document=self._get_error_aggregate_document( + measurement.errors + ), + processed_data_aggregate_document=self._get_processed_data_aggregate_document( + measurement.processed_data + ), + calculated_data_aggregate_document=self._get_calculated_data_aggregate_document( + measurement.calculated_data + ), + ) + + def _get_sample_document(self, measurement: Measurement) -> SampleDocument: + return SampleDocument( + sample_identifier=measurement.sample_identifier, + description=measurement.description, + ) + + def _get_sample_custom_document(self, measurement: Measurement) -> dict[str, Any]: + # TODO(ASM gaps): we believe these values should be introduced to ASM. + return { + "location identifier": measurement.location_identifier, + } + + def _get_processed_data_aggregate_document( + self, data: ProcessedData + ) -> ProcessedDataAggregateDocument: + return ProcessedDataAggregateDocument( + processed_data_document=[ + ProcessedDataDocumentItem( + peak_list=PeakList( + peak=[self._get_peak(peak) for peak in data.peaks] + ), + data_region_aggregate_document=DataRegionAggregateDocument( + data_region_document=[ + self._get_data_region_agg_document(data_region) + for data_region in data.data_regions + ] + ) + if data.data_regions + else None, + ) + ] + ) + + def _get_peak(self, peak: ProcessedDataFeature) -> Peak: + return Peak( + identifier=peak.identifier, + peak_height=quantity_or_none( + TQuantityValueRelativeFluorescenceUnit, peak.height + ), + # TODO(nstender): figure out how to limit possible classes from get_quantity_class for typing. + peak_start=quantity_or_none_from_unit(peak.start_unit, peak.start), # type: ignore[arg-type] + peak_end=quantity_or_none_from_unit(peak.end_unit, peak.end), # type: ignore[arg-type] + peak_area=quantity_or_none(TQuantityValueUnitless, peak.area), + relative_peak_area=quantity_or_none( + TQuantityValuePercent, peak.relative_area + ), + ) + + def _get_peak_custom_document(self, peak: ProcessedDataFeature) -> dict[str, Any]: + # TODO(ASM gaps): we believe these values should be introduced to ASM. + return { + "peak name": peak.name, + "peak position": quantity_or_none_from_unit( + peak.position_unit, peak.position + ), + "relative corrected peak area": quantity_or_none( + TQuantityValuePercent, peak.relative_corrected_area + ), + "comment": peak.comment, + } + + def _get_data_region_agg_document( + self, data_region: ProcessedDataFeature + ) -> DataRegionDocumentItem: + return DataRegionDocumentItem( + data_region_identifier=data_region.identifier, + data_region_name=data_region.name, + # TODO(nstender): figure out how to limit possible classes from get_quantity_class for typing. + data_region_start=quantity_or_none_from_unit(data_region.start_unit, data_region.start), # type: ignore[arg-type] + data_region_end=quantity_or_none_from_unit(data_region.end_unit, data_region.end), # type: ignore[arg-type] + data_region_area=TQuantityValueUnitless(value=data_region.area), + relative_data_region_area=TQuantityValuePercent( + value=data_region.relative_area + ), + ) + + def _get_data_region_agg_custom_document( + self, data_region: ProcessedDataFeature + ) -> dict[str, Any]: + # TODO(ASM gaps): we believe these values should be introduced to ASM. + return { + "comment": data_region.comment, + } + + def _get_calculated_data_aggregate_document( + self, calculated_data_items: list[CalculatedDataItem] | None + ) -> CalculatedDataAggregateDocument | None: + if not calculated_data_items: + return None + + return CalculatedDataAggregateDocument( + calculated_data_document=[ + CalculatedDataDocumentItem( + calculated_data_identifier=calculated_data_item.identifier, + calculated_data_name=calculated_data_item.name, + calculated_result=TQuantityValue( + value=calculated_data_item.value, + unit=calculated_data_item.unit, + ), + data_source_aggregate_document=DataSourceAggregateDocument( + data_source_document=[ + DataSourceDocumentItem( + data_source_identifier=item.identifier, + data_source_feature=item.feature, + ) + for item in calculated_data_item.data_sources + ] + ), + ) + for calculated_data_item in calculated_data_items + ] + ) + + def _get_error_aggregate_document( + self, errors: list[Error] | None + ) -> ErrorAggregateDocument | None: + if not errors: + return None + + return ErrorAggregateDocument( + error_document=[ + ErrorDocumentItem(error=error.error, error_feature=error.feature) + for error in errors + ] + ) From 68110e6ec8227a09fe33f035dfe65ffd363084c4 Mon Sep 17 00:00:00 2001 From: Alejandro Salgado Date: Wed, 9 Oct 2024 15:15:35 -0500 Subject: [PATCH 05/19] update electrophoresis benchling 09/24 schema and model --- .../benchling/_2024/_09/electrophoresis.py | 27 +++++++--- .../2024/09/electrophoresis.schema.json | 50 +++++++++++++++++-- 2 files changed, 67 insertions(+), 10 deletions(-) diff --git a/src/allotropy/allotrope/models/adm/electrophoresis/benchling/_2024/_09/electrophoresis.py b/src/allotropy/allotrope/models/adm/electrophoresis/benchling/_2024/_09/electrophoresis.py index bac0b76c1..a530b6e5a 100644 --- a/src/allotropy/allotrope/models/adm/electrophoresis/benchling/_2024/_09/electrophoresis.py +++ b/src/allotropy/allotrope/models/adm/electrophoresis/benchling/_2024/_09/electrophoresis.py @@ -1,6 +1,6 @@ # generated by datamodel-codegen: # filename: electrophoresis.schema.json -# timestamp: 2024-10-09T20:03:40+00:00 +# timestamp: 2024-10-09T20:55:38+00:00 from __future__ import annotations @@ -8,6 +8,7 @@ from typing import Any from allotropy.allotrope.models.shared.definitions.custom import ( + TQuantityValueKiloDalton, TQuantityValueMilliAbsorbanceUnit, TQuantityValueMilliAbsorbanceUnitTimesMilliliter, TQuantityValueMilliAbsorbanceUnitTimesSecond, @@ -265,11 +266,17 @@ class Peak: custom_information_aggregate_document: CustomInformationAggregateDocument | None = ( None ) - peak_end: TQuantityValueMilliliter | TQuantityValueSecondTime | None = None + peak_end: TQuantityValueKiloDalton | TQuantityValueMilliliter | TQuantityValueNumber | TQuantityValueSecondTime | None = ( + None + ) identifier: TStringValue | None = None - relative_peak_height: TQuantityValuePercent | None = None + relative_peak_height: TQuantityValueKiloDalton | TQuantityValueNumber | TQuantityValuePercent | TQuantityValueSecondTime | None = ( + None + ) written_name: TStringValue | None = None - peak_height: TQuantityValue | TQuantityValueMilliAbsorbanceUnit | None = None + peak_height: TQuantityValue | TQuantityValueMilliAbsorbanceUnit | TQuantityValueRelativeFluorescenceUnit | None = ( + None + ) capacity_factor__chromatography_: TQuantityValueUnitless | None = None peak_area: TQuantityValue | TQuantityValueMilliAbsorbanceUnitTimesMilliliter | TQuantityValueMilliAbsorbanceUnitTimesSecond | None = ( None @@ -277,7 +284,9 @@ class Peak: relative_peak_area: TQuantityValuePercent | None = None retention_time: TQuantityValueSecondTime | None = None retention_volume: TQuantityValueMilliliter | None = None - peak_start: TQuantityValueMilliliter | TQuantityValueSecondTime | None = None + peak_start: TQuantityValueKiloDalton | TQuantityValueMilliliter | TQuantityValueNumber | TQuantityValueSecondTime | None = ( + None + ) peak_selectivity__chromatography_: TQuantityValueUnitless | None = None chromatographic_peak_resolution: TQuantityValueUnitless | None = None field_index: int | None = None @@ -347,12 +356,16 @@ class DataRegionDocumentItem: custom_information_aggregate_document: CustomInformationAggregateDocument | None = ( None ) - data_region_end: TQuantityValueMilliliter | TQuantityValueSecondTime | None = None + data_region_end: TQuantityValueKiloDalton | TQuantityValueMilliliter | TQuantityValueNumber | TQuantityValueSecondTime | None = ( + None + ) data_region_identifier: TStringValue | None = None data_region_name: TStringValue | None = None data_region_area: TQuantityValue | None = None relative_data_region_area: TQuantityValuePercent | None = None - data_region_start: TQuantityValueMilliliter | TQuantityValueSecondTime | None = None + data_region_start: TQuantityValueKiloDalton | TQuantityValueMilliliter | TQuantityValueNumber | TQuantityValueSecondTime | None = ( + None + ) field_index: int | None = None diff --git a/src/allotropy/allotrope/schemas/adm/electrophoresis/BENCHLING/2024/09/electrophoresis.schema.json b/src/allotropy/allotrope/schemas/adm/electrophoresis/BENCHLING/2024/09/electrophoresis.schema.json index 169f8e7a6..3a4517dda 100644 --- a/src/allotropy/allotrope/schemas/adm/electrophoresis/BENCHLING/2024/09/electrophoresis.schema.json +++ b/src/allotropy/allotrope/schemas/adm/electrophoresis/BENCHLING/2024/09/electrophoresis.schema.json @@ -83,6 +83,12 @@ }, { "$ref": "http://purl.allotrope.org/json-schemas/qudt/REC/2024/09/units.schema#/$defs/mL" + }, + { + "$ref": "http://purl.allotrope.org/json-schemas/qudt/REC/2024/03/units.schema#/$defs/#" + }, + { + "$ref": "#/$custom/tQuantityValueKiloDalton" } ] } @@ -102,7 +108,20 @@ "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/core.schema#/$defs/tQuantityValue" }, { - "$ref": "http://purl.allotrope.org/json-schemas/qudt/REC/2024/09/units.schema#/$defs/%25" + "oneOf": [ + { + "$ref": "http://purl.allotrope.org/json-schemas/qudt/REC/2024/09/units.schema#/$defs/%25" + }, + { + "$ref": "http://purl.allotrope.org/json-schemas/qudt/REC/2024/03/units.schema#/$defs/s" + }, + { + "$ref": "http://purl.allotrope.org/json-schemas/qudt/REC/2024/03/units.schema#/$defs/#" + }, + { + "$ref": "#/$custom/tQuantityValueKiloDalton" + } + ] } ] }, @@ -192,6 +211,12 @@ }, { "$ref": "http://purl.allotrope.org/json-schemas/qudt/REC/2024/09/units.schema#/$defs/mL" + }, + { + "$ref": "http://purl.allotrope.org/json-schemas/qudt/REC/2024/03/units.schema#/$defs/#" + }, + { + "$ref": "#/$custom/tQuantityValueKiloDalton" } ] } @@ -747,6 +772,12 @@ }, { "$ref": "http://purl.allotrope.org/json-schemas/qudt/REC/2024/09/units.schema#/$defs/mL" + }, + { + "$ref": "http://purl.allotrope.org/json-schemas/qudt/REC/2024/03/units.schema#/$defs/#" + }, + { + "$ref": "#/$custom/tQuantityValueKiloDalton" } ] } @@ -799,6 +830,12 @@ }, { "$ref": "http://purl.allotrope.org/json-schemas/qudt/REC/2024/09/units.schema#/$defs/mL" + }, + { + "$ref": "http://purl.allotrope.org/json-schemas/qudt/REC/2024/03/units.schema#/$defs/#" + }, + { + "$ref": "#/$custom/tQuantityValueKiloDalton" } ] } @@ -12957,7 +12994,14 @@ "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/core.schema#/$defs/tQuantityValue" }, { - "$ref": "http://purl.allotrope.org/json-schemas/qudt/REC/2024/09/units.schema#/$defs/mAU" + "oneOf": [ + { + "$ref": "http://purl.allotrope.org/json-schemas/qudt/REC/2024/09/units.schema#/$defs/mAU" + }, + { + "$ref": "http://purl.allotrope.org/json-schemas/qudt/REC/2024/03/units.schema#/$defs/RFU" + } + ] } ] }, @@ -13933,4 +13977,4 @@ ] } } -} \ No newline at end of file +} From 5bd2a731735343fbd0a205066a13077ffdfc6e2c Mon Sep 17 00:00:00 2001 From: Alejandro Salgado Date: Wed, 9 Oct 2024 16:02:28 -0500 Subject: [PATCH 06/19] use benchling 09/24 in tapestation parser --- .../agilent_tapestation_analysis_parser.py | 4 ++-- .../agilent_tapestation_analysis_structure.py | 2 +- .../agilent_tapestation_analysis_structure_test.py | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/allotropy/parsers/agilent_tapestation_analysis/agilent_tapestation_analysis_parser.py b/src/allotropy/parsers/agilent_tapestation_analysis/agilent_tapestation_analysis_parser.py index d1384976e..5fccd6276 100644 --- a/src/allotropy/parsers/agilent_tapestation_analysis/agilent_tapestation_analysis_parser.py +++ b/src/allotropy/parsers/agilent_tapestation_analysis/agilent_tapestation_analysis_parser.py @@ -1,9 +1,9 @@ from xml.etree import ElementTree as ET # noqa: N817 -from allotropy.allotrope.models.adm.electrophoresis.rec._2024._09.electrophoresis import ( +from allotropy.allotrope.models.adm.electrophoresis.benchling._2024._09.electrophoresis import ( Model, ) -from allotropy.allotrope.schema_mappers.adm.electrophoresis.rec._2024._09.electrophoresis import ( +from allotropy.allotrope.schema_mappers.adm.electrophoresis.benchling._2024._09.electrophoresis import ( Data, Mapper, ) diff --git a/src/allotropy/parsers/agilent_tapestation_analysis/agilent_tapestation_analysis_structure.py b/src/allotropy/parsers/agilent_tapestation_analysis/agilent_tapestation_analysis_structure.py index 1f1b4c0c5..1d37a2bdb 100644 --- a/src/allotropy/parsers/agilent_tapestation_analysis/agilent_tapestation_analysis_structure.py +++ b/src/allotropy/parsers/agilent_tapestation_analysis/agilent_tapestation_analysis_structure.py @@ -4,7 +4,7 @@ from xml.etree import ElementTree as ET # noqa: N817 from allotropy.allotrope.models.shared.definitions.units import UNITLESS -from allotropy.allotrope.schema_mappers.adm.electrophoresis.rec._2024._09.electrophoresis import ( +from allotropy.allotrope.schema_mappers.adm.electrophoresis.benchling._2024._09.electrophoresis import ( CalculatedDataItem, DataSource, Error, diff --git a/tests/parsers/agilent_tapestation_analysis/agilent_tapestation_analysis_structure_test.py b/tests/parsers/agilent_tapestation_analysis/agilent_tapestation_analysis_structure_test.py index 2b92463ae..c74e42c43 100644 --- a/tests/parsers/agilent_tapestation_analysis/agilent_tapestation_analysis_structure_test.py +++ b/tests/parsers/agilent_tapestation_analysis/agilent_tapestation_analysis_structure_test.py @@ -4,7 +4,7 @@ import pytest from allotropy.allotrope.models.shared.definitions.definitions import InvalidJsonFloat -from allotropy.allotrope.schema_mappers.adm.electrophoresis.rec._2024._09.electrophoresis import ( +from allotropy.allotrope.schema_mappers.adm.electrophoresis.benchling._2024._09.electrophoresis import ( CalculatedDataItem, DataSource, Measurement, From f364ef9533b2d2c483a03fa4fa3e79e34762482d Mon Sep 17 00:00:00 2001 From: Alejandro Salgado Date: Wed, 9 Oct 2024 16:49:27 -0500 Subject: [PATCH 07/19] redefine processed data features as optional in benchling 09/24 mapper and tapestation adapter --- .../benchling/_2024/_09/electrophoresis.py | 78 +++++++++++++------ .../agilent_tapestation_analysis_structure.py | 23 +++--- ...ent_tapestation_analysis_structure_test.py | 6 +- 3 files changed, 70 insertions(+), 37 deletions(-) diff --git a/src/allotropy/allotrope/schema_mappers/adm/electrophoresis/benchling/_2024/_09/electrophoresis.py b/src/allotropy/allotrope/schema_mappers/adm/electrophoresis/benchling/_2024/_09/electrophoresis.py index 8e62a7fa7..e0354ee84 100644 --- a/src/allotropy/allotrope/schema_mappers/adm/electrophoresis/benchling/_2024/_09/electrophoresis.py +++ b/src/allotropy/allotrope/schema_mappers/adm/electrophoresis/benchling/_2024/_09/electrophoresis.py @@ -47,12 +47,12 @@ @dataclass(frozen=True) class ProcessedDataFeature: identifier: str - start: JsonFloat - start_unit: str - end: JsonFloat - end_unit: str - area: JsonFloat - relative_area: JsonFloat + start: JsonFloat | None = None + start_unit: str | None = None + end: JsonFloat | None = None + end_unit: str | None = None + area: JsonFloat | None = None + relative_area: JsonFloat | None = None position: JsonFloat | None = None position_unit: str | None = None height: JsonFloat | None = None @@ -285,15 +285,31 @@ def _get_processed_data_aggregate_document( def _get_peak(self, peak: ProcessedDataFeature) -> Peak: return Peak( identifier=peak.identifier, - peak_height=quantity_or_none( - TQuantityValueRelativeFluorescenceUnit, peak.height + peak_height=( + quantity_or_none(TQuantityValueRelativeFluorescenceUnit, peak.height) + if peak.height + else None ), # TODO(nstender): figure out how to limit possible classes from get_quantity_class for typing. - peak_start=quantity_or_none_from_unit(peak.start_unit, peak.start), # type: ignore[arg-type] - peak_end=quantity_or_none_from_unit(peak.end_unit, peak.end), # type: ignore[arg-type] - peak_area=quantity_or_none(TQuantityValueUnitless, peak.area), - relative_peak_area=quantity_or_none( - TQuantityValuePercent, peak.relative_area + peak_start=( + quantity_or_none_from_unit(peak.start_unit, peak.start) # type: ignore[arg-type] + if peak.start + else None + ), + peak_end=( + quantity_or_none_from_unit(peak.end_unit, peak.end) # type: ignore[arg-type] + if peak.end + else None + ), + peak_area=( + quantity_or_none(TQuantityValueUnitless, peak.area) + if peak.area + else None + ), + relative_peak_area=( + quantity_or_none(TQuantityValuePercent, peak.relative_area) + if peak.relative_area + else None ), ) @@ -301,11 +317,15 @@ def _get_peak_custom_document(self, peak: ProcessedDataFeature) -> dict[str, Any # TODO(ASM gaps): we believe these values should be introduced to ASM. return { "peak name": peak.name, - "peak position": quantity_or_none_from_unit( - peak.position_unit, peak.position + "peak position": ( + quantity_or_none_from_unit(peak.position_unit, peak.position) + if peak.position + else None ), - "relative corrected peak area": quantity_or_none( - TQuantityValuePercent, peak.relative_corrected_area + "relative corrected peak area": ( + quantity_or_none(TQuantityValuePercent, peak.relative_corrected_area) + if peak.relative_corrected_area + else None ), "comment": peak.comment, } @@ -317,11 +337,25 @@ def _get_data_region_agg_document( data_region_identifier=data_region.identifier, data_region_name=data_region.name, # TODO(nstender): figure out how to limit possible classes from get_quantity_class for typing. - data_region_start=quantity_or_none_from_unit(data_region.start_unit, data_region.start), # type: ignore[arg-type] - data_region_end=quantity_or_none_from_unit(data_region.end_unit, data_region.end), # type: ignore[arg-type] - data_region_area=TQuantityValueUnitless(value=data_region.area), - relative_data_region_area=TQuantityValuePercent( - value=data_region.relative_area + data_region_start=( + quantity_or_none_from_unit(data_region.start_unit, data_region.start) # type: ignore[arg-type] + if data_region.start + else None + ), + data_region_end=( + quantity_or_none_from_unit(data_region.end_unit, data_region.end) # type: ignore[arg-type] + if data_region.end + else None + ), + data_region_area=( + TQuantityValueUnitless(value=data_region.area) + if data_region.area + else None + ), + relative_data_region_area=( + TQuantityValuePercent(value=data_region.relative_area) + if data_region.relative_area + else None ), ) diff --git a/src/allotropy/parsers/agilent_tapestation_analysis/agilent_tapestation_analysis_structure.py b/src/allotropy/parsers/agilent_tapestation_analysis/agilent_tapestation_analysis_structure.py index 1d37a2bdb..1ba74dc4b 100644 --- a/src/allotropy/parsers/agilent_tapestation_analysis/agilent_tapestation_analysis_structure.py +++ b/src/allotropy/parsers/agilent_tapestation_analysis/agilent_tapestation_analysis_structure.py @@ -35,7 +35,6 @@ from allotropy.parsers.utils.values import try_float_or_none from allotropy.parsers.utils.xml import ( get_element_from_xml, - get_float_from_xml_or_nan, get_float_from_xml_or_none, get_val_from_xml, get_val_from_xml_or_none, @@ -109,18 +108,18 @@ def _get_description(xml_element: ET.Element) -> str | None: def _create_peak(peak_element: ET.Element, unit: str) -> ProcessedDataFeature: return ProcessedDataFeature( identifier=random_uuid_str(), - height=get_float_from_xml_or_nan(peak_element, "Height"), - start=get_float_from_xml_or_nan(peak_element, "FromMW"), + height=get_float_from_xml_or_none(peak_element, "Height"), + start=get_float_from_xml_or_none(peak_element, "FromMW"), start_unit=unit, - end=get_float_from_xml_or_nan(peak_element, "ToMW"), + end=get_float_from_xml_or_none(peak_element, "ToMW"), end_unit=unit, - position=get_float_from_xml_or_nan( + position=get_float_from_xml_or_none( peak_element, "Size" ), # stored in custom info, should be part of allotrope position_unit=unit, - area=get_float_from_xml_or_nan(peak_element, "Area"), - relative_area=get_float_from_xml_or_nan(peak_element, "PercentOfTotal"), - relative_corrected_area=get_float_from_xml_or_nan( # stored in custom info, should be part of allotrope + area=get_float_from_xml_or_none(peak_element, "Area"), + relative_area=get_float_from_xml_or_none(peak_element, "PercentOfTotal"), + relative_corrected_area=get_float_from_xml_or_none( # stored in custom info, should be part of allotrope peak_element, "PercentIntegratedArea" ), name=get_val_from_xml_or_none( @@ -137,12 +136,12 @@ def _create_region( ) -> ProcessedDataFeature: return ProcessedDataFeature( identifier=random_uuid_str(), - start=get_float_from_xml_or_nan(region_element, "From"), + start=get_float_from_xml_or_none(region_element, "From"), start_unit=unit, - end=get_float_from_xml_or_nan(region_element, "To"), + end=get_float_from_xml_or_none(region_element, "To"), end_unit=unit, - area=get_float_from_xml_or_nan(region_element, "Area"), - relative_area=get_float_from_xml_or_nan(region_element, "PercentOfTotal"), + area=get_float_from_xml_or_none(region_element, "Area"), + relative_area=get_float_from_xml_or_none(region_element, "PercentOfTotal"), name=region_name, comment=get_val_from_xml_or_none( region_element, "Comment" diff --git a/tests/parsers/agilent_tapestation_analysis/agilent_tapestation_analysis_structure_test.py b/tests/parsers/agilent_tapestation_analysis/agilent_tapestation_analysis_structure_test.py index c74e42c43..aa1e68a82 100644 --- a/tests/parsers/agilent_tapestation_analysis/agilent_tapestation_analysis_structure_test.py +++ b/tests/parsers/agilent_tapestation_analysis/agilent_tapestation_analysis_structure_test.py @@ -143,8 +143,8 @@ def testcreate_measurement_groups() -> None: position=100.0, position_unit="#", area=1.0, - relative_area=InvalidJsonFloat.NaN, - relative_corrected_area=InvalidJsonFloat.NaN, + relative_area=None, + relative_corrected_area=None, comment="Lower Marker", ), ProcessedDataFeature( @@ -153,7 +153,7 @@ def testcreate_measurement_groups() -> None: height=284.723, start=3812.0, start_unit="#", - end=InvalidJsonFloat.NaN, + end=None, end_unit="#", position=8525.0, position_unit="#", From 7595812d237198cb8b7a32259c2ef77e91093525 Mon Sep 17 00:00:00 2001 From: Alejandro Salgado Date: Thu, 10 Oct 2024 14:55:08 -0500 Subject: [PATCH 08/19] remove custom information from electrophoresis benchling 09/24 --- .../benchling/_2024/_09/electrophoresis.py | 17 +++ .../benchling/_2024/_09/electrophoresis.py | 95 ++++--------- .../2024/09/electrophoresis.schema.json | 127 +++++++++++++++++- .../agilent_tapestation_analysis_structure.py | 20 +-- 4 files changed, 177 insertions(+), 82 deletions(-) diff --git a/src/allotropy/allotrope/models/adm/electrophoresis/benchling/_2024/_09/electrophoresis.py b/src/allotropy/allotrope/models/adm/electrophoresis/benchling/_2024/_09/electrophoresis.py index a530b6e5a..75f6d36ea 100644 --- a/src/allotropy/allotrope/models/adm/electrophoresis/benchling/_2024/_09/electrophoresis.py +++ b/src/allotropy/allotrope/models/adm/electrophoresis/benchling/_2024/_09/electrophoresis.py @@ -8,6 +8,7 @@ from typing import Any from allotropy.allotrope.models.shared.definitions.custom import ( + TQuantityValueDegreeCelsius, TQuantityValueKiloDalton, TQuantityValueMilliAbsorbanceUnit, TQuantityValueMilliAbsorbanceUnitTimesMilliliter, @@ -135,6 +136,7 @@ class ProcessedDataAggregateDocument: electronic_project_record: ElectronicProjectRecord | None = None + @dataclass(kw_only=True) class StatisticsDocumentItem: statistical_feature: TClass @@ -259,6 +261,7 @@ class DeviceControlAggregateDocument: custom_information_aggregate_document: CustomInformationAggregateDocument | None = ( None ) + compartment_temperature: TQuantityValueDegreeCelsius | None = None @dataclass(kw_only=True) @@ -269,6 +272,10 @@ class Peak: peak_end: TQuantityValueKiloDalton | TQuantityValueMilliliter | TQuantityValueNumber | TQuantityValueSecondTime | None = ( None ) + peak_position: TQuantityValueKiloDalton | TQuantityValueMilliliter | TQuantityValueNumber | TQuantityValueSecondTime | None = ( + None + ) + peak_name: TStringValue | None = None identifier: TStringValue | None = None relative_peak_height: TQuantityValueKiloDalton | TQuantityValueNumber | TQuantityValuePercent | TQuantityValueSecondTime | None = ( None @@ -282,6 +289,8 @@ class Peak: None ) relative_peak_area: TQuantityValuePercent | None = None + relative_corrected_peak_area: TQuantityValuePercent | None = None + comment: TStringValue | None = None retention_time: TQuantityValueSecondTime | None = None retention_volume: TQuantityValueMilliliter | None = None peak_start: TQuantityValueKiloDalton | TQuantityValueMilliliter | TQuantityValueNumber | TQuantityValueSecondTime | None = ( @@ -351,6 +360,8 @@ class PeakList: peak: list[PeakItem] | list[Peak] | None = None + + @dataclass(kw_only=True) class DataRegionDocumentItem: custom_information_aggregate_document: CustomInformationAggregateDocument | None = ( @@ -363,6 +374,7 @@ class DataRegionDocumentItem: data_region_name: TStringValue | None = None data_region_area: TQuantityValue | None = None relative_data_region_area: TQuantityValuePercent | None = None + comment: TStringValue | None = None data_region_start: TQuantityValueKiloDalton | TQuantityValueMilliliter | TQuantityValueNumber | TQuantityValueSecondTime | None = ( None ) @@ -382,6 +394,7 @@ class SampleDocument: sample_identifier: TStringValue batch_identifier: TStringValue | None = None description: Any | None = None + location_identifier: TStringValue | None = None sample_role_type: TClass | None = None written_name: TStringValue | None = None custom_information_aggregate_document: CustomInformationAggregateDocument | None = ( @@ -452,6 +465,7 @@ class MeasurementDocument: measurement_time: TDateTimeStampValue | None = None processed_data_aggregate_document: ProcessedDataAggregateDocument | None = None statistics_aggregate_document: StatisticsAggregateDocument | None = None + compartment_temperature: TQuantityValueDegreeCelsius | None = None absorption_profile_data_cube: TDatacube | None = None chromatogram_data_cube: TDatacube | None = None three_dimensional_ultraviolet_spectrum_data_cube: TDatacube | None = None @@ -472,6 +486,9 @@ class MeasurementAggregateDocument: custom_information_aggregate_document: CustomInformationAggregateDocument | None = ( None ) + analytical_method_identifier: TStringValue | None = None + method_version: TStringValue | None = None + experimental_data_identifier: TStringValue | None = None diagnostic_trace_aggregate_document: DiagnosticTraceAggregateDocument | None = None error_aggregate_document: ErrorAggregateDocument | None = None image_aggregate_document: ImageAggregateDocument | None = None diff --git a/src/allotropy/allotrope/schema_mappers/adm/electrophoresis/benchling/_2024/_09/electrophoresis.py b/src/allotropy/allotrope/schema_mappers/adm/electrophoresis/benchling/_2024/_09/electrophoresis.py index e0354ee84..64a8f7ece 100644 --- a/src/allotropy/allotrope/schema_mappers/adm/electrophoresis/benchling/_2024/_09/electrophoresis.py +++ b/src/allotropy/allotrope/schema_mappers/adm/electrophoresis/benchling/_2024/_09/electrophoresis.py @@ -1,7 +1,5 @@ from dataclasses import dataclass -from typing import Any -from allotropy.allotrope.converter import add_custom_information_document from allotropy.allotrope.models.adm.electrophoresis.benchling._2024._09.electrophoresis import ( CalculatedDataAggregateDocument, CalculatedDataDocumentItem, @@ -162,6 +160,7 @@ def map_model(self, data: Data) -> Model: equipment_serial_number=data.metadata.equipment_serial_number, ), data_system_document=DataSystemDocument( + UNC_path=data.metadata.unc_path, data_system_instance_identifier=data.metadata.data_system_instance_identifier, file_name=data.metadata.file_name, software_name=data.metadata.software_name, @@ -171,10 +170,7 @@ def map_model(self, data: Data) -> Model: ASM_file_identifier=data.metadata.file_identifier, ), electrophoresis_document=[ - add_custom_information_document( - self._get_technique_document(measurement_group, data.metadata), - self._get_technique_doc_custom_document(data.metadata), - ) + self._get_technique_document(measurement_group, data.metadata) for measurement_group in data.measurement_groups ], calculated_data_aggregate_document=self._get_calculated_data_aggregate_document( @@ -184,47 +180,32 @@ def map_model(self, data: Data) -> Model: field_asm_manifest=self.MANIFEST, ) - def _get_technique_doc_custom_document(self, metadata: Metadata) -> dict[str, Any]: - # TODO(ASM gaps): we believe these values should be introduced to ASM. - return { - "analytical method identifier": metadata.analytical_method_identifier, - "method version": metadata.method_version, - "experimental data identifier": metadata.experimental_data_identifier, - } - def _get_technique_document( self, measurement_group: MeasurementGroup, metadata: Metadata ) -> ElectrophoresisDocumentItem: return ElectrophoresisDocumentItem( analyst=metadata.analyst, measurement_aggregate_document=MeasurementAggregateDocument( + analytical_method_identifier=metadata.analytical_method_identifier, + method_version=metadata.method_version, + experimental_data_identifier=metadata.experimental_data_identifier, measurement_document=[ - add_custom_information_document( - self._get_measurement_document_item(measurement, metadata), - self._get_measurement_custom_document(measurement), - ) + self._get_measurement_document_item(measurement, metadata) for measurement in measurement_group.measurements ], ), ) - def _get_measurement_custom_document( - self, measurement: Measurement - ) -> dict[str, Any]: - # TODO(ASM gaps): we believe these values should be introduced to ASM. - return { - "compartment temperature": quantity_or_none( - TQuantityValueDegreeCelsius, - measurement.compartment_temperature, - ), - } - def _get_measurement_document_item( self, measurement: Measurement, metadata: Metadata ) -> MeasurementDocument: return MeasurementDocument( measurement_identifier=measurement.identifier, measurement_time=self.get_date_time(measurement.measurement_time), + compartment_temperature=quantity_or_none( + TQuantityValueDegreeCelsius, + measurement.compartment_temperature, + ), device_control_aggregate_document=DeviceControlAggregateDocument( device_control_document=[ DeviceControlDocumentItem( @@ -234,10 +215,7 @@ def _get_measurement_document_item( ), ] ), - sample_document=add_custom_information_document( - self._get_sample_document(measurement), - self._get_measurement_custom_document(measurement), - ), + sample_document=self._get_sample_document(measurement), error_aggregate_document=self._get_error_aggregate_document( measurement.errors ), @@ -253,14 +231,9 @@ def _get_sample_document(self, measurement: Measurement) -> SampleDocument: return SampleDocument( sample_identifier=measurement.sample_identifier, description=measurement.description, + location_identifier=measurement.location_identifier, ) - def _get_sample_custom_document(self, measurement: Measurement) -> dict[str, Any]: - # TODO(ASM gaps): we believe these values should be introduced to ASM. - return { - "location identifier": measurement.location_identifier, - } - def _get_processed_data_aggregate_document( self, data: ProcessedData ) -> ProcessedDataAggregateDocument: @@ -268,7 +241,9 @@ def _get_processed_data_aggregate_document( processed_data_document=[ ProcessedDataDocumentItem( peak_list=PeakList( - peak=[self._get_peak(peak) for peak in data.peaks] + peak=[ + self._get_peak(peak) + for peak in data.peaks] ), data_region_aggregate_document=DataRegionAggregateDocument( data_region_document=[ @@ -285,12 +260,24 @@ def _get_processed_data_aggregate_document( def _get_peak(self, peak: ProcessedDataFeature) -> Peak: return Peak( identifier=peak.identifier, + peak_name=peak.name, + comment=peak.comment, + # TODO(nstender): figure out how to limit possible classes from get_quantity_class for typing. peak_height=( quantity_or_none(TQuantityValueRelativeFluorescenceUnit, peak.height) if peak.height else None ), - # TODO(nstender): figure out how to limit possible classes from get_quantity_class for typing. + peak_position=( + quantity_or_none_from_unit(peak.position_unit, peak.position) + if peak.position + else None + ), + relative_corrected_peak_area=( + quantity_or_none(TQuantityValuePercent, peak.relative_corrected_area) + if peak.relative_corrected_area + else None + ), peak_start=( quantity_or_none_from_unit(peak.start_unit, peak.start) # type: ignore[arg-type] if peak.start @@ -313,29 +300,13 @@ def _get_peak(self, peak: ProcessedDataFeature) -> Peak: ), ) - def _get_peak_custom_document(self, peak: ProcessedDataFeature) -> dict[str, Any]: - # TODO(ASM gaps): we believe these values should be introduced to ASM. - return { - "peak name": peak.name, - "peak position": ( - quantity_or_none_from_unit(peak.position_unit, peak.position) - if peak.position - else None - ), - "relative corrected peak area": ( - quantity_or_none(TQuantityValuePercent, peak.relative_corrected_area) - if peak.relative_corrected_area - else None - ), - "comment": peak.comment, - } - def _get_data_region_agg_document( self, data_region: ProcessedDataFeature ) -> DataRegionDocumentItem: return DataRegionDocumentItem( data_region_identifier=data_region.identifier, data_region_name=data_region.name, + comment=data_region.comment, # TODO(nstender): figure out how to limit possible classes from get_quantity_class for typing. data_region_start=( quantity_or_none_from_unit(data_region.start_unit, data_region.start) # type: ignore[arg-type] @@ -359,14 +330,6 @@ def _get_data_region_agg_document( ), ) - def _get_data_region_agg_custom_document( - self, data_region: ProcessedDataFeature - ) -> dict[str, Any]: - # TODO(ASM gaps): we believe these values should be introduced to ASM. - return { - "comment": data_region.comment, - } - def _get_calculated_data_aggregate_document( self, calculated_data_items: list[CalculatedDataItem] | None ) -> CalculatedDataAggregateDocument | None: diff --git a/src/allotropy/allotrope/schemas/adm/electrophoresis/BENCHLING/2024/09/electrophoresis.schema.json b/src/allotropy/allotrope/schemas/adm/electrophoresis/BENCHLING/2024/09/electrophoresis.schema.json index 3a4517dda..e1a9e4832 100644 --- a/src/allotropy/allotrope/schemas/adm/electrophoresis/BENCHLING/2024/09/electrophoresis.schema.json +++ b/src/allotropy/allotrope/schemas/adm/electrophoresis/BENCHLING/2024/09/electrophoresis.schema.json @@ -1,5 +1,5 @@ { - "$id": "http://purl.allotrope.org/json-schemas/adm/electrophoresis/BENCHLING/2024/09/electrophoresis.schema", + "$id": "http://purl.allotrope.org/json-schemas/adm/electrophoresis/BENCHLING/2024/09/electrophoresis.embed.schema", "$schema": "https://json-schema.org/draft/2020-12/schema", "allOf": [ { @@ -85,7 +85,7 @@ "$ref": "http://purl.allotrope.org/json-schemas/qudt/REC/2024/09/units.schema#/$defs/mL" }, { - "$ref": "http://purl.allotrope.org/json-schemas/qudt/REC/2024/03/units.schema#/$defs/#" + "$ref": "http://purl.allotrope.org/json-schemas/qudt/REC/2024/09/units.schema#/$defs/#" }, { "$ref": "#/$custom/tQuantityValueKiloDalton" @@ -94,6 +94,37 @@ } ] }, + "peak position": { + "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0001074", + "$asm.pattern": "quantity datum", + "allOf": [ + { + "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/core.schema#/$defs/tQuantityValue" + }, + { + "oneOf": [ + { + "$ref": "http://purl.allotrope.org/json-schemas/qudt/REC/2024/09/units.schema#/$defs/s" + }, + { + "$ref": "http://purl.allotrope.org/json-schemas/qudt/REC/2024/09/units.schema#/$defs/mL" + }, + { + "$ref": "http://purl.allotrope.org/json-schemas/qudt/REC/2024/09/units.schema#/$defs/#" + }, + { + "$ref": "#/$custom/tQuantityValueKiloDalton" + } + ] + } + ] + }, + "peak name": { + "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0001167", + "$asm.pattern": "value datum", + "$asm.type": "http://www.w3.org/2001/XMLSchema#string", + "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/core.schema#/$defs/tStringValue" + }, "identifier": { "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0000917", "$asm.pattern": "value datum", @@ -116,7 +147,7 @@ "$ref": "http://purl.allotrope.org/json-schemas/qudt/REC/2024/03/units.schema#/$defs/s" }, { - "$ref": "http://purl.allotrope.org/json-schemas/qudt/REC/2024/03/units.schema#/$defs/#" + "$ref": "http://purl.allotrope.org/json-schemas/qudt/REC/2024/09/units.schema#/$defs/#" }, { "$ref": "#/$custom/tQuantityValueKiloDalton" @@ -173,6 +204,24 @@ } ] }, + "relative corrected peak area": { + "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0002775", + "$asm.pattern": "quantity datum", + "allOf": [ + { + "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/core.schema#/$defs/tQuantityValue" + }, + { + "$ref": "http://purl.allotrope.org/json-schemas/qudt/REC/2024/09/units.schema#/$defs/%" + } + ] + }, + "comment": { + "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0002017", + "$asm.pattern": "value datum", + "$asm.type": "http://www.w3.org/2001/XMLSchema#string", + "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/core.schema#/$defs/tStringValue" + }, "retention time": { "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0001089", "$asm.pattern": "quantity datum", @@ -213,7 +262,7 @@ "$ref": "http://purl.allotrope.org/json-schemas/qudt/REC/2024/09/units.schema#/$defs/mL" }, { - "$ref": "http://purl.allotrope.org/json-schemas/qudt/REC/2024/03/units.schema#/$defs/#" + "$ref": "http://purl.allotrope.org/json-schemas/qudt/REC/2024/09/units.schema#/$defs/#" }, { "$ref": "#/$custom/tQuantityValueKiloDalton" @@ -774,7 +823,7 @@ "$ref": "http://purl.allotrope.org/json-schemas/qudt/REC/2024/09/units.schema#/$defs/mL" }, { - "$ref": "http://purl.allotrope.org/json-schemas/qudt/REC/2024/03/units.schema#/$defs/#" + "$ref": "http://purl.allotrope.org/json-schemas/qudt/REC/2024/09/units.schema#/$defs/#" }, { "$ref": "#/$custom/tQuantityValueKiloDalton" @@ -816,6 +865,12 @@ } ] }, + "comment": { + "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0002017", + "$asm.pattern": "value datum", + "$asm.type": "http://www.w3.org/2001/XMLSchema#string", + "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/core.schema#/$defs/tStringValue" + }, "data region start": { "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0003007", "$asm.pattern": "quantity datum", @@ -832,7 +887,7 @@ "$ref": "http://purl.allotrope.org/json-schemas/qudt/REC/2024/09/units.schema#/$defs/mL" }, { - "$ref": "http://purl.allotrope.org/json-schemas/qudt/REC/2024/03/units.schema#/$defs/#" + "$ref": "http://purl.allotrope.org/json-schemas/qudt/REC/2024/09/units.schema#/$defs/#" }, { "$ref": "#/$custom/tQuantityValueKiloDalton" @@ -2139,6 +2194,24 @@ } ] }, + "analytical method identifier": { + "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0001978", + "$asm.pattern": "value datum", + "$asm.type": "http://www.w3.org/2001/XMLSchema#string", + "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/core.schema#/$defs/tStringValue" + }, + "method version": { + "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0002837", + "$asm.pattern": "value datum", + "$asm.type": "http://www.w3.org/2001/XMLSchema#string", + "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/core.schema#/$defs/tStringValue" + }, + "experimental data identifier": { + "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0001977", + "$asm.pattern": "value datum", + "$asm.type": "http://www.w3.org/2001/XMLSchema#string", + "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/core.schema#/$defs/tStringValue" + }, "diagnostic trace aggregate document": { "$asm.pattern": "aggregate datum", "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0002705", @@ -2391,6 +2464,12 @@ "$asm.type": "http://www.w3.org/2001/XMLSchema#string", "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/core.schema#/$defs/tStringValue" }, + "location identifier": { + "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0002844", + "$asm.pattern": "value datum", + "$asm.type": "http://www.w3.org/2001/XMLSchema#string", + "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/core.schema#/$defs/tStringValue" + }, "sample role type": { "$asm.pattern": "class datum", "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0002242", @@ -13040,6 +13119,18 @@ } } } + }, + "compartment temperature": { + "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0002549", + "$asm.pattern": "quantity datum", + "allOf": [ + { + "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/core.schema#/$defs/tQuantityValue" + }, + { + "$ref": "http://purl.allotrope.org/json-schemas/qudt/REC/2024/09/units.schema#/$defs/degC" + } + ] } }, "oneOf": [ @@ -13272,6 +13363,18 @@ "$defs": { "measurementDocumentItems": { "properties": { + "compartment temperature": { + "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0002549", + "$asm.pattern": "quantity datum", + "allOf": [ + { + "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/core.schema#/$defs/tQuantityValue" + }, + { + "$ref": "http://purl.allotrope.org/json-schemas/qudt/REC/2024/09/units.schema#/$defs/degC" + } + ] + }, "device control aggregate document": { "properties": { "device control document": { @@ -13517,6 +13620,18 @@ "properties": { "device control aggregate document": { "properties": { + "compartment temperature": { + "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0002549", + "$asm.pattern": "quantity datum", + "allOf": [ + { + "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/core.schema#/$defs/tQuantityValue" + }, + { + "$ref": "http://purl.allotrope.org/json-schemas/qudt/REC/2024/09/units.schema#/$defs/degC" + } + ] + }, "device control document": { "items": { "allOf": [ diff --git a/src/allotropy/parsers/agilent_tapestation_analysis/agilent_tapestation_analysis_structure.py b/src/allotropy/parsers/agilent_tapestation_analysis/agilent_tapestation_analysis_structure.py index 1ba74dc4b..6aaa76974 100644 --- a/src/allotropy/parsers/agilent_tapestation_analysis/agilent_tapestation_analysis_structure.py +++ b/src/allotropy/parsers/agilent_tapestation_analysis/agilent_tapestation_analysis_structure.py @@ -73,7 +73,7 @@ def create_metadata(root_element: ET.Element, file_name: str) -> Metadata: file_name=file_name, file_identifier=f"{file_identifier}.json", analyst=get_val_from_xml(environment, "Experimenter"), - analytical_method_identifier=get_val_from_xml_or_none( # stored in custom info, should be part of allotrope + analytical_method_identifier=get_val_from_xml_or_none( file_information, "Assay" ), data_system_instance_identifier=get_val_from_xml(environment, "Computer"), @@ -81,13 +81,13 @@ def create_metadata(root_element: ET.Element, file_name: str) -> Metadata: equipment_serial_number=get_val_from_xml_or_none( environment, "InstrumentSerialNumber" ), - experimental_data_identifier=get_val_from_xml_or_none( # stored in custom info, should be part of allotrope + experimental_data_identifier=get_val_from_xml_or_none( file_information, "FileName" ), # If any, only one of those should appear, so we arbitrarily take the first one method_version=get_val_from_xml_or_none( file_information, "RINeVersion" - ) # stored in custom info, should be part of allotrope + ) or get_val_from_xml_or_none(file_information, "DINVersion"), software_version=get_val_from_xml_or_none(environment, "AnalysisVersion"), software_name=SOFTWARE_NAME, @@ -115,19 +115,19 @@ def _create_peak(peak_element: ET.Element, unit: str) -> ProcessedDataFeature: end_unit=unit, position=get_float_from_xml_or_none( peak_element, "Size" - ), # stored in custom info, should be part of allotrope + ), position_unit=unit, area=get_float_from_xml_or_none(peak_element, "Area"), relative_area=get_float_from_xml_or_none(peak_element, "PercentOfTotal"), - relative_corrected_area=get_float_from_xml_or_none( # stored in custom info, should be part of allotrope + relative_corrected_area=get_float_from_xml_or_none( peak_element, "PercentIntegratedArea" ), name=get_val_from_xml_or_none( peak_element, "Number" - ), # stored in custom info, should be part of allotrope + ), comment=_get_description( peak_element - ), # stored in custom info, should be part of allotrope + ), ) @@ -145,7 +145,7 @@ def _create_region( name=region_name, comment=get_val_from_xml_or_none( region_element, "Comment" - ), # stored in custom info, should be part of allotrope + ), ) @@ -201,10 +201,10 @@ def _create_measurement( measurement = Measurement( identifier=measurement_id, measurement_time=get_val_from_xml(screen_tape, "TapeRunDate"), - compartment_temperature=get_float_from_xml_or_none( # stored in custom info, should be part of allotrope + compartment_temperature=get_float_from_xml_or_none( screen_tape, "ElectrophoresisTemp" ), - location_identifier=well_number, # stored in custom info, should be part of allotrope + location_identifier=well_number, sample_identifier=f"{get_val_from_xml(sample_element, 'ScreenTapeID')}_{well_number}", description=_get_description(sample_element), processed_data=ProcessedData( From bc67977b05921e6367efdb27826f2ede8b116b68 Mon Sep 17 00:00:00 2001 From: Alejandro Salgado Date: Wed, 9 Oct 2024 16:07:23 -0500 Subject: [PATCH 09/19] remove electrophoresis rec 09/24 --- .../electrophoresis/rec/_2024/_09/__init__.py | 0 .../rec/_2024/_09/electrophoresis.py | 498 - .../rec/_2024/_09/electrophoresis.py | 376 - .../REC/2024/09/electrophoresis.schema.json | 13936 ---------------- 4 files changed, 14810 deletions(-) delete mode 100644 src/allotropy/allotrope/models/adm/electrophoresis/rec/_2024/_09/__init__.py delete mode 100644 src/allotropy/allotrope/models/adm/electrophoresis/rec/_2024/_09/electrophoresis.py delete mode 100644 src/allotropy/allotrope/schema_mappers/adm/electrophoresis/rec/_2024/_09/electrophoresis.py delete mode 100644 src/allotropy/allotrope/schemas/adm/electrophoresis/REC/2024/09/electrophoresis.schema.json diff --git a/src/allotropy/allotrope/models/adm/electrophoresis/rec/_2024/_09/__init__.py b/src/allotropy/allotrope/models/adm/electrophoresis/rec/_2024/_09/__init__.py deleted file mode 100644 index e69de29bb..000000000 diff --git a/src/allotropy/allotrope/models/adm/electrophoresis/rec/_2024/_09/electrophoresis.py b/src/allotropy/allotrope/models/adm/electrophoresis/rec/_2024/_09/electrophoresis.py deleted file mode 100644 index d5aebcbfa..000000000 --- a/src/allotropy/allotrope/models/adm/electrophoresis/rec/_2024/_09/electrophoresis.py +++ /dev/null @@ -1,498 +0,0 @@ -# generated by datamodel-codegen: -# filename: electrophoresis.schema.json -# timestamp: 2024-10-07T20:16:06+00:00 - -from __future__ import annotations - -from dataclasses import dataclass -from typing import Any - -from allotropy.allotrope.models.shared.definitions.custom import ( - TQuantityValueMilliAbsorbanceUnit, - TQuantityValueMilliAbsorbanceUnitTimesMilliliter, - TQuantityValueMilliAbsorbanceUnitTimesSecond, - TQuantityValueMilliliter, - TQuantityValueNanometer, - TQuantityValueNumber, - TQuantityValuePercent, - TQuantityValueRelativeFluorescenceUnit, - TQuantityValueRelativeFluorescenceUnitTimesMilliliter, - TQuantityValueRelativeFluorescenceUnitTimesSecond, - TQuantityValueSecondTime, - TQuantityValueUnitless, -) -from allotropy.allotrope.models.shared.definitions.definitions import ( - TBooleanValue, - TClass, - TDatacube, - TDatacubeData, - TDatacubeStructure, - TDateTimeStampValue, - TDateTimeValue, - TDoubleValue, - TIntegerValue, - TQuantityValue, - TStringValue, - TUnit, -) - - -@dataclass(kw_only=True) -class AdmCoreREC202409ManifestSchema: - vocabulary: list[str] - json_schemas: list[str] - field_id: str | None = None - field_type: str | None = None - shapes: list[str] | None = None - - -@dataclass(kw_only=True) -class OrderedItem: - field_index: int | None = None - - -@dataclass(kw_only=True) -class CustomInformationDocumentItem: - scalar_double_datum: TDoubleValue | None = None - unit: TUnit | None = None - scalar_string_datum: TStringValue | None = None - scalar_timestamp_datum: TDateTimeValue | None = None - scalar_boolean_datum: TBooleanValue | None = None - datum_label: TStringValue | None = None - - -@dataclass(kw_only=True) -class CustomInformationAggregateDocument: - custom_information_document: list[CustomInformationDocumentItem] - - -@dataclass(kw_only=True) -class DataSourceDocumentItem: - data_source_identifier: TStringValue - data_source_feature: TStringValue | None = None - field_index: int | None = None - - -@dataclass(kw_only=True) -class DataSourceAggregateDocument: - data_source_document: list[DataSourceDocumentItem] - - -@dataclass(kw_only=True) -class ElectronicProjectRecord: - written_name: TStringValue - description: Any | None = None - start_time: TDateTimeValue | None = None - - -@dataclass(kw_only=True) -class ElectronicSignatureDocumentItem: - account_identifier: TStringValue - personal_name: TStringValue - signature_role_type: TStringValue - time: TStringValue - identifier: TStringValue | None = None - measurement_identifier: TStringValue | None = None - method_identifier: TStringValue | None = None - processed_data_identifier: TStringValue | None = None - field_index: int | None = None - - -@dataclass(kw_only=True) -class ElectronicSignatureAggregateDocument: - electronic_signature_document: list[ElectronicSignatureDocumentItem] | None = None - - -@dataclass(kw_only=True) -class ErrorDocumentItem: - error: TStringValue - error_feature: TStringValue | None = None - - -@dataclass(kw_only=True) -class ErrorAggregateDocument: - error_document: list[ErrorDocumentItem] | None = None - - -@dataclass(kw_only=True) -class ImageDocumentItem: - experimental_data_identifier: TStringValue | None = None - index: TIntegerValue | None = None - - -@dataclass(kw_only=True) -class ImageAggregateDocument: - image_document: list[ImageDocumentItem] | None = None - - -@dataclass(kw_only=True) -class ProcessedDataAggregateDocument: - processed_data_document: list[ProcessedDataDocumentItem] - custom_information_aggregate_document: CustomInformationAggregateDocument | None = ( - None - ) - electronic_project_record: ElectronicProjectRecord | None = None - - -@dataclass(kw_only=True) -class StatisticsDocumentItem: - statistical_feature: TClass - - -@dataclass(kw_only=True) -class StatisticsAggregateDocument: - statistics_document: list[StatisticsDocumentItem] | None = None - - -@dataclass(kw_only=True) -class AnalysisSequenceDocument: - written_name: TStringValue - end_time: TDateTimeValue | None = None - file_name: TStringValue | None = None - identifier: TStringValue | None = None - method_identifier: TStringValue | None = None - method_name: TStringValue | None = None - start_time: TDateTimeValue | None = None - UNC_path: TStringValue | None = None - version_number: TStringValue | None = None - - -@dataclass(kw_only=True) -class DataSystemDocument: - ASM_file_identifier: TStringValue - data_system_instance_identifier: TStringValue - file_name: TStringValue | None = None - UNC_path: TStringValue | None = None - ASM_converter_name: TStringValue | None = None - ASM_converter_version: TStringValue | None = None - database_primary_key: TStringValue | None = None - software_name: TStringValue | None = None - software_version: TStringValue | None = None - custom_information_aggregate_document: CustomInformationAggregateDocument | None = ( - None - ) - - -@dataclass(kw_only=True) -class DeviceDocumentItem: - device_type: TStringValue - brand_name: TStringValue | None = None - device_identifier: TStringValue | None = None - equipment_serial_number: TStringValue | None = None - firmware_version: TStringValue | None = None - model_number: TStringValue | None = None - product_manufacturer: TStringValue | None = None - written_name: TStringValue | None = None - custom_information_aggregate_document: CustomInformationAggregateDocument | None = ( - None - ) - field_index: int | None = None - - -@dataclass(kw_only=True) -class DeviceSystemDocument: - asset_management_identifier: TStringValue | None = None - brand_name: TStringValue | None = None - description: Any | None = None - device_document: list[DeviceDocumentItem] | None = None - device_identifier: TStringValue | None = None - equipment_serial_number: TStringValue | None = None - firmware_version: TStringValue | None = None - model_number: TStringValue | None = None - product_manufacturer: TStringValue | None = None - custom_information_aggregate_document: CustomInformationAggregateDocument | None = ( - None - ) - - -@dataclass(kw_only=True) -class DiagnosticTraceDocumentItem: - description: Any - custom_information_aggregate_document: CustomInformationAggregateDocument | None = ( - None - ) - - -@dataclass(kw_only=True) -class DiagnosticTraceAggregateDocument: - diagnostic_trace_document: list[DiagnosticTraceDocumentItem] | None = None - custom_information_aggregate_document: CustomInformationAggregateDocument | None = ( - None - ) - - -@dataclass(kw_only=True) -class DeviceControlDocumentItem: - device_type: TStringValue - brand_name: TStringValue | None = None - detection_type: TStringValue | None = None - device_identifier: TStringValue | None = None - equipment_serial_number: TStringValue | None = None - firmware_version: TStringValue | None = None - model_number: TStringValue | None = None - product_manufacturer: TStringValue | None = None - custom_information_aggregate_document: CustomInformationAggregateDocument | None = ( - None - ) - field_index: int | None = None - detector_wavelength_setting: TQuantityValueNanometer | None = None - detector_bandwidth_setting: TQuantityValueNanometer | None = None - electronic_absorbance_wavelength_setting: TQuantityValueNanometer | None = None - electronic_absorbance_bandwidth_setting: TQuantityValueNanometer | None = None - electronic_absorbance_reference_bandwidth_setting: TQuantityValueNanometer | None = ( - None - ) - total_measurement_time_setting: TQuantityValueSecondTime | None = None - read_interval_setting: TQuantityValueSecondTime | None = None - number_of_scans_setting: TQuantityValueNumber | None = None - electronic_absorbance_reference_wavelength_setting: TQuantityValueNanometer | None = ( - None - ) - excitation_wavelength_setting: TQuantityValueNanometer | None = None - excitation_bandwidth_setting: TQuantityValueNanometer | None = None - - -@dataclass(kw_only=True) -class DeviceControlAggregateDocument: - device_control_document: list[DeviceControlDocumentItem] - custom_information_aggregate_document: CustomInformationAggregateDocument | None = ( - None - ) - - -@dataclass(kw_only=True) -class Peak: - custom_information_aggregate_document: CustomInformationAggregateDocument | None = ( - None - ) - peak_end: TQuantityValueMilliliter | TQuantityValueSecondTime | None = None - identifier: TStringValue | None = None - relative_peak_height: TQuantityValuePercent | None = None - written_name: TStringValue | None = None - peak_height: TQuantityValue | TQuantityValueMilliAbsorbanceUnit | None = None - capacity_factor__chromatography_: TQuantityValueUnitless | None = None - peak_area: TQuantityValue | TQuantityValueMilliAbsorbanceUnitTimesMilliliter | TQuantityValueMilliAbsorbanceUnitTimesSecond | None = ( - None - ) - relative_peak_area: TQuantityValuePercent | None = None - retention_time: TQuantityValueSecondTime | None = None - retention_volume: TQuantityValueMilliliter | None = None - peak_start: TQuantityValueMilliliter | TQuantityValueSecondTime | None = None - peak_selectivity__chromatography_: TQuantityValueUnitless | None = None - chromatographic_peak_resolution: TQuantityValueUnitless | None = None - field_index: int | None = None - chromatographic_peak_resolution_using_baseline_peak_widths: TQuantityValueUnitless | None = ( - None - ) - number_of_theoretical_plates_by_peak_width_at_half_height: TQuantityValueUnitless | None = ( - None - ) - number_of_theoretical_plates_by_peak_width_at_half_height__JP14_: TQuantityValueUnitless | None = ( - None - ) - peak_width_at_4_4___of_height: TQuantityValueSecondTime | None = None - peak_width_at_13_4___of_height: TQuantityValueSecondTime | None = None - peak_width_at_32_4___of_height: TQuantityValueSecondTime | None = None - peak_width_at_60_7___of_height: TQuantityValueSecondTime | None = None - peak_width_at_half_height: TQuantityValueSecondTime | None = None - peak_width_at_5___of_height: TQuantityValueSecondTime | None = None - peak_width_at_baseline: TQuantityValueSecondTime | None = None - peak_width_at_inflection: TQuantityValueSecondTime | None = None - peak_width_at_10___of_height: TQuantityValueSecondTime | None = None - peak_width: TQuantityValueSecondTime | None = None - statistical_skew__chromatography_: TQuantityValueUnitless | None = None - asymmetry_factor_measured_at_5___height: TQuantityValueUnitless | None = None - asymmetry_factor_measured_at_10___height: TQuantityValueUnitless | None = None - asymmetry_factor_squared_measured_at_10___height: TQuantityValueUnitless | None = ( - None - ) - asymmetry_factor_squared_measured_at_4_4___height: TQuantityValueUnitless | None = ( - None - ) - asymmetry_factor_measured_at_4_4___height: TQuantityValueUnitless | None = None - asymmetry_factor_measured_at_baseline: TQuantityValueUnitless | None = None - chromatographic_peak_asymmetry_factor: TQuantityValueUnitless | None = None - chromatographic_peak_resolution_using_peak_width_at_half_height: TQuantityValueUnitless | None = ( - None - ) - chromatographic_peak_resolution_using_statistical_moments: TQuantityValueUnitless | None = ( - None - ) - number_of_theoretical_plates__chromatography_: TQuantityValueUnitless | None = None - number_of_theoretical_plates_measured_at_60_7___of_peak_height: TQuantityValueUnitless | None = ( - None - ) - number_of_theoretical_plates_measured_at_32_4___of_peak_height: TQuantityValueUnitless | None = ( - None - ) - number_of_theoretical_plates_measured_at_13_4___of_peak_height: TQuantityValueUnitless | None = ( - None - ) - number_of_theoretical_plates_measured_at_4_4___of_peak_height: TQuantityValueUnitless | None = ( - None - ) - number_of_theoretical_plates_by_tangent_method: TQuantityValueUnitless | None = None - - -@dataclass(kw_only=True) -class PeakList: - custom_information_aggregate_document: CustomInformationAggregateDocument | None = ( - None - ) - peak: list[PeakItem] | list[Peak] | None = None - - -@dataclass(kw_only=True) -class DataRegionDocumentItem: - custom_information_aggregate_document: CustomInformationAggregateDocument | None = ( - None - ) - data_region_end: TQuantityValueMilliliter | TQuantityValueSecondTime | None = None - data_region_identifier: TStringValue | None = None - data_region_name: TStringValue | None = None - data_region_area: TQuantityValue | None = None - relative_data_region_area: TQuantityValuePercent | None = None - data_region_start: TQuantityValueMilliliter | TQuantityValueSecondTime | None = None - field_index: int | None = None - - -@dataclass(kw_only=True) -class DataRegionAggregateDocument: - custom_information_aggregate_document: CustomInformationAggregateDocument | None = ( - None - ) - data_region_document: list[DataRegionDocumentItem] | None = None - - -@dataclass(kw_only=True) -class SampleDocument: - sample_identifier: TStringValue - batch_identifier: TStringValue | None = None - description: Any | None = None - sample_role_type: TClass | None = None - written_name: TStringValue | None = None - custom_information_aggregate_document: CustomInformationAggregateDocument | None = ( - None - ) - - -@dataclass(kw_only=True) -class PeakItem(OrderedItem): - peak_height: TQuantityValueRelativeFluorescenceUnit | None = None - peak_area: TQuantityValueRelativeFluorescenceUnitTimesMilliliter | TQuantityValueRelativeFluorescenceUnitTimesSecond | None = ( - None - ) - - -@dataclass(kw_only=True) -class CalculatedDataDocumentItem: - calculated_data_name: TStringValue - calculated_result: TQuantityValue - calculated_data_identifier: TStringValue | None = None - calculation_description: TStringValue | None = None - data_source_aggregate_document: DataSourceAggregateDocument | None = None - electronic_project_record: ElectronicProjectRecord | None = None - field_index: int | None = None - - -@dataclass(kw_only=True) -class CalculatedDataAggregateDocument: - calculated_data_document: list[CalculatedDataDocumentItem] - - -@dataclass(kw_only=True) -class ElectropherogramDataCube: - label: str | None = None - cube_structure: TDatacubeStructure | None = None - data: TDatacubeData | None = None - - -@dataclass(kw_only=True) -class ProcessedDataDocumentItem: - custom_information_aggregate_document: CustomInformationAggregateDocument | None = ( - None - ) - data_processing_document: dict[str, Any] | None = None - data_source_aggregate_document: DataSourceAggregateDocument | None = None - electronic_project_record: ElectronicProjectRecord | None = None - processed_data_identifier: TStringValue | None = None - field_index: int | None = None - peak_list: PeakList | None = None - data_region_aggregate_document: DataRegionAggregateDocument | None = None - derived_electropherogram_data_cube: TDatacube | None = None - - -@dataclass(kw_only=True) -class MeasurementDocument: - device_control_aggregate_document: DeviceControlAggregateDocument - sample_document: SampleDocument - electropherogram_data_cube: ElectropherogramDataCube | TDatacube | None = None - calculated_data_aggregate_document: CalculatedDataAggregateDocument | None = None - custom_information_aggregate_document: CustomInformationAggregateDocument | None = ( - None - ) - detection_type: TStringValue | None = None - electronic_project_record: ElectronicProjectRecord | None = None - error_aggregate_document: ErrorAggregateDocument | None = None - image_aggregate_document: ImageAggregateDocument | None = None - measurement_identifier: TStringValue | None = None - measurement_time: TDateTimeStampValue | None = None - processed_data_aggregate_document: ProcessedDataAggregateDocument | None = None - statistics_aggregate_document: StatisticsAggregateDocument | None = None - absorption_profile_data_cube: TDatacube | None = None - chromatogram_data_cube: TDatacube | None = None - three_dimensional_ultraviolet_spectrum_data_cube: TDatacube | None = None - processed_data_document: ProcessedDataDocument | None = None - fluorescence_emission_profile_data_cube: TDatacube | None = None - - -@dataclass(kw_only=True) -class ProcessedDataDocument: - peak_list: PeakList | None = None - derived_electropherogram_data_cube: TDatacube | None = None - - -@dataclass(kw_only=True) -class MeasurementAggregateDocument: - measurement_document: list[MeasurementDocument] - calculated_data_aggregate_document: CalculatedDataAggregateDocument | None = None - custom_information_aggregate_document: CustomInformationAggregateDocument | None = ( - None - ) - diagnostic_trace_aggregate_document: DiagnosticTraceAggregateDocument | None = None - error_aggregate_document: ErrorAggregateDocument | None = None - image_aggregate_document: ImageAggregateDocument | None = None - processed_data_aggregate_document: ProcessedDataAggregateDocument | None = None - statistics_aggregate_document: StatisticsAggregateDocument | None = None - - -@dataclass(kw_only=True) -class ElectrophoresisDocumentItem: - analyst: TStringValue - measurement_aggregate_document: MeasurementAggregateDocument - electronic_project_record: ElectronicProjectRecord | None = None - submitter: TStringValue | None = None - - -@dataclass(kw_only=True) -class ElectrophoresisAggregateDocument: - electrophoresis_document: list[ElectrophoresisDocumentItem] - analysis_sequence_document: AnalysisSequenceDocument | None = None - calculated_data_aggregate_document: CalculatedDataAggregateDocument | None = None - custom_information_aggregate_document: CustomInformationAggregateDocument | None = ( - None - ) - data_system_document: DataSystemDocument | None = None - device_system_document: DeviceSystemDocument | None = None - electronic_project_record: ElectronicProjectRecord | None = None - electronic_signature_aggregate_document: ElectronicSignatureAggregateDocument | None = ( - None - ) - processed_data_aggregate_document: ProcessedDataAggregateDocument | None = None - statistics_aggregate_document: StatisticsAggregateDocument | None = None - - -@dataclass(kw_only=True) -class Model: - field_asm_manifest: AdmCoreREC202409ManifestSchema | str - electrophoresis_aggregate_document: ElectrophoresisAggregateDocument | None = None diff --git a/src/allotropy/allotrope/schema_mappers/adm/electrophoresis/rec/_2024/_09/electrophoresis.py b/src/allotropy/allotrope/schema_mappers/adm/electrophoresis/rec/_2024/_09/electrophoresis.py deleted file mode 100644 index b7a1d4350..000000000 --- a/src/allotropy/allotrope/schema_mappers/adm/electrophoresis/rec/_2024/_09/electrophoresis.py +++ /dev/null @@ -1,376 +0,0 @@ -from dataclasses import dataclass -from typing import Any - -from allotropy.allotrope.converter import add_custom_information_document -from allotropy.allotrope.models.adm.electrophoresis.rec._2024._09.electrophoresis import ( - CalculatedDataAggregateDocument, - CalculatedDataDocumentItem, - DataRegionAggregateDocument, - DataRegionDocumentItem, - DataSourceAggregateDocument, - DataSourceDocumentItem, - DataSystemDocument, - DeviceControlAggregateDocument, - DeviceControlDocumentItem, - DeviceSystemDocument, - ElectrophoresisAggregateDocument, - ElectrophoresisDocumentItem, - ErrorAggregateDocument, - ErrorDocumentItem, - MeasurementAggregateDocument, - MeasurementDocument, - Model, - Peak, - PeakList, - ProcessedDataAggregateDocument, - ProcessedDataDocumentItem, - SampleDocument, -) -from allotropy.allotrope.models.shared.definitions.custom import ( - TQuantityValueDegreeCelsius, - TQuantityValuePercent, - TQuantityValueRelativeFluorescenceUnit, - TQuantityValueUnitless, -) -from allotropy.allotrope.models.shared.definitions.definitions import ( - JsonFloat, - TQuantityValue, -) -from allotropy.allotrope.schema_mappers.schema_mapper import SchemaMapper -from allotropy.constants import ASM_CONVERTER_VERSION -from allotropy.parsers.utils.values import ( - quantity_or_none, - quantity_or_none_from_unit, -) - - -@dataclass(frozen=True) -class ProcessedDataFeature: - identifier: str - start: JsonFloat - start_unit: str - end: JsonFloat - end_unit: str - area: JsonFloat - relative_area: JsonFloat - position: JsonFloat | None = None - position_unit: str | None = None - height: JsonFloat | None = None - relative_corrected_area: JsonFloat | None = None - name: str | None = None - comment: str | None = None - - -@dataclass(frozen=True) -class ProcessedData: - peaks: list[ProcessedDataFeature] - data_regions: list[ProcessedDataFeature] - - -@dataclass(frozen=True) -class DataSource: - identifier: str - feature: str - - -@dataclass(frozen=True) -class CalculatedDataItem: - identifier: str - name: str - value: float - unit: str - data_sources: list[DataSource] - - -@dataclass(frozen=True) -class Error: - error: str - feature: str | None = None - - -@dataclass(frozen=True) -class Measurement: - # Measurement metadata - identifier: str - measurement_time: str - sample_identifier: str - - # Processed data - processed_data: ProcessedData - - # Optional metadata - description: str | None = None - location_identifier: str | None = None - - # Optional settings - compartment_temperature: float | None = None - - # Optional processed data - calculated_data: list[CalculatedDataItem] | None = None - - # Errors - errors: list[Error] | None = None - - -@dataclass(frozen=True) -class MeasurementGroup: - measurements: list[Measurement] - - -@dataclass(frozen=True) -class Metadata: - device_type: str - data_system_instance_identifier: str - analyst: str - file_identifier: str - - device_identifier: str | None = None - model_number: str | None = None - software_name: str | None = None - detection_type: str | None = None - unc_path: str | None = None - software_version: str | None = None - equipment_serial_number: str | None = None - product_manufacturer: str | None = None - brand_name: str | None = None - - file_name: str | None = None - - measurement_time: str | None = None - analytical_method_identifier: str | None = None - method_version: str | None = None - experimental_data_identifier: str | None = None - - -@dataclass(frozen=True) -class Data: - metadata: Metadata - measurement_groups: list[MeasurementGroup] - calculated_data: list[CalculatedDataItem] | None = None - - -class Mapper(SchemaMapper[Data, Model]): - MANIFEST = "http://purl.allotrope.org/manifests/electrophoresis/REC/2024/09/electrophoresis.manifest" - - def map_model(self, data: Data) -> Model: - return Model( - electrophoresis_aggregate_document=ElectrophoresisAggregateDocument( - device_system_document=DeviceSystemDocument( - brand_name=data.metadata.brand_name, - product_manufacturer=data.metadata.product_manufacturer, - device_identifier=data.metadata.device_identifier, - equipment_serial_number=data.metadata.equipment_serial_number, - ), - data_system_document=DataSystemDocument( - data_system_instance_identifier=data.metadata.data_system_instance_identifier, - file_name=data.metadata.file_name, - software_name=data.metadata.software_name, - software_version=data.metadata.software_version, - ASM_converter_name=self.converter_name, - ASM_converter_version=ASM_CONVERTER_VERSION, - ASM_file_identifier=data.metadata.file_identifier, - ), - electrophoresis_document=[ - add_custom_information_document( - self._get_technique_document(measurement_group, data.metadata), - self._get_technique_doc_custom_document(data.metadata), - ) - for measurement_group in data.measurement_groups - ], - calculated_data_aggregate_document=self._get_calculated_data_aggregate_document( - data.calculated_data - ), - ), - field_asm_manifest=self.MANIFEST, - ) - - def _get_technique_doc_custom_document(self, metadata: Metadata) -> dict[str, Any]: - # TODO(ASM gaps): we believe these values should be introduced to ASM. - return { - "analytical method identifier": metadata.analytical_method_identifier, - "method version": metadata.method_version, - "experimental data identifier": metadata.experimental_data_identifier, - } - - def _get_technique_document( - self, measurement_group: MeasurementGroup, metadata: Metadata - ) -> ElectrophoresisDocumentItem: - return ElectrophoresisDocumentItem( - analyst=metadata.analyst, - measurement_aggregate_document=MeasurementAggregateDocument( - measurement_document=[ - add_custom_information_document( - self._get_measurement_document_item(measurement, metadata), - self._get_measurement_custom_document(measurement), - ) - for measurement in measurement_group.measurements - ], - ), - ) - - def _get_measurement_custom_document( - self, measurement: Measurement - ) -> dict[str, Any]: - # TODO(ASM gaps): we believe these values should be introduced to ASM. - return { - "compartment temperature": quantity_or_none( - TQuantityValueDegreeCelsius, - measurement.compartment_temperature, - ), - } - - def _get_measurement_document_item( - self, measurement: Measurement, metadata: Metadata - ) -> MeasurementDocument: - return MeasurementDocument( - measurement_identifier=measurement.identifier, - measurement_time=self.get_date_time(measurement.measurement_time), - device_control_aggregate_document=DeviceControlAggregateDocument( - device_control_document=[ - DeviceControlDocumentItem( - device_identifier=metadata.device_identifier, - device_type=metadata.device_type, - detection_type=metadata.detection_type, - ), - ] - ), - sample_document=add_custom_information_document( - self._get_sample_document(measurement), - self._get_measurement_custom_document(measurement), - ), - error_aggregate_document=self._get_error_aggregate_document( - measurement.errors - ), - processed_data_aggregate_document=self._get_processed_data_aggregate_document( - measurement.processed_data - ), - calculated_data_aggregate_document=self._get_calculated_data_aggregate_document( - measurement.calculated_data - ), - ) - - def _get_sample_document(self, measurement: Measurement) -> SampleDocument: - return SampleDocument( - sample_identifier=measurement.sample_identifier, - description=measurement.description, - ) - - def _get_sample_custom_document(self, measurement: Measurement) -> dict[str, Any]: - # TODO(ASM gaps): we believe these values should be introduced to ASM. - return { - "location identifier": measurement.location_identifier, - } - - def _get_processed_data_aggregate_document( - self, data: ProcessedData - ) -> ProcessedDataAggregateDocument: - return ProcessedDataAggregateDocument( - processed_data_document=[ - ProcessedDataDocumentItem( - peak_list=PeakList( - peak=[self._get_peak(peak) for peak in data.peaks] - ), - data_region_aggregate_document=DataRegionAggregateDocument( - data_region_document=[ - self._get_data_region_agg_document(data_region) - for data_region in data.data_regions - ] - ) - if data.data_regions - else None, - ) - ] - ) - - def _get_peak(self, peak: ProcessedDataFeature) -> Peak: - return Peak( - identifier=peak.identifier, - peak_height=quantity_or_none( - TQuantityValueRelativeFluorescenceUnit, peak.height - ), - # TODO(nstender): figure out how to limit possible classes from get_quantity_class for typing. - peak_start=quantity_or_none_from_unit(peak.start_unit, peak.start), # type: ignore[arg-type] - peak_end=quantity_or_none_from_unit(peak.end_unit, peak.end), # type: ignore[arg-type] - peak_area=quantity_or_none(TQuantityValueUnitless, peak.area), - relative_peak_area=quantity_or_none( - TQuantityValuePercent, peak.relative_area - ), - ) - - def _get_peak_custom_document(self, peak: ProcessedDataFeature) -> dict[str, Any]: - # TODO(ASM gaps): we believe these values should be introduced to ASM. - return { - "peak name": peak.name, - "peak position": quantity_or_none_from_unit( - peak.position_unit, peak.position - ), - "relative corrected peak area": quantity_or_none( - TQuantityValuePercent, peak.relative_corrected_area - ), - "comment": peak.comment, - } - - def _get_data_region_agg_document( - self, data_region: ProcessedDataFeature - ) -> DataRegionDocumentItem: - return DataRegionDocumentItem( - data_region_identifier=data_region.identifier, - data_region_name=data_region.name, - # TODO(nstender): figure out how to limit possible classes from get_quantity_class for typing. - data_region_start=quantity_or_none_from_unit(data_region.start_unit, data_region.start), # type: ignore[arg-type] - data_region_end=quantity_or_none_from_unit(data_region.end_unit, data_region.end), # type: ignore[arg-type] - data_region_area=TQuantityValueUnitless(value=data_region.area), - relative_data_region_area=TQuantityValuePercent( - value=data_region.relative_area - ), - ) - - def _get_data_region_agg_custom_document( - self, data_region: ProcessedDataFeature - ) -> dict[str, Any]: - # TODO(ASM gaps): we believe these values should be introduced to ASM. - return { - "comment": data_region.comment, - } - - def _get_calculated_data_aggregate_document( - self, calculated_data_items: list[CalculatedDataItem] | None - ) -> CalculatedDataAggregateDocument | None: - if not calculated_data_items: - return None - - return CalculatedDataAggregateDocument( - calculated_data_document=[ - CalculatedDataDocumentItem( - calculated_data_identifier=calculated_data_item.identifier, - calculated_data_name=calculated_data_item.name, - calculated_result=TQuantityValue( - value=calculated_data_item.value, - unit=calculated_data_item.unit, - ), - data_source_aggregate_document=DataSourceAggregateDocument( - data_source_document=[ - DataSourceDocumentItem( - data_source_identifier=item.identifier, - data_source_feature=item.feature, - ) - for item in calculated_data_item.data_sources - ] - ), - ) - for calculated_data_item in calculated_data_items - ] - ) - - def _get_error_aggregate_document( - self, errors: list[Error] | None - ) -> ErrorAggregateDocument | None: - if not errors: - return None - - return ErrorAggregateDocument( - error_document=[ - ErrorDocumentItem(error=error.error, error_feature=error.feature) - for error in errors - ] - ) diff --git a/src/allotropy/allotrope/schemas/adm/electrophoresis/REC/2024/09/electrophoresis.schema.json b/src/allotropy/allotrope/schemas/adm/electrophoresis/REC/2024/09/electrophoresis.schema.json deleted file mode 100644 index cccce61d5..000000000 --- a/src/allotropy/allotrope/schemas/adm/electrophoresis/REC/2024/09/electrophoresis.schema.json +++ /dev/null @@ -1,13936 +0,0 @@ -{ - "$id": "http://purl.allotrope.org/json-schemas/adm/electrophoresis/REC/2024/09/electrophoresis.embed.schema", - "$schema": "https://json-schema.org/draft/2020-12/schema", - "allOf": [ - { - "properties": { - "electrophoresis aggregate document": { - "allOf": [ - { - "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/hierarchy.schema#/$defs/techniqueAggregateDocument" - }, - { - "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0003016", - "properties": { - "electrophoresis document": { - "$asm.array-mixed": false, - "$asm.array-ordered": true, - "$asm.pattern": "indexed datum", - "type": "array", - "minItems": 1, - "items": { - "allOf": [ - { - "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/hierarchy.schema#/$defs/techniqueDocument" - }, - { - "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0003017", - "properties": { - "measurement aggregate document": { - "properties": { - "measurement document": { - "items": { - "allOf": [ - { - "properties": { - "processed data aggregate document": { - "properties": { - "processed data document": { - "items": { - "properties": { - "peak list": { - "type": "object", - "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0000432", - "$asm.pattern": "aggregate datum", - "properties": { - "custom information aggregate document": { - "allOf": [ - { - "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/hierarchy.schema#/$defs/customInformationAggregateDocument" - } - ] - }, - "peak": { - "type": "array", - "$asm.array-ordered": true, - "$asm.array-mixed": false, - "$asm.pattern": "indexed datum", - "items": { - "allOf": [ - { - "type": "object", - "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0000413", - "$asm.pattern": "aggregate datum", - "properties": { - "custom information aggregate document": { - "allOf": [ - { - "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/hierarchy.schema#/$defs/customInformationAggregateDocument" - } - ] - }, - "peak end": { - "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0001180", - "$asm.pattern": "quantity datum", - "allOf": [ - { - "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/core.schema#/$defs/tQuantityValue" - }, - { - "oneOf": [ - { - "$ref": "http://purl.allotrope.org/json-schemas/qudt/REC/2024/09/units.schema#/$defs/s" - }, - { - "$ref": "http://purl.allotrope.org/json-schemas/qudt/REC/2024/09/units.schema#/$defs/mL" - } - ] - } - ] - }, - "identifier": { - "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0000917", - "$asm.pattern": "value datum", - "$asm.type": "http://www.w3.org/2001/XMLSchema#string", - "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/core.schema#/$defs/tStringValue" - }, - "relative peak height": { - "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0000949", - "$asm.pattern": "quantity datum", - "allOf": [ - { - "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/core.schema#/$defs/tQuantityValue" - }, - { - "$ref": "http://purl.allotrope.org/json-schemas/qudt/REC/2024/09/units.schema#/$defs/%25" - } - ] - }, - "written name": { - "$asm.property-class": "http://purl.obolibrary.org/obo/IAO_0000590", - "$asm.pattern": "value datum", - "$asm.type": "http://www.w3.org/2001/XMLSchema#string", - "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/core.schema#/$defs/tStringValue" - }, - "peak height": { - "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0000948", - "$asm.pattern": "quantity datum", - "allOf": [ - { - "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/core.schema#/$defs/tQuantityValue" - } - ] - }, - "capacity factor (chromatography)": { - "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0001234", - "$asm.pattern": "quantity datum", - "allOf": [ - { - "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/core.schema#/$defs/tQuantityValue" - }, - { - "$ref": "http://purl.allotrope.org/json-schemas/qudt/REC/2024/09/units.schema#/$defs/(unitless)" - } - ] - }, - "peak area": { - "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0001073", - "$asm.pattern": "quantity datum", - "allOf": [ - { - "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/core.schema#/$defs/tQuantityValue" - } - ] - }, - "relative peak area": { - "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0001165", - "$asm.pattern": "quantity datum", - "allOf": [ - { - "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/core.schema#/$defs/tQuantityValue" - }, - { - "$ref": "http://purl.allotrope.org/json-schemas/qudt/REC/2024/09/units.schema#/$defs/%25" - } - ] - }, - "retention time": { - "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0001089", - "$asm.pattern": "quantity datum", - "allOf": [ - { - "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/core.schema#/$defs/tQuantityValue" - }, - { - "$ref": "http://purl.allotrope.org/json-schemas/qudt/REC/2024/09/units.schema#/$defs/s" - } - ] - }, - "retention volume": { - "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0001089", - "$asm.pattern": "quantity datum", - "allOf": [ - { - "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/core.schema#/$defs/tQuantityValue" - }, - { - "$ref": "http://purl.allotrope.org/json-schemas/qudt/REC/2024/09/units.schema#/$defs/mL" - } - ] - }, - "peak start": { - "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0001178", - "$asm.pattern": "quantity datum", - "allOf": [ - { - "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/core.schema#/$defs/tQuantityValue" - }, - { - "oneOf": [ - { - "$ref": "http://purl.allotrope.org/json-schemas/qudt/REC/2024/09/units.schema#/$defs/s" - }, - { - "$ref": "http://purl.allotrope.org/json-schemas/qudt/REC/2024/09/units.schema#/$defs/mL" - } - ] - } - ] - }, - "peak selectivity (chromatography)": { - "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0001235", - "$asm.pattern": "quantity datum", - "allOf": [ - { - "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/core.schema#/$defs/tQuantityValue" - }, - { - "$ref": "http://purl.allotrope.org/json-schemas/qudt/REC/2024/09/units.schema#/$defs/(unitless)" - } - ] - } - }, - "anyOf": [ - { - "properties": { - "chromatographic peak resolution": { - "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0001230", - "$asm.pattern": "quantity datum", - "allOf": [ - { - "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/core.schema#/$defs/tQuantityValue" - }, - { - "$ref": "http://purl.allotrope.org/json-schemas/qudt/REC/2024/09/units.schema#/$defs/(unitless)" - } - ] - } - } - }, - { - "properties": { - "chromatographic peak resolution using baseline peak widths": { - "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0001231", - "$asm.pattern": "quantity datum", - "allOf": [ - { - "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/core.schema#/$defs/tQuantityValue" - }, - { - "$ref": "http://purl.allotrope.org/json-schemas/qudt/REC/2024/09/units.schema#/$defs/(unitless)" - } - ] - } - } - }, - { - "properties": { - "chromatographic peak resolution using peak width at half-height": { - "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0001232", - "$asm.pattern": "quantity datum", - "allOf": [ - { - "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/core.schema#/$defs/tQuantityValue" - }, - { - "$ref": "http://purl.allotrope.org/json-schemas/qudt/REC/2024/09/units.schema#/$defs/(unitless)" - } - ] - } - } - }, - { - "properties": { - "chromatographic peak resolution using statistical moments": { - "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0001233", - "$asm.pattern": "quantity datum", - "allOf": [ - { - "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/core.schema#/$defs/tQuantityValue" - }, - { - "$ref": "http://purl.allotrope.org/json-schemas/qudt/REC/2024/09/units.schema#/$defs/(unitless)" - } - ] - } - } - }, - { - "properties": { - "number of theoretical plates (chromatography)": { - "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0001239", - "$asm.pattern": "quantity datum", - "allOf": [ - { - "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/core.schema#/$defs/tQuantityValue" - }, - { - "$ref": "http://purl.allotrope.org/json-schemas/qudt/REC/2024/09/units.schema#/$defs/(unitless)" - } - ] - } - } - }, - { - "properties": { - "number of theoretical plates measured at 60.7 % of peak height": { - "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0002780", - "$asm.pattern": "quantity datum", - "allOf": [ - { - "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/core.schema#/$defs/tQuantityValue" - }, - { - "$ref": "http://purl.allotrope.org/json-schemas/qudt/REC/2024/09/units.schema#/$defs/(unitless)" - } - ] - } - } - }, - { - "properties": { - "number of theoretical plates measured at 32.4 % of peak height": { - "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0002781", - "$asm.pattern": "quantity datum", - "allOf": [ - { - "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/core.schema#/$defs/tQuantityValue" - }, - { - "$ref": "http://purl.allotrope.org/json-schemas/qudt/REC/2024/09/units.schema#/$defs/(unitless)" - } - ] - } - } - }, - { - "properties": { - "number of theoretical plates measured at 13.4 % of peak height": { - "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0002782", - "$asm.pattern": "quantity datum", - "allOf": [ - { - "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/core.schema#/$defs/tQuantityValue" - }, - { - "$ref": "http://purl.allotrope.org/json-schemas/qudt/REC/2024/09/units.schema#/$defs/(unitless)" - } - ] - } - } - }, - { - "properties": { - "number of theoretical plates measured at 4.4 % of peak height": { - "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0002783", - "$asm.pattern": "quantity datum", - "allOf": [ - { - "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/core.schema#/$defs/tQuantityValue" - }, - { - "$ref": "http://purl.allotrope.org/json-schemas/qudt/REC/2024/09/units.schema#/$defs/(unitless)" - } - ] - } - } - }, - { - "properties": { - "number of theoretical plates by tangent method": { - "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0001240", - "$asm.pattern": "quantity datum", - "allOf": [ - { - "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/core.schema#/$defs/tQuantityValue" - }, - { - "$ref": "http://purl.allotrope.org/json-schemas/qudt/REC/2024/09/units.schema#/$defs/(unitless)" - } - ] - } - } - }, - { - "properties": { - "number of theoretical plates by peak width at half height": { - "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0001241", - "$asm.pattern": "quantity datum", - "allOf": [ - { - "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/core.schema#/$defs/tQuantityValue" - }, - { - "$ref": "http://purl.allotrope.org/json-schemas/qudt/REC/2024/09/units.schema#/$defs/(unitless)" - } - ] - } - } - }, - { - "properties": { - "number of theoretical plates by peak width at half height (JP14)": { - "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0002807", - "$asm.pattern": "quantity datum", - "allOf": [ - { - "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/core.schema#/$defs/tQuantityValue" - }, - { - "$ref": "http://purl.allotrope.org/json-schemas/qudt/REC/2024/09/units.schema#/$defs/(unitless)" - } - ] - } - } - }, - { - "properties": { - "peak width at 4.4 % of height": { - "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0002784", - "$asm.pattern": "quantity datum", - "allOf": [ - { - "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/core.schema#/$defs/tQuantityValue" - }, - { - "$ref": "http://purl.allotrope.org/json-schemas/qudt/REC/2024/09/units.schema#/$defs/s" - } - ] - } - } - }, - { - "properties": { - "peak width at 13.4 % of height": { - "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0002785", - "$asm.pattern": "quantity datum", - "allOf": [ - { - "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/core.schema#/$defs/tQuantityValue" - }, - { - "$ref": "http://purl.allotrope.org/json-schemas/qudt/REC/2024/09/units.schema#/$defs/s" - } - ] - } - } - }, - { - "properties": { - "peak width at 32.4 % of height": { - "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0002786", - "$asm.pattern": "quantity datum", - "allOf": [ - { - "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/core.schema#/$defs/tQuantityValue" - }, - { - "$ref": "http://purl.allotrope.org/json-schemas/qudt/REC/2024/09/units.schema#/$defs/s" - } - ] - } - } - }, - { - "properties": { - "peak width at 60.7 % of height": { - "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0002787", - "$asm.pattern": "quantity datum", - "allOf": [ - { - "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/core.schema#/$defs/tQuantityValue" - }, - { - "$ref": "http://purl.allotrope.org/json-schemas/qudt/REC/2024/09/units.schema#/$defs/s" - } - ] - } - } - }, - { - "properties": { - "peak width at half height": { - "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0001266", - "$asm.pattern": "quantity datum", - "allOf": [ - { - "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/core.schema#/$defs/tQuantityValue" - }, - { - "$ref": "http://purl.allotrope.org/json-schemas/qudt/REC/2024/09/units.schema#/$defs/s" - } - ] - } - } - }, - { - "properties": { - "peak width at 5 % of height": { - "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0001265", - "$asm.pattern": "quantity datum", - "allOf": [ - { - "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/core.schema#/$defs/tQuantityValue" - }, - { - "$ref": "http://purl.allotrope.org/json-schemas/qudt/REC/2024/09/units.schema#/$defs/s" - } - ] - } - } - }, - { - "properties": { - "peak width at baseline": { - "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0001264", - "$asm.pattern": "quantity datum", - "allOf": [ - { - "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/core.schema#/$defs/tQuantityValue" - }, - { - "$ref": "http://purl.allotrope.org/json-schemas/qudt/REC/2024/09/units.schema#/$defs/s" - } - ] - } - } - }, - { - "properties": { - "peak width at inflection": { - "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0002761", - "$asm.pattern": "quantity datum", - "allOf": [ - { - "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/core.schema#/$defs/tQuantityValue" - }, - { - "$ref": "http://purl.allotrope.org/json-schemas/qudt/REC/2024/09/units.schema#/$defs/s" - } - ] - } - } - }, - { - "properties": { - "peak width at 10 % of height": { - "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0002511", - "$asm.pattern": "quantity datum", - "allOf": [ - { - "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/core.schema#/$defs/tQuantityValue" - }, - { - "$ref": "http://purl.allotrope.org/json-schemas/qudt/REC/2024/09/units.schema#/$defs/s" - } - ] - } - } - }, - { - "properties": { - "peak width": { - "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0001075", - "$asm.pattern": "quantity datum", - "allOf": [ - { - "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/core.schema#/$defs/tQuantityValue" - }, - { - "$ref": "http://purl.allotrope.org/json-schemas/qudt/REC/2024/09/units.schema#/$defs/s" - } - ] - } - } - }, - { - "properties": { - "statistical skew (chromatography)": { - "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0001238", - "$asm.pattern": "quantity datum", - "allOf": [ - { - "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/core.schema#/$defs/tQuantityValue" - }, - { - "$ref": "http://purl.allotrope.org/json-schemas/qudt/REC/2024/09/units.schema#/$defs/(unitless)" - } - ] - } - } - }, - { - "properties": { - "asymmetry factor measured at 5 % height": { - "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0001237", - "$asm.pattern": "quantity datum", - "allOf": [ - { - "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/core.schema#/$defs/tQuantityValue" - }, - { - "$ref": "http://purl.allotrope.org/json-schemas/qudt/REC/2024/09/units.schema#/$defs/(unitless)" - } - ] - } - } - }, - { - "properties": { - "asymmetry factor measured at 10 % height": { - "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0002512", - "$asm.pattern": "quantity datum", - "allOf": [ - { - "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/core.schema#/$defs/tQuantityValue" - }, - { - "$ref": "http://purl.allotrope.org/json-schemas/qudt/REC/2024/09/units.schema#/$defs/(unitless)" - } - ] - } - } - }, - { - "properties": { - "asymmetry factor squared measured at 10 % height": { - "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0002778", - "$asm.pattern": "quantity datum", - "allOf": [ - { - "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/core.schema#/$defs/tQuantityValue" - }, - { - "$ref": "http://purl.allotrope.org/json-schemas/qudt/REC/2024/09/units.schema#/$defs/(unitless)" - } - ] - } - } - }, - { - "properties": { - "asymmetry factor squared measured at 4.4 % height": { - "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0002777", - "$asm.pattern": "quantity datum", - "allOf": [ - { - "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/core.schema#/$defs/tQuantityValue" - }, - { - "$ref": "http://purl.allotrope.org/json-schemas/qudt/REC/2024/09/units.schema#/$defs/(unitless)" - } - ] - } - } - }, - { - "properties": { - "asymmetry factor measured at 4.4 % height": { - "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0002776", - "$asm.pattern": "quantity datum", - "allOf": [ - { - "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/core.schema#/$defs/tQuantityValue" - }, - { - "$ref": "http://purl.allotrope.org/json-schemas/qudt/REC/2024/09/units.schema#/$defs/(unitless)" - } - ] - } - } - }, - { - "properties": { - "asymmetry factor measured at baseline": { - "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0002779", - "$asm.pattern": "quantity datum", - "allOf": [ - { - "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/core.schema#/$defs/tQuantityValue" - }, - { - "$ref": "http://purl.allotrope.org/json-schemas/qudt/REC/2024/09/units.schema#/$defs/(unitless)" - } - ] - } - } - }, - { - "properties": { - "chromatographic peak asymmetry factor": { - "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0001236", - "$asm.pattern": "quantity datum", - "allOf": [ - { - "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/core.schema#/$defs/tQuantityValue" - }, - { - "$ref": "http://purl.allotrope.org/json-schemas/qudt/REC/2024/09/units.schema#/$defs/(unitless)" - } - ] - } - } - } - ] - }, - { - "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/core.schema#/$defs/orderedItem" - } - ] - }, - "minItems": 0 - } - } - }, - "data region aggregate document": { - "type": "object", - "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0003055", - "$asm.pattern": "aggregate datum", - "properties": { - "custom information aggregate document": { - "allOf": [ - { - "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/hierarchy.schema#/$defs/customInformationAggregateDocument" - } - ] - }, - "data region document": { - "type": "array", - "$asm.array-ordered": true, - "$asm.array-mixed": false, - "$asm.pattern": "indexed datum", - "items": { - "allOf": [ - { - "type": "object", - "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0003056", - "$asm.pattern": "aggregate datum", - "properties": { - "custom information aggregate document": { - "allOf": [ - { - "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/hierarchy.schema#/$defs/customInformationAggregateDocument" - } - ] - }, - "data region end": { - "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0003008", - "$asm.pattern": "quantity datum", - "allOf": [ - { - "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/core.schema#/$defs/tQuantityValue" - }, - { - "oneOf": [ - { - "$ref": "http://purl.allotrope.org/json-schemas/qudt/REC/2024/09/units.schema#/$defs/s" - }, - { - "$ref": "http://purl.allotrope.org/json-schemas/qudt/REC/2024/09/units.schema#/$defs/mL" - } - ] - } - ] - }, - "data region identifier": { - "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0003005", - "$asm.pattern": "value datum", - "$asm.type": "http://www.w3.org/2001/XMLSchema#string", - "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/core.schema#/$defs/tStringValue" - }, - "data region name": { - "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0003006", - "$asm.pattern": "value datum", - "$asm.type": "http://www.w3.org/2001/XMLSchema#string", - "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/core.schema#/$defs/tStringValue" - }, - "data region area": { - "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0003009", - "$asm.pattern": "quantity datum", - "allOf": [ - { - "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/core.schema#/$defs/tQuantityValue" - } - ] - }, - "relative data region area": { - "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0003010", - "$asm.pattern": "quantity datum", - "allOf": [ - { - "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/core.schema#/$defs/tQuantityValue" - }, - { - "$ref": "http://purl.allotrope.org/json-schemas/qudt/REC/2024/09/units.schema#/$defs/%25" - } - ] - }, - "data region start": { - "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0003007", - "$asm.pattern": "quantity datum", - "allOf": [ - { - "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/core.schema#/$defs/tQuantityValue" - }, - { - "oneOf": [ - { - "$ref": "http://purl.allotrope.org/json-schemas/qudt/REC/2024/09/units.schema#/$defs/s" - }, - { - "$ref": "http://purl.allotrope.org/json-schemas/qudt/REC/2024/09/units.schema#/$defs/mL" - } - ] - } - ] - } - } - }, - { - "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/core.schema#/$defs/orderedItem" - } - ] - }, - "minItems": 0 - } - } - }, - "derived electropherogram data cube": { - "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0003020", - "$asm.pattern": "datacube", - "allOf": [ - { - "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/cube.schema#/$defs/tDatacube" - }, - { - "properties": { - "cube-structure": { - "properties": { - "dimensions": { - "minItems": 1, - "maxItems": 1, - "prefixItems": [ - { - "oneOf": [ - { - "properties": { - "concept": { - "const": "molecular mass" - }, - "unit": { - "const": "Da" - }, - "@componentDatatype": { - "const": "double" - } - } - }, - { - "properties": { - "concept": { - "const": "polymer length" - }, - "unit": { - "const": "#" - }, - "@componentDatatype": { - "const": "double" - } - } - } - ] - } - ] - }, - "measures": { - "minItems": 1, - "maxItems": 1, - "contains": { - "oneOf": [ - { - "properties": { - "@componentDatatype": { - "const": "double" - } - } - } - ] - } - } - } - } - } - } - ] - } - } - } - } - } - }, - "electropherogram data cube": { - "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0003018", - "$asm.pattern": "datacube", - "allOf": [ - { - "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/cube.schema#/$defs/tDatacube" - }, - { - "properties": { - "cube-structure": { - "properties": { - "dimensions": { - "minItems": 1, - "maxItems": 1, - "prefixItems": [ - { - "oneOf": [ - { - "properties": { - "concept": { - "const": "elapsed time" - }, - "unit": { - "const": "s" - }, - "@componentDatatype": { - "const": "double" - } - } - } - ] - } - ] - }, - "measures": { - "minItems": 1, - "maxItems": 1, - "contains": { - "oneOf": [ - { - "properties": { - "@componentDatatype": { - "const": "double" - } - } - } - ] - } - } - } - } - } - } - ] - } - } - }, - { - "anyOf": [ - { - "$ref": "http://purl.allotrope.org/json-schemas/adm/absorbance/REC/2024/09/absorbance-cube-detector.schema#/$defs/measurementDocumentItems" - }, - { - "$ref": "http://purl.allotrope.org/json-schemas/adm/absorbance/REC/2024/09/absorbance-spectrum-detector.schema#/$defs/measurementDocumentItems" - }, - { - "$ref": "http://purl.allotrope.org/json-schemas/adm/fluorescence/REC/2024/09/fluorescence-cube-detector.schema#/$defs/measurementDocumentItems" - } - ] - } - ] - }, - "minItems": 1 - } - } - } - }, - "required": [ - "analyst" - ] - } - ] - } - } - }, - "required": [ - "electrophoresis document" - ] - } - ] - } - } - }, - { - "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/core.schema#/$defs/asm" - } - ], - "required": [ - "$asm.manifest" - ], - "$defs": { - "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/hierarchy.schema": { - "$id": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/hierarchy.schema", - "title": "Common hierarchy schema defs.", - "$defs": { - "calculatedDataAggregateDocument": { - "$asm.pattern": "aggregate datum", - "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0002889", - "properties": { - "calculated data document": { - "$asm.array-mixed": false, - "$asm.array-ordered": true, - "$asm.pattern": "indexed datum", - "items": { - "allOf": [ - { - "$asm.pattern": "aggregate datum", - "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0002890", - "properties": { - "calculated data identifier": { - "$asm.pattern": "value datum", - "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0002893", - "$asm.type": "http://www.w3.org/2001/XMLSchema#string", - "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/core.schema#/$defs/tStringValue" - }, - "calculated data name": { - "$asm.pattern": "value datum", - "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0002891", - "$asm.type": "http://www.w3.org/2001/XMLSchema#string", - "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/core.schema#/$defs/tStringValue" - }, - "calculated result": { - "$asm.pattern": "quantity datum", - "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0002892", - "allOf": [ - { - "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/core.schema#/$defs/tQuantityValue" - } - ] - }, - "calculation description": { - "$asm.pattern": "value datum", - "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0002141", - "$asm.type": "http://www.w3.org/2001/XMLSchema#string", - "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/core.schema#/$defs/tStringValue" - }, - "data source aggregate document": { - "allOf": [ - { - "$ref": "#/$defs/dataSourceAggregateDocument" - } - ] - }, - "electronic project record": { - "allOf": [ - { - "$ref": "#/$defs/electronicProjectRecord" - } - ] - } - }, - "required": [ - "calculated data name", - "calculated result" - ], - "type": "object" - }, - { - "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/core.schema#/$defs/orderedItem" - } - ] - }, - "minItems": 1, - "type": "array" - } - }, - "required": [ - "calculated data document" - ], - "type": "object" - }, - "customInformationAggregateDocument": { - "$asm.pattern": "aggregate datum", - "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0002764", - "properties": { - "custom information document": { - "$asm.array-mixed": false, - "$asm.array-ordered": true, - "$asm.pattern": "indexed datum", - "items": { - "allOf": [ - { - "$asm.pattern": "aggregate datum", - "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0002764", - "properties": { - "datum label": { - "$asm.pattern": "value datum", - "$asm.property-class": "http://purl.obolibrary.org/obo/IAO_0000009", - "$asm.type": "http://www.w3.org/2001/XMLSchema#string", - "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/core.schema#/$defs/tStringValue" - } - }, - "required": [ - "datum label" - ], - "type": "object" - }, - { - "oneOf": [ - { - "properties": { - "scalar double datum": { - "$asm.pattern": "value datum", - "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0001104", - "$asm.type": "http://www.w3.org/2001/XMLSchema#double", - "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/core.schema#/$defs/tDoubleValue" - }, - "unit": { - "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/core.schema#/$defs/tUnit" - } - }, - "required": [ - "scalar double datum" - ] - }, - { - "properties": { - "scalar string datum": { - "$asm.pattern": "value datum", - "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0001511", - "$asm.type": "http://www.w3.org/2001/XMLSchema#string", - "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/core.schema#/$defs/tStringValue" - } - }, - "required": [ - "scalar string datum" - ] - }, - { - "properties": { - "scalar timestamp datum": { - "$asm.pattern": "value datum", - "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0001512", - "$asm.type": "http://www.w3.org/2001/XMLSchema#dateTime", - "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/core.schema#/$defs/tDateTimeValue" - } - }, - "required": [ - "scalar timestamp datum" - ] - }, - { - "properties": { - "scalar boolean datum": { - "$asm.pattern": "value datum", - "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0001510", - "$asm.type": "http://www.w3.org/2001/XMLSchema#boolean", - "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/core.schema#/$defs/tBooleanValue" - } - }, - "required": [ - "scalar boolean datum" - ] - } - ] - }, - { - "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/core.schema#/$defs/orderedItem" - } - ] - }, - "type": "array" - } - }, - "required": [ - "custom information document" - ], - "type": "object" - }, - "dataSourceAggregateDocument": { - "$asm.pattern": "aggregate datum", - "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0002894", - "properties": { - "data source document": { - "$asm.array-mixed": false, - "$asm.array-ordered": true, - "$asm.pattern": "indexed datum", - "items": { - "allOf": [ - { - "$asm.pattern": "aggregate datum", - "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0002895", - "properties": { - "data source feature": { - "$asm.pattern": "value datum", - "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0002898", - "$asm.type": "http://www.w3.org/2001/XMLSchema#string", - "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/core.schema#/$defs/tStringValue" - }, - "data source identifier": { - "$asm.pattern": "value datum", - "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0002896", - "$asm.type": "http://www.w3.org/2001/XMLSchema#string", - "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/core.schema#/$defs/tStringValue" - } - }, - "required": [ - "data source identifier" - ], - "type": "object" - }, - { - "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/core.schema#/$defs/orderedItem" - } - ] - }, - "minItems": 1, - "type": "array" - } - }, - "required": [ - "data source document" - ], - "type": "object" - }, - "electronicProjectRecord": { - "$asm.pattern": "aggregate datum", - "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0002331", - "properties": { - "description": { - "$asm.pattern": "any datum", - "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0000922" - }, - "start time": { - "$asm.pattern": "value datum", - "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0002422", - "$asm.type": "http://www.w3.org/2001/XMLSchema#dateTime", - "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/core.schema#/$defs/tDateTimeValue" - }, - "written name": { - "$asm.pattern": "value datum", - "$asm.property-class": "http://purl.obolibrary.org/obo/IAO_0000590", - "$asm.type": "http://www.w3.org/2001/XMLSchema#string", - "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/core.schema#/$defs/tStringValue" - } - }, - "required": [ - "written name" - ], - "type": "object" - }, - "electronicSignatureAggregateDocument": { - "$asm.pattern": "aggregate datum", - "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0003033", - "properties": { - "electronic signature document": { - "$asm.array-mixed": false, - "$asm.array-ordered": false, - "$asm.pattern": "indexed datum", - "items": { - "allOf": [ - { - "$asm.pattern": "aggregate datum", - "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0002769", - "properties": { - "account identifier": { - "$asm.pattern": "value datum", - "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0002770", - "$asm.type": "http://www.w3.org/2001/XMLSchema#integer", - "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/core.schema#/$defs/tStringValue" - }, - "identifier": { - "$asm.pattern": "value datum", - "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0000917", - "$asm.type": "http://www.w3.org/2001/XMLSchema#integer", - "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/core.schema#/$defs/tStringValue" - }, - "measurement identifier": { - "$asm.pattern": "value datum", - "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0001121", - "$asm.type": "http://www.w3.org/2001/XMLSchema#integer", - "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/core.schema#/$defs/tStringValue" - }, - "method identifier": { - "$asm.pattern": "value datum", - "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0002034", - "$asm.type": "http://www.w3.org/2001/XMLSchema#integer", - "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/core.schema#/$defs/tStringValue" - }, - "personal name": { - "$asm.pattern": "value datum", - "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0001063", - "$asm.type": "http://www.w3.org/2001/XMLSchema#string", - "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/core.schema#/$defs/tStringValue" - }, - "processed data identifier": { - "$asm.pattern": "value datum", - "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0002897", - "$asm.type": "http://www.w3.org/2001/XMLSchema#integer", - "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/core.schema#/$defs/tStringValue" - }, - "signature role type": { - "$asm.pattern": "value datum", - "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0002794", - "$asm.type": "http://www.w3.org/2001/XMLSchema#string", - "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/core.schema#/$defs/tStringValue" - }, - "time": { - "$asm.pattern": "value datum", - "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0000937", - "$asm.type": "http://www.w3.org/2001/XMLSchema#string", - "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/core.schema#/$defs/tStringValue" - } - }, - "required": [ - "account identifier", - "personal name", - "signature role type", - "time" - ], - "type": "object" - }, - { - "anyOf": [ - { - "required": [ - "identifier" - ] - }, - { - "required": [ - "measurement identifier" - ] - }, - { - "required": [ - "processed data identifier" - ] - }, - { - "required": [ - "method identifier" - ] - } - ] - }, - { - "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/core.schema#/$defs/orderedItem" - } - ] - }, - "minItems": 0, - "type": "array" - } - }, - "type": "object" - }, - "errorAggregateDocument": { - "$asm.pattern": "aggregate datum", - "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0002951", - "properties": { - "error document": { - "$asm.array-mixed": false, - "$asm.array-ordered": false, - "$asm.pattern": "indexed datum", - "items": { - "$asm.pattern": "aggregate datum", - "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0002952", - "properties": { - "error": { - "$asm.pattern": "value datum", - "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0002804", - "$asm.type": "http://www.w3.org/2001/XMLSchema#string", - "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/core.schema#/$defs/tStringValue" - }, - "error feature": { - "$asm.pattern": "value datum", - "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0002953", - "$asm.type": "http://www.w3.org/2001/XMLSchema#integer", - "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/core.schema#/$defs/tStringValue" - } - }, - "required": [ - "error" - ], - "type": "object" - }, - "minItems": 0, - "type": "array" - } - }, - "type": "object" - }, - "imageAggregateDocument": { - "$asm.pattern": "aggregate datum", - "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0002869", - "properties": { - "image document": { - "$asm.array-mixed": false, - "$asm.array-ordered": false, - "$asm.pattern": "indexed datum", - "items": { - "$asm.pattern": "aggregate datum", - "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0002225", - "properties": { - "experimental data identifier": { - "$asm.pattern": "value datum", - "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0001977", - "$asm.type": "http://www.w3.org/2001/XMLSchema#string", - "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/core.schema#/$defs/tStringValue" - }, - "index": { - "$asm.pattern": "value datum", - "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0000928", - "$asm.type": "http://www.w3.org/2001/XMLSchema#integer", - "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/core.schema#/$defs/tIntegerValue" - } - }, - "type": "object" - }, - "minItems": 0, - "type": "array" - } - }, - "type": "object" - }, - "processedDataAggregateDocument": { - "$asm.pattern": "aggregate datum", - "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0002658", - "properties": { - "custom information aggregate document": { - "allOf": [ - { - "$ref": "#/$defs/customInformationAggregateDocument" - } - ] - }, - "electronic project record": { - "allOf": [ - { - "$ref": "#/$defs/electronicProjectRecord" - } - ] - }, - "processed data document": { - "$asm.array-mixed": false, - "$asm.array-ordered": true, - "$asm.pattern": "indexed datum", - "items": { - "allOf": [ - { - "$asm.pattern": "aggregate datum", - "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0002659", - "properties": { - "custom information aggregate document": { - "allOf": [ - { - "$ref": "#/$defs/customInformationAggregateDocument" - } - ] - }, - "data processing document": { - "$asm.pattern": "aggregate datum", - "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0002655", - "type": "object" - }, - "data source aggregate document": { - "allOf": [ - { - "$ref": "#/$defs/dataSourceAggregateDocument" - } - ] - }, - "electronic project record": { - "allOf": [ - { - "$ref": "#/$defs/electronicProjectRecord" - } - ] - }, - "processed data identifier": { - "$asm.pattern": "value datum", - "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0002897", - "$asm.type": "http://www.w3.org/2001/XMLSchema#string", - "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/core.schema#/$defs/tStringValue" - } - }, - "type": "object" - }, - { - "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/core.schema#/$defs/orderedItem" - } - ] - }, - "minItems": 1, - "type": "array" - } - }, - "required": [ - "processed data document" - ], - "type": "object" - }, - "statisticsAggregateDocument": { - "$asm.pattern": "aggregate datum", - "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0002697", - "type": "object", - "properties": { - "statistics document": { - "$asm.array-mixed": false, - "$asm.array-ordered": false, - "$asm.pattern": "indexed datum", - "type": "array", - "items": { - "$asm.pattern": "aggregate datum", - "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0002698", - "type": "object", - "properties": { - "statistical feature": { - "$asm.pattern": "class datum", - "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0002699", - "allOf": [ - { - "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/core.schema#/$defs/tClass" - }, - { - "$asm.value-sub-class-of": "http://purl.allotrope.org/ontologies/result#AFR_0001583", - "enum": [ - "BET C constant", - "Raman intensity", - "Raman interferogram intensity", - "Raman wavenumber shift", - "Young modulus", - "abrasion weight", - "absolute intensity", - "absolute water content", - "absorbance", - "acquisition volume", - "actual P/P0 result", - "adsorbed volume at STP", - "ambient humidity", - "ambient pressure", - "ambient temperature", - "amount of substance", - "angle", - "angle of optical rotation", - "angular velocity", - "area", - "attenuation coefficient", - "average dead cell diameter (cell counter)", - "average particle size", - "average total cell circularity", - "average total cell diameter", - "average viable cell circularity", - "background corrected turbidity", - "birefringence", - "break strain", - "break stress", - "cell path length", - "chemical shift", - "chromatography column film thickness", - "chromatography column length", - "chromatography column particle size", - "circularity", - "coating gap height", - "collision energy", - "column inner diameter", - "compartment temperature", - "concentration", - "container diameter", - "container height", - "degassed sample weight", - "detector view volume", - "diameter", - "dielectric polarization", - "dilution factor", - "dilution volume", - "dispensed volume", - "dry gas flow rate", - "dry sample weight", - "eccentricity", - "electric charge", - "electric conductance", - "electric conductivity", - "electric current", - "electric impedance", - "electric resistance", - "electric resistivity", - "electron beam working distance", - "end height", - "energy (datum)", - "enthalpy", - "enthalpy of fusion", - "enthalpy of sublimation", - "enthalpy of vaporization", - "exhaust gas flow rate", - "extrapolated moisture content", - "fill depth", - "flow rate", - "flow ratio", - "fluorescence", - "foam height", - "force", - "fracture energy", - "glass transition temperature", - "gloss", - "gross weight", - "hardness", - "heat capacity", - "heat capacity (dsc)", - "heat flow", - "heat seal length", - "heat transfer coefficient", - "height", - "hold-up volume", - "humidity", - "image height", - "image width", - "incident radiation angle", - "inlet gas pressure", - "inner diameter", - "intensity", - "isocyanate reservoir temperature", - "length", - "linear velocity", - "liquid height", - "luminescence", - "m/z", - "mass", - "mass attenuation coefficient", - "mass change", - "mass concentration", - "mass fraction", - "measurement chamber free space volume", - "molar attenuation coefficient", - "molar concentration", - "molar enthalpy of fusion", - "molar enthalpy of sublimation", - "molar enthalpy of vaporization", - "molar mass", - "molecular mass", - "monolayer quantity", - "normalized foam height", - "number concentration", - "osmolality", - "pCO2", - "pCO2 (bga)", - "pH", - "pO2", - "pO2 (bga)", - "partial pressure", - "particle size", - "peak analyte amount", - "peak load force", - "peak onset temperature", - "peak temperature", - "plate heater temperature", - "plate temperature", - "plate well count", - "polarity", - "polyol reservoir temperature", - "position count", - "power", - "pressure", - "probe volume", - "protein attenuation coefficient", - "purity", - "qNMR purity result", - "reference material weight", - "reflectance", - "refractive index", - "relative humidity", - "relative intensity", - "relative permittivity", - "relative pressure (BET)", - "relative response", - "relative weight loss on drying", - "reservoir temperature", - "rotational speed", - "sample temperature", - "sample thickness", - "sample weight", - "sample weight before drying", - "sample width", - "saturated gas flow rate", - "saturation vapor pressure", - "seal initiation temperature", - "size (datum)", - "solvent reservoir temperature", - "specific enthalpy of fusion", - "specific enthalpy of sublimation", - "specific enthalpy of vaporization", - "specific heat capacity", - "specific rotation", - "specific surface area", - "start height", - "stirring rate", - "strain", - "stress", - "tablet thickness", - "tare weight", - "temperature", - "temperature rate", - "thermal conductance", - "thermal conductivity", - "thickness", - "titer", - "torque", - "total cell diameter", - "total foam height", - "total gas flow rate", - "total material height", - "transition enthalpy", - "transmittance", - "turbidity", - "velocity", - "viscosity", - "void volume", - "voltage", - "voltage range", - "volume", - "volume concentration", - "volume fraction", - "water mass concentration", - "water mass fraction", - "wavelength", - "wavenumber", - "weight loss", - "well volume", - "width", - "yield strain", - "yield stress" - ], - "type": "string" - } - ] - } - }, - "required": [ - "statistical feature" - ] - } - } - } - }, - "techniqueAggregateDocument": { - "$asm.pattern": "aggregate datum", - "properties": { - "analysis sequence document": { - "$asm.pattern": "aggregate datum", - "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0003054", - "properties": { - "end time": { - "$asm.pattern": "value datum", - "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0002423", - "$asm.type": "http://www.w3.org/2001/XMLSchema#dateTime", - "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/core.schema#/$defs/tDateTimeValue" - }, - "file name": { - "$asm.pattern": "value datum", - "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0001926", - "$asm.type": "http://www.w3.org/2001/XMLSchema#string", - "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/core.schema#/$defs/tStringValue" - }, - "identifier": { - "$asm.pattern": "value datum", - "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0000917", - "$asm.type": "http://www.w3.org/2001/XMLSchema#string", - "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/core.schema#/$defs/tStringValue" - }, - "method identifier": { - "$asm.pattern": "value datum", - "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0002034", - "$asm.type": "http://www.w3.org/2001/XMLSchema#string", - "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/core.schema#/$defs/tStringValue" - }, - "method name": { - "$asm.pattern": "value datum", - "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0001606", - "$asm.type": "http://www.w3.org/2001/XMLSchema#string", - "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/core.schema#/$defs/tStringValue" - }, - "start time": { - "$asm.pattern": "value datum", - "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0002422", - "$asm.type": "http://www.w3.org/2001/XMLSchema#dateTime", - "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/core.schema#/$defs/tDateTimeValue" - }, - "UNC path": { - "$asm.pattern": "value datum", - "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0001906", - "$asm.type": "http://www.w3.org/2001/XMLSchema#string", - "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/core.schema#/$defs/tStringValue" - }, - "version number": { - "$asm.pattern": "value datum", - "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0001700", - "$asm.type": "http://www.w3.org/2001/XMLSchema#string", - "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/core.schema#/$defs/tStringValue" - }, - "written name": { - "$asm.pattern": "value datum", - "$asm.property-class": "http://purl.obolibrary.org/obo/IAO_0000590", - "$asm.type": "http://www.w3.org/2001/XMLSchema#string", - "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/core.schema#/$defs/tStringValue" - } - }, - "required": [ - "written name" - ], - "type": "object" - }, - "calculated data aggregate document": { - "allOf": [ - { - "$ref": "#/$defs/calculatedDataAggregateDocument" - } - ] - }, - "custom information aggregate document": { - "allOf": [ - { - "$ref": "#/$defs/customInformationAggregateDocument" - } - ] - }, - "data system document": { - "$asm.pattern": "aggregate datum", - "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0002771", - "oneOf": [ - { - "required": [ - "UNC path", - "file name" - ] - }, - { - "required": [ - "database primary key" - ] - } - ], - "properties": { - "ASM converter name": { - "$asm.pattern": "value datum", - "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0002748", - "$asm.type": "http://www.w3.org/2001/XMLSchema#string", - "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/core.schema#/$defs/tStringValue" - }, - "ASM converter version": { - "$asm.pattern": "value datum", - "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0002749", - "$asm.type": "http://www.w3.org/2001/XMLSchema#string", - "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/core.schema#/$defs/tStringValue" - }, - "ASM file identifier": { - "$asm.pattern": "value datum", - "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0002969", - "$asm.type": "http://www.w3.org/2001/XMLSchema#string", - "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/core.schema#/$defs/tStringValue" - }, - "data system instance identifier": { - "$asm.pattern": "value datum", - "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0002772", - "$asm.type": "http://www.w3.org/2001/XMLSchema#string", - "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/core.schema#/$defs/tStringValue" - }, - "database primary key": { - "$asm.pattern": "value datum", - "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0002041", - "$asm.type": "http://www.w3.org/2001/XMLSchema#string", - "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/core.schema#/$defs/tStringValue" - }, - "file name": { - "$asm.pattern": "value datum", - "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0001926", - "$asm.type": "http://www.w3.org/2001/XMLSchema#string", - "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/core.schema#/$defs/tStringValue" - }, - "software name": { - "$asm.pattern": "value datum", - "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0002802", - "$asm.type": "http://www.w3.org/2001/XMLSchema#string", - "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/core.schema#/$defs/tStringValue" - }, - "software version": { - "$asm.pattern": "value datum", - "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0001700", - "$asm.type": "http://www.w3.org/2001/XMLSchema#string", - "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/core.schema#/$defs/tStringValue" - }, - "UNC path": { - "$asm.pattern": "value datum", - "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0001906", - "$asm.type": "http://www.w3.org/2001/XMLSchema#string", - "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/core.schema#/$defs/tStringValue" - }, - "custom information aggregate document": { - "allOf": [ - { - "$ref": "#/$defs/customInformationAggregateDocument" - } - ] - } - }, - "required": [ - "ASM file identifier", - "data system instance identifier" - ], - "type": "object" - }, - "device system document": { - "$asm.pattern": "aggregate datum", - "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0002526", - "properties": { - "asset management identifier": { - "$asm.pattern": "value datum", - "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0001976", - "$asm.type": "http://www.w3.org/2001/XMLSchema#string", - "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/core.schema#/$defs/tStringValue" - }, - "brand name": { - "$asm.pattern": "value datum", - "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0001680", - "$asm.type": "http://www.w3.org/2001/XMLSchema#string", - "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/core.schema#/$defs/tStringValue" - }, - "description": { - "$asm.pattern": "any datum", - "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0000922" - }, - "device document": { - "$asm.array-mixed": false, - "$asm.array-ordered": true, - "$asm.pattern": "indexed datum", - "items": { - "allOf": [ - { - "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0002567", - "properties": { - "brand name": { - "$asm.pattern": "value datum", - "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0001680", - "$asm.type": "http://www.w3.org/2001/XMLSchema#string", - "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/core.schema#/$defs/tStringValue" - }, - "device identifier": { - "$asm.pattern": "value datum", - "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0002018", - "$asm.type": "http://www.w3.org/2001/XMLSchema#string", - "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/core.schema#/$defs/tStringValue" - }, - "device type": { - "$asm.pattern": "value datum", - "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0002568", - "$asm.type": "http://www.w3.org/2001/XMLSchema#string", - "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/core.schema#/$defs/tStringValue" - }, - "equipment serial number": { - "$asm.pattern": "value datum", - "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0001119", - "$asm.type": "http://www.w3.org/2001/XMLSchema#string", - "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/core.schema#/$defs/tStringValue" - }, - "firmware version": { - "$asm.pattern": "value datum", - "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0001259", - "$asm.type": "http://www.w3.org/2001/XMLSchema#string", - "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/core.schema#/$defs/tStringValue" - }, - "model number": { - "$asm.pattern": "value datum", - "$asm.property-class": "http://purl.obolibrary.org/obo/IAO_0000017", - "$asm.type": "http://www.w3.org/2001/XMLSchema#string", - "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/core.schema#/$defs/tStringValue" - }, - "product manufacturer": { - "$asm.pattern": "value datum", - "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0001258", - "$asm.type": "http://www.w3.org/2001/XMLSchema#string", - "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/core.schema#/$defs/tStringValue" - }, - "written name": { - "$asm.pattern": "value datum", - "$asm.property-class": "http://purl.obolibrary.org/obo/IAO_0000590", - "$asm.type": "http://www.w3.org/2001/XMLSchema#string", - "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/core.schema#/$defs/tStringValue" - }, - "custom information aggregate document": { - "allOf": [ - { - "$ref": "#/$defs/customInformationAggregateDocument" - } - ] - } - }, - "required": [ - "device type" - ], - "type": "object" - }, - { - "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/core.schema#/$defs/orderedItem" - } - ] - }, - "minItems": 1, - "type": "array" - }, - "device identifier": { - "$asm.pattern": "value datum", - "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0002018", - "$asm.type": "http://www.w3.org/2001/XMLSchema#string", - "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/core.schema#/$defs/tStringValue" - }, - "equipment serial number": { - "$asm.pattern": "value datum", - "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0001119", - "$asm.type": "http://www.w3.org/2001/XMLSchema#string", - "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/core.schema#/$defs/tStringValue" - }, - "firmware version": { - "$asm.pattern": "value datum", - "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0001259", - "$asm.type": "http://www.w3.org/2001/XMLSchema#string", - "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/core.schema#/$defs/tStringValue" - }, - "model number": { - "$asm.pattern": "value datum", - "$asm.property-class": "http://purl.obolibrary.org/obo/IAO_0000017", - "$asm.type": "http://www.w3.org/2001/XMLSchema#string", - "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/core.schema#/$defs/tStringValue" - }, - "product manufacturer": { - "$asm.pattern": "value datum", - "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0001258", - "$asm.type": "http://www.w3.org/2001/XMLSchema#string", - "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/core.schema#/$defs/tStringValue" - }, - "custom information aggregate document": { - "allOf": [ - { - "$ref": "#/$defs/customInformationAggregateDocument" - } - ] - } - }, - "type": "object" - }, - "electronic project record": { - "allOf": [ - { - "$ref": "#/$defs/electronicProjectRecord" - } - ] - }, - "electronic signature aggregate document": { - "allOf": [ - { - "$ref": "#/$defs/electronicSignatureAggregateDocument" - } - ] - }, - "processed data aggregate document": { - "allOf": [ - { - "$ref": "#/$defs/processedDataAggregateDocument" - } - ] - }, - "statistics aggregate document": { - "allOf": [ - { - "$ref": "#/$defs/statisticsAggregateDocument" - } - ] - } - }, - "type": "object" - }, - "techniqueDocument": { - "$asm.pattern": "aggregate datum", - "properties": { - "analyst": { - "$asm.pattern": "value datum", - "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0001116", - "$asm.type": "http://www.w3.org/2001/XMLSchema#string", - "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/core.schema#/$defs/tStringValue" - }, - "electronic project record": { - "allOf": [ - { - "$ref": "#/$defs/electronicProjectRecord" - } - ] - }, - "measurement aggregate document": { - "$asm.pattern": "aggregate datum", - "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0002374", - "properties": { - "calculated data aggregate document": { - "allOf": [ - { - "$ref": "#/$defs/calculatedDataAggregateDocument" - } - ] - }, - "custom information aggregate document": { - "allOf": [ - { - "$ref": "#/$defs/customInformationAggregateDocument" - } - ] - }, - "diagnostic trace aggregate document": { - "$asm.pattern": "aggregate datum", - "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0002705", - "properties": { - "diagnostic trace document": { - "$asm.array-mixed": false, - "$asm.array-ordered": false, - "$asm.pattern": "indexed datum", - "items": { - "$asm.pattern": "aggregate datum", - "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0002706", - "patternProperties": { - "data cube$": { - "$asm.pattern": "datacube", - "$asm.property-class": "http://purl.org/linked-data/cube#DataSet", - "allOf": [ - { - "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/cube.schema#/$defs/tDatacube" - } - ] - } - }, - "properties": { - "description": { - "$asm.pattern": "any datum", - "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0000922" - }, - "custom information aggregate document": { - "allOf": [ - { - "$ref": "#/$defs/customInformationAggregateDocument" - } - ] - } - }, - "required": [ - "description" - ], - "type": "object" - }, - "minItems": 0, - "type": "array" - }, - "custom information aggregate document": { - "allOf": [ - { - "$ref": "#/$defs/customInformationAggregateDocument" - } - ] - } - }, - "type": "object" - }, - "error aggregate document": { - "allOf": [ - { - "$ref": "#/$defs/errorAggregateDocument" - } - ] - }, - "image aggregate document": { - "allOf": [ - { - "$ref": "#/$defs/imageAggregateDocument" - } - ] - }, - "measurement document": { - "$asm.array-mixed": false, - "$asm.array-ordered": false, - "$asm.pattern": "indexed datum", - "items": { - "$asm.pattern": "aggregate datum", - "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0002375", - "type": "object", - "properties": { - "calculated data aggregate document": { - "allOf": [ - { - "$ref": "#/$defs/calculatedDataAggregateDocument" - } - ] - }, - "custom information aggregate document": { - "allOf": [ - { - "$ref": "#/$defs/customInformationAggregateDocument" - } - ] - }, - "detection type": { - "$asm.pattern": "value datum", - "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0002534", - "$asm.type": "http://www.w3.org/2001/XMLSchema#string", - "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/core.schema#/$defs/tStringValue" - }, - "device control aggregate document": { - "$asm.pattern": "aggregate datum", - "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0002722", - "type": "object", - "properties": { - "device control document": { - "$asm.array-mixed": false, - "$asm.array-ordered": true, - "$asm.pattern": "indexed datum", - "type": "array", - "minItems": 1, - "items": { - "allOf": [ - { - "$asm.pattern": "aggregate datum", - "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0002723", - "type": "object", - "properties": { - "brand name": { - "$asm.pattern": "value datum", - "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0001680", - "$asm.type": "http://www.w3.org/2001/XMLSchema#string", - "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/core.schema#/$defs/tStringValue" - }, - "detection type": { - "$asm.pattern": "value datum", - "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0002534", - "$asm.type": "http://www.w3.org/2001/XMLSchema#string", - "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/core.schema#/$defs/tStringValue" - }, - "device identifier": { - "$asm.pattern": "value datum", - "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0002018", - "$asm.type": "http://www.w3.org/2001/XMLSchema#string", - "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/core.schema#/$defs/tStringValue" - }, - "device type": { - "$asm.pattern": "value datum", - "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0002568", - "$asm.type": "http://www.w3.org/2001/XMLSchema#string", - "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/core.schema#/$defs/tStringValue" - }, - "equipment serial number": { - "$asm.pattern": "value datum", - "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0001119", - "$asm.type": "http://www.w3.org/2001/XMLSchema#string", - "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/core.schema#/$defs/tStringValue" - }, - "firmware version": { - "$asm.pattern": "value datum", - "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0001259", - "$asm.type": "http://www.w3.org/2001/XMLSchema#string", - "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/core.schema#/$defs/tStringValue" - }, - "model number": { - "$asm.pattern": "value datum", - "$asm.property-class": "http://purl.obolibrary.org/obo/IAO_0000017", - "$asm.type": "http://www.w3.org/2001/XMLSchema#string", - "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/core.schema#/$defs/tStringValue" - }, - "product manufacturer": { - "$asm.pattern": "value datum", - "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0001258", - "$asm.type": "http://www.w3.org/2001/XMLSchema#string", - "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/core.schema#/$defs/tStringValue" - }, - "custom information aggregate document": { - "allOf": [ - { - "$ref": "#/$defs/customInformationAggregateDocument" - } - ] - } - }, - "required": [ - "device type" - ] - }, - { - "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/core.schema#/$defs/orderedItem" - } - ] - } - }, - "custom information aggregate document": { - "allOf": [ - { - "$ref": "#/$defs/customInformationAggregateDocument" - } - ] - } - }, - "required": [ - "device control document" - ] - }, - "electronic project record": { - "allOf": [ - { - "$ref": "#/$defs/electronicProjectRecord" - } - ] - }, - "error aggregate document": { - "allOf": [ - { - "$ref": "#/$defs/errorAggregateDocument" - } - ] - }, - "image aggregate document": { - "allOf": [ - { - "$ref": "#/$defs/imageAggregateDocument" - } - ] - }, - "measurement identifier": { - "$asm.pattern": "value datum", - "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0001121", - "$asm.type": "http://www.w3.org/2001/XMLSchema#string", - "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/core.schema#/$defs/tStringValue" - }, - "measurement time": { - "$asm.pattern": "value datum", - "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0000952", - "$asm.type": "http://www.w3.org/2001/XMLSchema#dateTimeStamp", - "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/core.schema#/$defs/tDateTimeStampValue" - }, - "processed data aggregate document": { - "allOf": [ - { - "$ref": "#/$defs/processedDataAggregateDocument" - } - ] - }, - "sample document": { - "$asm.pattern": "aggregate datum", - "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0002083", - "properties": { - "batch identifier": { - "$asm.pattern": "value datum", - "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0001120", - "$asm.type": "http://www.w3.org/2001/XMLSchema#string", - "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/core.schema#/$defs/tStringValue" - }, - "description": { - "$asm.pattern": "any datum", - "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0000922" - }, - "sample identifier": { - "$asm.pattern": "value datum", - "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0001118", - "$asm.type": "http://www.w3.org/2001/XMLSchema#string", - "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/core.schema#/$defs/tStringValue" - }, - "sample role type": { - "$asm.pattern": "class datum", - "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0002242", - "allOf": [ - { - "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/core.schema#/$defs/tClass" - }, - { - "$asm.value-sub-class-of": "http://purl.allotrope.org/ontologies/role#AFRL_0000035", - "enum": [ - "control sample role", - "standard sample role", - "validation sample role", - "experiment sample role", - "sample role", - "spiked sample role", - "blank role", - "unknown sample role", - "calibration sample role", - "unspiked sample role", - "specimen role", - "quality control sample role", - "reference sample role" - ], - "type": "string" - } - ] - }, - "written name": { - "$asm.pattern": "value datum", - "$asm.property-class": "http://purl.obolibrary.org/obo/IAO_0000590", - "$asm.type": "http://www.w3.org/2001/XMLSchema#string", - "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/core.schema#/$defs/tStringValue" - }, - "custom information aggregate document": { - "allOf": [ - { - "$ref": "#/$defs/customInformationAggregateDocument" - } - ] - } - }, - "required": [ - "sample identifier" - ], - "type": "object" - }, - "statistics aggregate document": { - "allOf": [ - { - "$ref": "#/$defs/statisticsAggregateDocument" - } - ] - } - }, - "required": [ - "sample document", - "device control aggregate document" - ] - }, - "minItems": 1, - "type": "array" - }, - "processed data aggregate document": { - "allOf": [ - { - "$ref": "#/$defs/processedDataAggregateDocument" - } - ] - }, - "statistics aggregate document": { - "allOf": [ - { - "$ref": "#/$defs/statisticsAggregateDocument" - } - ] - } - }, - "required": [ - "measurement document" - ], - "type": "object" - }, - "submitter": { - "$asm.pattern": "value datum", - "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0002531", - "$asm.type": "http://www.w3.org/2001/XMLSchema#string", - "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/core.schema#/$defs/tStringValue" - } - }, - "required": [ - "measurement aggregate document" - ], - "type": "object" - } - } - }, - "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/core.schema": { - "$id": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/core.schema", - "title": "Schema for leaf node values.", - "$defs": { - "asm": { - "properties": { - "$asm.manifest": { - "oneOf": [ - { - "type": "string", - "format": "iri" - }, - { - "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/manifest.schema" - } - ] - } - } - }, - "tQuantityValue": { - "type": "object", - "properties": { - "value": { - "type": "number" - }, - "unit": { - "$ref": "#/$defs/tUnit" - }, - "has statistic datum role": { - "$ref": "#/$defs/tStatisticDatumRole" - }, - "@type": { - "$ref": "#/$defs/tClass" - } - }, - "$asm.type": "http://qudt.org/schema/qudt#QuantityValue", - "required": [ - "value", - "unit" - ] - }, - "tNumericValue": { - "anyOf": [ - { - "$ref": "#/$defs/tByteValue" - }, - { - "$ref": "#/$defs/tShortValue" - }, - { - "$ref": "#/$defs/tIntValue" - }, - { - "$ref": "#/$defs/tLongValue" - }, - { - "$ref": "#/$defs/tUnsignedByteValue" - }, - { - "$ref": "#/$defs/tUnsignedShortValue" - }, - { - "$ref": "#/$defs/tUnsignedIntValue" - }, - { - "$ref": "#/$defs/tUnsignedLongValue" - }, - { - "$ref": "#/$defs/tFloatValue" - }, - { - "$ref": "#/$defs/tDoubleValue" - }, - { - "$ref": "#/$defs/tDecimalValue" - }, - { - "$ref": "#/$defs/tIntegerValue" - } - ] - }, - "tOrderedValue": { - "oneOf": [ - { - "$ref": "#/$defs/tNumericValue" - }, - { - "$ref": "#/$defs/tStringValue" - }, - { - "$ref": "#/$defs/tDateTimeValue" - }, - { - "$ref": "#/$defs/tDateTimeStampValue" - }, - { - "$ref": "#/$defs/tDateValue" - }, - { - "$ref": "#/$defs/tTimeValue" - } - ] - }, - "tRangeValue": { - "type": "object", - "properties": { - "minInclusive": { - "$ref": "#/$defs/tOrderedValue" - }, - "minExclusive": { - "$ref": "#/$defs/tOrderedValue" - }, - "maxInclusive": { - "$ref": "#/$defs/tOrderedValue" - }, - "maxExclusive": { - "$ref": "#/$defs/tOrderedValue" - }, - "unit": { - "$ref": "#/$defs/tUnit" - } - }, - "dependencies": { - "minInclusive": { - "not": { - "required": [ - "minExclusive" - ] - } - }, - "minExclusive": { - "not": { - "required": [ - "min" - ] - } - }, - "maxInclusive": { - "not": { - "required": [ - "maxExclusive" - ] - } - }, - "maxExclusive": { - "not": { - "required": [ - "max" - ] - } - } - }, - "$asm.type": "http://purl.allotrope.org/ontologies/common#AFC_0000021" - }, - "tStatisticDatumRole": { - "description": "A statistic datum role.", - "$asm.lookup-property": "http://www.w3.org/2004/02/skos/core#prefLabel", - "$asm.type": "http://www.w3.org/2000/01/rdf-schema#Class", - "type": "string", - "enum": [ - "arithmetic mean role", - "median role", - "relative standard deviation role", - "skewness role", - "standard deviation role", - "variance role", - "maximum value role", - "minimum value role", - "initial value role", - "final value role" - ], - "$asm.value-sub-class-of": "http://purl.allotrope.org/ontologies/role#AFRL_0000328" - }, - "tUnit": { - "description": "A unit is referenced by its QUDT symbol. It MUST be unique within the QUDT units defined in the vocabularies declared in the manifest.", - "type": "string", - "$asm.lookup-property": "http://purl.allotrope.org/ontology/qudt-ext/schema#symbol", - "$asm.type": "http://qudt.org/schema/qudt#Unit" - }, - "tBooleanValue": { - "description": "A boolean value.", - "$asm.type": "http://www.w3.org/2001/XMLSchema#boolean", - "oneOf": [ - { - "type": "boolean" - }, - { - "type": "object", - "properties": { - "@type": { - "$ref": "#/$defs/tClass" - }, - "value": { - "type": "boolean" - } - }, - "required": [ - "@type", - "value" - ] - } - ] - }, - "tDecimalValue": { - "description": "A number value stored as an XSD decimal.", - "$asm.type": "http://www.w3.org/2001/XMLSchema#decimal", - "oneOf": [ - { - "type": "number" - }, - { - "type": "object", - "properties": { - "@type": { - "$ref": "#/$defs/tClass" - }, - "value": { - "type": "number" - } - }, - "required": [ - "@type", - "value" - ] - } - ] - }, - "tDoubleValue": { - "description": "A number value stored as an XSD double.", - "$asm.type": "http://www.w3.org/2001/XMLSchema#double", - "oneOf": [ - { - "type": "number" - }, - { - "type": "object", - "properties": { - "@type": { - "$ref": "#/$defs/tClass" - }, - "value": { - "type": "number" - } - }, - "required": [ - "@type", - "value" - ] - } - ] - }, - "tFloatValue": { - "description": "A number value stored as an XSD float.", - "$asm.type": "http://www.w3.org/2001/XMLSchema#float", - "oneOf": [ - { - "type": "number" - }, - { - "type": "object", - "properties": { - "@type": { - "$ref": "#/$defs/tClass" - }, - "value": { - "type": "number" - } - }, - "required": [ - "@type", - "value" - ] - } - ] - }, - "tStringValue": { - "description": "A literal string in UTF-8 encoding.", - "$asm.type": "http://www.w3.org/2001/XMLSchema#string", - "oneOf": [ - { - "type": "string" - }, - { - "type": "object", - "properties": { - "@type": { - "$ref": "#/$defs/tClass" - }, - "value": { - "type": "string" - } - }, - "required": [ - "@type", - "value" - ] - } - ] - }, - "tByteValue": { - "description": "A signed 8 bit integer value.", - "$asm.type": "http://www.w3.org/2001/XMLSchema#byte", - "oneOf": [ - { - "type": "integer", - "minimum": -128, - "maximum": 127 - }, - { - "type": "object", - "properties": { - "@type": { - "$ref": "#/$defs/tClass" - }, - "value": { - "type": "integer", - "minimum": -128, - "maximum": 127 - } - }, - "required": [ - "@type", - "value" - ] - } - ] - }, - "tShortValue": { - "description": "A signed 16 bit integer value.", - "$asm.type": "http://www.w3.org/2001/XMLSchema#short", - "oneOf": [ - { - "type": "integer", - "minimum": -32768, - "maximum": 32767 - }, - { - "type": "object", - "properties": { - "@type": { - "$ref": "#/$defs/tClass" - }, - "value": { - "type": "integer", - "minimum": -32768, - "maximum": 32767 - } - }, - "required": [ - "@type", - "value" - ] - } - ] - }, - "tIntValue": { - "description": "A signed 32 bit integer value.", - "$asm.type": "http://www.w3.org/2001/XMLSchema#int", - "oneOf": [ - { - "type": "integer", - "minimum": -2147483648, - "maximum": 2147483647 - }, - { - "type": "object", - "properties": { - "@type": { - "$ref": "#/$defs/tClass" - }, - "value": { - "type": "integer", - "minimum": -2147483648, - "maximum": 2147483647 - } - }, - "required": [ - "@type", - "value" - ] - } - ] - }, - "tLongValue": { - "description": "A signed 64 bit integer value.", - "$asm.type": "http://www.w3.org/2001/XMLSchema#long", - "oneOf": [ - { - "type": "integer", - "minimum": -9223372036854776000, - "maximum": 9223372036854776000 - }, - { - "type": "object", - "properties": { - "@type": { - "$ref": "#/$defs/tClass" - }, - "value": { - "type": "integer", - "minimum": -9223372036854776000, - "maximum": 9223372036854776000 - } - }, - "required": [ - "@type", - "value" - ] - } - ] - }, - "tUnsignedByteValue": { - "description": "An unsigned 8 bit integer value.", - "$asm.type": "http://www.w3.org/2001/XMLSchema#unsignedByte", - "oneOf": [ - { - "type": "integer", - "minimum": 0, - "maximum": 255 - }, - { - "type": "object", - "properties": { - "@type": { - "$ref": "#/$defs/tClass" - }, - "value": { - "type": "integer", - "minimum": 0, - "maximum": 255 - } - }, - "required": [ - "@type", - "value" - ] - } - ] - }, - "tUnsignedShortValue": { - "description": "An unsigned 16 bit integer value.", - "$asm.type": "http://www.w3.org/2001/XMLSchema#unsignedShort", - "oneOf": [ - { - "type": "integer", - "minimum": 0, - "maximum": 65535 - }, - { - "type": "object", - "properties": { - "@type": { - "$ref": "#/$defs/tClass" - }, - "value": { - "type": "integer", - "minimum": 0, - "maximum": 65535 - } - }, - "required": [ - "@type", - "value" - ] - } - ] - }, - "tUnsignedIntValue": { - "description": "A signed 32 bit integer value.", - "$asm.type": "http://www.w3.org/2001/XMLSchema#unsignedInt", - "oneOf": [ - { - "type": "integer", - "minimum": 0, - "maximum": 4294967295 - }, - { - "type": "object", - "properties": { - "@type": { - "$ref": "#/$defs/tClass" - }, - "value": { - "type": "integer", - "minimum": 0, - "maximum": 4294967295 - } - }, - "required": [ - "@type", - "value" - ] - } - ] - }, - "tUnsignedLongValue": { - "description": "A signed 64 bit integer value.", - "$asm.type": "http://www.w3.org/2001/XMLSchema#unsignedLong", - "oneOf": [ - { - "type": "integer", - "minimum": 0, - "maximum": 18446744073709552000 - }, - { - "type": "object", - "properties": { - "@type": { - "$ref": "#/$defs/tClass" - }, - "value": { - "type": "integer", - "minimum": 0, - "maximum": 18446744073709552000 - } - }, - "required": [ - "@type", - "value" - ] - } - ] - }, - "tIntegerValue": { - "description": "A arbitrary length integer value.", - "$asm.type": "http://www.w3.org/2001/XMLSchema#integer", - "oneOf": [ - { - "type": "integer" - }, - { - "type": "object", - "properties": { - "@type": { - "$ref": "#/$defs/tClass" - }, - "value": { - "type": "integer" - } - }, - "required": [ - "@type", - "value" - ] - } - ] - }, - "tIRIValue": { - "description": "A literal IRI reference, not to be confused with a resource reference (tResource)", - "$asm.type": "http://www.w3.org/2001/XMLSchema#anyURI", - "oneOf": [ - { - "type": "string", - "format": "iri" - }, - { - "type": "object", - "properties": { - "@type": { - "$ref": "#/$defs/tClass" - }, - "value": { - "type": "string", - "format": "iri" - } - }, - "required": [ - "@type", - "value" - ] - } - ] - }, - "tDateTimeValue": { - "description": "All timestamps MUST be in ISO8601 date/time format.", - "$asm.type": "http://www.w3.org/2001/XMLSchema#dateTime", - "oneOf": [ - { - "type": "string", - "format": "date-time" - }, - { - "type": "object", - "properties": { - "@type": { - "$ref": "#/$defs/tClass" - }, - "value": { - "type": "string", - "format": "date-time" - } - }, - "required": [ - "@type", - "value" - ] - } - ] - }, - "tDateTimeStampValue": { - "description": "All timestamps MUST be in ISO8601 date/time format.", - "$asm.type": "http://www.w3.org/2001/XMLSchema#dateTimeStamp", - "oneOf": [ - { - "type": "string", - "format": "date-time" - }, - { - "type": "object", - "properties": { - "@type": { - "$ref": "#/$defs/tClass" - }, - "value": { - "type": "string", - "format": "date-time" - } - }, - "required": [ - "@type", - "value" - ] - } - ] - }, - "tDateValue": { - "description": "All timestamps MUST be in ISO8601 date format.", - "$asm.type": "http://www.w3.org/2001/XMLSchema#date", - "oneOf": [ - { - "type": "string", - "format": "date" - }, - { - "type": "object", - "properties": { - "@type": { - "$ref": "#/$defs/tClass" - }, - "value": { - "type": "string", - "format": "date" - } - }, - "required": [ - "@type", - "value" - ] - } - ] - }, - "tTimeValue": { - "description": "All timestamps MUST be in ISO8601 time format.", - "$asm.type": "http://www.w3.org/2001/XMLSchema#time", - "oneOf": [ - { - "type": "string", - "format": "time" - }, - { - "type": "object", - "properties": { - "@type": { - "$ref": "#/$defs/tClass" - }, - "value": { - "type": "string", - "format": "time" - } - }, - "required": [ - "@type", - "value" - ] - } - ] - }, - "tDurationValue": { - "description": "All durations MUST be in ISO8601 duration format.", - "$asm.type": "http://www.w3.org/2001/XMLSchema#duration", - "oneOf": [ - { - "type": "string", - "format": "duration" - }, - { - "type": "object", - "properties": { - "@type": { - "$ref": "#/$defs/tClass" - }, - "value": { - "type": "string", - "format": "duration" - } - }, - "required": [ - "@type", - "value" - ] - } - ] - }, - "tClass": { - "description": "A class reference is the SKOS preferred label of a class. This label MUST be unique within the transitive closure of the vocabulary referenced by the manifest.", - "type": "string", - "$asm.lookup-property": "http://www.w3.org/2004/02/skos/core#prefLabel", - "$asm.type": "http://www.w3.org/2000/01/rdf-schema#Class" - }, - "tObject": { - "description": "An JSON object with properties. This will be mapped to an RDF resource, which can be a blank node.", - "type": "object", - "$asm.type": "http://www.w3.org/2000/01/rdf-schema#Resource" - }, - "tArray": { - "description": "An JSON array. This will be mapped to a list, which can be a blank node.", - "type": "array", - "$asm.type": "http://purl.allotrope.org/ontologies/common#AFC_0000160" - }, - "tNamed": { - "description": "A reference to an arbitrary RDF resource identified by a SKOS preferred label. The label MUST be unique.", - "type": "string", - "$asm.lookup-property": "http://www.w3.org/2004/02/skos/core#prefLabel", - "$asm.type": "http://www.w3.org/2000/01/rdf-schema#Resource" - }, - "tResource": { - "description": "A reference to an arbitrary RDF resource identified by an IRI. The mapping to RDF will introduce a node reference instead of a literal IRI.", - "type": "string", - "format": "iri", - "$asm.type": "http://www.w3.org/2000/01/rdf-schema#Resource" - }, - "tReference": { - "description": "A reference to an object within an JSON document using JSON pointers.", - "type": "string", - "format": "uri-reference", - "$asm.type": "http://www.w3.org/2000/01/rdf-schema#Resource" - }, - "mixedItem": { - "description": "A schema for a polymorphic array item, which requires that each item has a @type declaration", - "properties": { - "@type": { - "$ref": "#/$defs/tClass" - } - }, - "required": [ - "@type" - ] - }, - "orderedItem": { - "description": "A schema for an array item, that is ordered in a not-natural way. This means that it MUST have an explicit @index property stating the position. The index value is a strict positive 32bit signed integer (excluding 0).", - "properties": { - "@index": { - "type": "integer", - "minimum": 1, - "maximum": 2147483647 - } - } - } - } - }, - "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/cube.schema": { - "$id": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/cube.schema", - "$defs": { - "tDatacube": { - "type": "object", - "properties": { - "label": { - "type": "string" - }, - "cube-structure": { - "$ref": "#/$defs/tDatacubeStructure" - }, - "data": { - "$ref": "#/$defs/tDatacubeData" - } - } - }, - "tDatacubeData": { - "allOf": [ - { - "$ref": "#/$defs/tDimensionData" - }, - { - "$ref": "#/$defs/tMeasureData" - } - ] - }, - "tDimensionData": { - "properties": { - "dimensions": { - "type": "array", - "items": { - "oneOf": [ - { - "$ref": "#/$defs/tDimensionArray" - }, - { - "$ref": "#/$defs/tFunction" - } - ] - } - } - }, - "required": [ - "dimensions" - ] - }, - "tMeasureData": { - "oneOf": [ - { - "properties": { - "measures": { - "type": "array", - "items": { - "$ref": "#/$defs/tMeasureArray" - } - } - }, - "required": [ - "measures" - ] - }, - { - "properties": { - "points": { - "type": "array", - "items": { - "$ref": "#/$defs/tTupleData" - } - } - }, - "required": [ - "points" - ] - } - ] - }, - "tTupleData": { - "$comment": "heterogenous array of data used in point arrays", - "type": "array", - "items": { - "oneOf": [ - { - "type": "number" - }, - { - "type": "boolean" - }, - { - "type": "string" - }, - { - "type": "null" - } - ] - } - }, - "tDimensionArray": { - "$comment": "homogenous array of data used in explicit dimension arrays", - "oneOf": [ - { - "$ref": "#/$defs/tNumberArray" - }, - { - "$ref": "#/$defs/tBooleanArray" - }, - { - "$ref": "#/$defs/tStringArray" - } - ] - }, - "tMeasureArray": { - "$comment": "homogenous array of data used in explicit measure arrays, may contain null values", - "oneOf": [ - { - "$ref": "#/$defs/tNumberOrNullArray" - }, - { - "$ref": "#/$defs/tBooleanOrNullArray" - }, - { - "$ref": "#/$defs/tStringOrNullArray" - } - ] - }, - "tNumberArray": { - "$comment": "homogenous array of numbers", - "type": "array", - "items": { - "type": "number" - } - }, - "tNumberOrNullArray": { - "$comment": "homogenous array of numbers, may contain null values", - "type": "array", - "items": { - "anyOf": [ - { - "type": "number" - }, - { - "type": "null" - } - ] - } - }, - "tBooleanArray": { - "$comment": "homogenous array of booleans", - "type": "array", - "items": { - "type": "boolean" - } - }, - "tBooleanOrNullArray": { - "$comment": "homogenous array of booleans, may contain null values", - "type": "array", - "items": { - "anyOf": [ - { - "type": "boolean" - }, - { - "type": "null" - } - ] - } - }, - "tStringArray": { - "$comment": "homogenous array of strings", - "type": "array", - "items": { - "type": "string" - } - }, - "tStringOrNullArray": { - "$comment": "homogenous array of strings, may contain null values", - "type": "array", - "items": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ] - } - }, - "tFunction": { - "type": "object", - "properties": { - "type": { - "enum": [ - "linear", - "logarithmic" - ], - "default": "linear" - }, - "start": { - "type": "number", - "default": 1 - }, - "length": { - "type": "number" - }, - "incr": { - "type": "number", - "default": 1 - } - } - }, - "tDatacubeStructure": { - "type": "object", - "properties": { - "dimensions": { - "type": "array", - "items": { - "$ref": "#/$defs/tDatacubeComponent" - }, - "uniqueItems": true - }, - "measures": { - "type": "array", - "items": { - "$ref": "#/$defs/tDatacubeComponent" - }, - "uniqueItems": true, - "minItems": 1 - } - }, - "required": [ - "dimensions", - "measures" - ] - }, - "tDatacubeComponent": { - "type": "object", - "properties": { - "@componentDatatype": { - "description": "Subset of XSD datatypes supported in simple models", - "default": "double", - "enum": [ - "double", - "float", - "decimal", - "integer", - "byte", - "int", - "short", - "long", - "string", - "boolean", - "dateTime" - ] - }, - "concept": { - "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/core.schema#/$defs/tClass" - }, - "unit": { - "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/core.schema#/$defs/tUnit" - }, - "scale": { - "enum": [ - "nominal", - "ordinal", - "cardinal", - "interval", - "range" - ] - }, - "$asm.fill-value": { - "type": [ - "string", - "number", - "integer", - "boolean" - ] - } - }, - "required": [ - "@componentDatatype", - "concept" - ], - "allOf": [ - { - "$ref": "#/$defs/cFillValueIEEE" - }, - { - "$ref": "#/$defs/cFillValueDecimal" - }, - { - "$ref": "#/$defs/cFillValueBoolean" - }, - { - "$ref": "#/$defs/cFillValueString" - } - ] - }, - "cFillValueBoolean": { - "$comment": "constraint on fill values if component data type is boolean", - "if": { - "properties": { - "@componentDatatype": { - "const": "boolean" - } - } - }, - "then": { - "$asm.fill-value": { - "type": "boolean", - "default": false - } - } - }, - "cFillValueIEEE": { - "$comment": "constraint on fill values if component data type is any numeric type", - "if": { - "properties": { - "@componentDatatype": { - "pattern": "double|float" - } - } - }, - "then": { - "$asm.fill-value": { - "oneOf": [ - { - "type": "number" - }, - { - "const": "NaN" - }, - { - "const": "+Infinity" - }, - { - "const": "-Infinity" - } - ], - "default": 0 - } - } - }, - "cFillValueDecimal": { - "$comment": "constraint on fill values if component data type is any numeric type", - "if": { - "properties": { - "@componentDatatype": { - "pattern": "integer|decimal|long|int|short|byte" - } - } - }, - "then": { - "$asm.fill-value": { - "type": "number", - "default": 0 - } - } - }, - "cFillValueString": { - "$comment": "constraint on fill values if component data type is string", - "if": { - "properties": { - "@componentDatatype": { - "pattern": "string|dateTime|date" - } - } - }, - "then": { - "$asm.fill-value": { - "type": "string", - "default": "" - } - } - } - } - }, - "http://purl.allotrope.org/json-schemas/qudt/REC/2024/09/units.schema": { - "$id": "http://purl.allotrope.org/json-schemas/qudt/REC/2024/09/units.schema", - "$comment": "Auto-generated from QUDT 1.1 and Allotrope Extensions for QUDT", - "$defs": { - "\"": { - "properties": { - "unit": { - "type": "string", - "const": "\"", - "$asm.unit-iri": "http://qudt.org/vocab/unit#SecondAngle" - } - }, - "required": [ - "unit" - ] - }, - "#": { - "properties": { - "unit": { - "type": "string", - "const": "#", - "$asm.unit-iri": "http://qudt.org/vocab/unit#Number" - } - }, - "required": [ - "unit" - ] - }, - "#/yr": { - "properties": { - "unit": { - "type": "string", - "const": "#/yr", - "$asm.unit-iri": "http://qudt.org/vocab/unit#NumberPerYear" - } - }, - "required": [ - "unit" - ] - }, - "%": { - "properties": { - "unit": { - "type": "string", - "const": "%", - "$asm.unit-iri": "http://qudt.org/vocab/unit#Percent" - } - }, - "required": [ - "unit" - ] - }, - "'": { - "properties": { - "unit": { - "type": "string", - "const": "'", - "$asm.unit-iri": "http://qudt.org/vocab/unit#MinuteAngle" - } - }, - "required": [ - "unit" - ] - }, - "(K^2) m/W": { - "properties": { - "unit": { - "type": "string", - "const": "(K^2) m/W", - "$asm.unit-iri": "http://qudt.org/vocab/unit#SquareMeterKelvinPerWatt" - } - }, - "required": [ - "unit" - ] - }, - "(unitless)": { - "properties": { - "unit": { - "type": "string", - "const": "(unitless)", - "$asm.unit-iri": "http://purl.allotrope.org/ontology/qudt-ext/unit#Unitless" - } - }, - "required": [ - "unit" - ] - }, - "(°F h ft^2)/Btu": { - "properties": { - "unit": { - "type": "string", - "const": "(°F h ft^2)/Btu", - "$asm.unit-iri": "http://qudt.org/vocab/unit#SquareFootHourDegreeFahrenheitPerBtu" - } - }, - "required": [ - "unit" - ] - }, - "1/cm": { - "properties": { - "unit": { - "type": "string", - "const": "1/cm", - "$asm.unit-iri": "http://purl.allotrope.org/ontology/qudt-ext/unit#ReciprocalCentimeter" - } - }, - "required": [ - "unit" - ] - }, - "10^-6/bar": { - "properties": { - "unit": { - "type": "string", - "const": "10^-6/bar", - "$asm.unit-iri": "http://purl.allotrope.org/ontology/qudt-ext/unit#DimensionlessMicroPerBar" - } - }, - "required": [ - "unit" - ] - }, - "10^6 cells/mL": { - "properties": { - "unit": { - "type": "string", - "const": "10^6 cells/mL", - "$asm.unit-iri": "http://purl.allotrope.org/ontology/qudt-ext/unit#MillionCellsPerMilliliter" - } - }, - "required": [ - "unit" - ] - }, - "10^9.CFU": { - "properties": { - "unit": { - "type": "string", - "const": "10^9.CFU", - "$asm.unit-iri": "http://purl.allotrope.org/ontology/qudt-ext/unit#BillionCFU" - } - }, - "required": [ - "unit" - ] - }, - "2θ": { - "properties": { - "unit": { - "type": "string", - "const": "2θ", - "$asm.unit-iri": "http://purl.allotrope.org/ontology/qudt-ext/unit#TwoTheta" - } - }, - "required": [ - "unit" - ] - }, - "A": { - "properties": { - "unit": { - "type": "string", - "const": "A", - "$asm.unit-iri": "http://qudt.org/vocab/unit#Ampere" - } - }, - "required": [ - "unit" - ] - }, - "A J^-1": { - "properties": { - "unit": { - "type": "string", - "const": "A J^-1", - "$asm.unit-iri": "http://qudt.org/vocab/unit#AmperePerJoule" - } - }, - "required": [ - "unit" - ] - }, - "A h": { - "properties": { - "unit": { - "type": "string", - "const": "A h", - "$asm.unit-iri": "http://qudt.org/vocab/unit#AmpereHour" - } - }, - "required": [ - "unit" - ] - }, - "A/deg": { - "properties": { - "unit": { - "type": "string", - "const": "A/deg", - "$asm.unit-iri": "http://qudt.org/vocab/unit#AmperePerDegree" - } - }, - "required": [ - "unit" - ] - }, - "A/m": { - "properties": { - "unit": { - "type": "string", - "const": "A/m", - "$asm.unit-iri": "http://qudt.org/vocab/unit#AmperePerMeter" - } - }, - "required": [ - "unit" - ] - }, - "A/m^2": { - "properties": { - "unit": { - "type": "string", - "const": "A/m^2", - "$asm.unit-iri": "http://qudt.org/vocab/unit#AmperePerSquareMeter" - } - }, - "required": [ - "unit" - ] - }, - "A/rad": { - "properties": { - "unit": { - "type": "string", - "const": "A/rad", - "$asm.unit-iri": "http://qudt.org/vocab/unit#AmperePerRadian" - } - }, - "required": [ - "unit" - ] - }, - "AMU": { - "properties": { - "unit": { - "type": "string", - "const": "AMU", - "$asm.unit-iri": "http://qudt.org/vocab/unit#UnifiedAtomicMassUnit" - } - }, - "required": [ - "unit" - ] - }, - "AT": { - "properties": { - "unit": { - "type": "string", - "const": "AT", - "$asm.unit-iri": "http://qudt.org/vocab/unit#TonAssay" - } - }, - "required": [ - "unit" - ] - }, - "AU": { - "properties": { - "unit": { - "type": "string", - "const": "AU", - "$asm.unit-iri": "http://purl.allotrope.org/ontology/qudt-ext/unit#AbsorbanceUnit" - } - }, - "required": [ - "unit" - ] - }, - "AU.s": { - "properties": { - "unit": { - "type": "string", - "const": "AU.s", - "$asm.unit-iri": "http://purl.allotrope.org/ontology/qudt-ext/unit#AbsorbanceUnitTimesSecond" - } - }, - "required": [ - "unit" - ] - }, - "At": { - "properties": { - "unit": { - "type": "string", - "const": "At", - "$asm.unit-iri": "http://qudt.org/vocab/unit#AmpereTurn" - } - }, - "required": [ - "unit" - ] - }, - "At/in": { - "properties": { - "unit": { - "type": "string", - "const": "At/in", - "$asm.unit-iri": "http://qudt.org/vocab/unit#AmpereTurnPerInch" - } - }, - "required": [ - "unit" - ] - }, - "At/m": { - "properties": { - "unit": { - "type": "string", - "const": "At/m", - "$asm.unit-iri": "http://qudt.org/vocab/unit#AmpereTurnPerMeter" - } - }, - "required": [ - "unit" - ] - }, - "B": { - "properties": { - "unit": { - "type": "string", - "const": "B", - "$asm.unit-iri": "http://qudt.org/vocab/unit#Byte" - } - }, - "required": [ - "unit" - ] - }, - "BPM": { - "properties": { - "unit": { - "type": "string", - "const": "BPM", - "$asm.unit-iri": "http://qudt.org/vocab/unit#HeartBeatsPerMinute" - } - }, - "required": [ - "unit" - ] - }, - "Bf": { - "properties": { - "unit": { - "type": "string", - "const": "Bf", - "$asm.unit-iri": "http://qudt.org/vocab/unit#BoardFoot" - } - }, - "required": [ - "unit" - ] - }, - "Bi": { - "properties": { - "unit": { - "type": "string", - "const": "Bi", - "$asm.unit-iri": "http://qudt.org/vocab/unit#Biot" - } - }, - "required": [ - "unit" - ] - }, - "Bq": { - "properties": { - "unit": { - "type": "string", - "const": "Bq", - "$asm.unit-iri": "http://qudt.org/vocab/unit#Becquerel" - } - }, - "required": [ - "unit" - ] - }, - "Bq/g": { - "properties": { - "unit": { - "type": "string", - "const": "Bq/g", - "$asm.unit-iri": "http://purl.allotrope.org/ontology/qudt-ext/unit#BecquerelPerGram" - } - }, - "required": [ - "unit" - ] - }, - "Btu (it)": { - "properties": { - "unit": { - "type": "string", - "const": "Btu (it)", - "$asm.unit-iri": "http://qudt.org/vocab/unit#BritishThermalUnitInternationalTable" - } - }, - "required": [ - "unit" - ] - }, - "Btu (th)": { - "properties": { - "unit": { - "type": "string", - "const": "Btu (th)", - "$asm.unit-iri": "http://qudt.org/vocab/unit#BritishThermalUnitThermochemical" - } - }, - "required": [ - "unit" - ] - }, - "Btu ft": { - "properties": { - "unit": { - "type": "string", - "const": "Btu ft", - "$asm.unit-iri": "http://qudt.org/vocab/unit#BtuFoot" - } - }, - "required": [ - "unit" - ] - }, - "Btu ft/(h ft^2 °F)": { - "properties": { - "unit": { - "type": "string", - "const": "Btu ft/(h ft^2 °F)", - "$asm.unit-iri": "http://qudt.org/vocab/unit#BtuFootPerSquareFootHourDegreeFahrenheit" - } - }, - "required": [ - "unit" - ] - }, - "Btu in": { - "properties": { - "unit": { - "type": "string", - "const": "Btu in", - "$asm.unit-iri": "http://qudt.org/vocab/unit#BtuInch" - } - }, - "required": [ - "unit" - ] - }, - "Btu in/(ft^2 s °F)": { - "properties": { - "unit": { - "type": "string", - "const": "Btu in/(ft^2 s °F)", - "$asm.unit-iri": "http://qudt.org/vocab/unit#BtuInchPerSquareFootSecondDegreeFahrenheit" - } - }, - "required": [ - "unit" - ] - }, - "Btu in/(h ft^2 °F)": { - "properties": { - "unit": { - "type": "string", - "const": "Btu in/(h ft^2 °F)", - "$asm.unit-iri": "http://qudt.org/vocab/unit#BtuInchPerSquareFootHourDegreeFahrenheit" - } - }, - "required": [ - "unit" - ] - }, - "Btu/(ft^2 s °F)": { - "properties": { - "unit": { - "type": "string", - "const": "Btu/(ft^2 s °F)", - "$asm.unit-iri": "http://qudt.org/vocab/unit#BtuPerSquareFootSecondDegreeFahrenheit" - } - }, - "required": [ - "unit" - ] - }, - "Btu/(h ft^2 °F)": { - "properties": { - "unit": { - "type": "string", - "const": "Btu/(h ft^2 °F)", - "$asm.unit-iri": "http://qudt.org/vocab/unit#BtuPerSquareFootHourDegreeFahrenheit" - } - }, - "required": [ - "unit" - ] - }, - "Btu/(h ft^2)": { - "properties": { - "unit": { - "type": "string", - "const": "Btu/(h ft^2)", - "$asm.unit-iri": "http://qudt.org/vocab/unit#BtuPerHourSquareFoot" - } - }, - "required": [ - "unit" - ] - }, - "Btu/(lb mol °F)": { - "properties": { - "unit": { - "type": "string", - "const": "Btu/(lb mol °F)", - "$asm.unit-iri": "http://qudt.org/vocab/unit#BtuPerPoundMoleDegreeFahrenheit" - } - }, - "required": [ - "unit" - ] - }, - "Btu/(lb mol)": { - "properties": { - "unit": { - "type": "string", - "const": "Btu/(lb mol)", - "$asm.unit-iri": "http://qudt.org/vocab/unit#BtuPerPoundMole" - } - }, - "required": [ - "unit" - ] - }, - "Btu/(lb °F)": { - "properties": { - "unit": { - "type": "string", - "const": "Btu/(lb °F)", - "$asm.unit-iri": "http://qudt.org/vocab/unit#BtuPerPoundDegreeFahrenheit" - } - }, - "required": [ - "unit" - ] - }, - "Btu/(lb °R)": { - "properties": { - "unit": { - "type": "string", - "const": "Btu/(lb °R)", - "$asm.unit-iri": "http://qudt.org/vocab/unit#BtuPerPoundDegreeRankine" - } - }, - "required": [ - "unit" - ] - }, - "Btu/(s ft^2)": { - "properties": { - "unit": { - "type": "string", - "const": "Btu/(s ft^2)", - "$asm.unit-iri": "http://qudt.org/vocab/unit#BtuPerSecondSquareFoot" - } - }, - "required": [ - "unit" - ] - }, - "Btu/ft^2": { - "properties": { - "unit": { - "type": "string", - "const": "Btu/ft^2", - "$asm.unit-iri": "http://qudt.org/vocab/unit#BtuPerSquareFoot" - } - }, - "required": [ - "unit" - ] - }, - "Btu/h": { - "properties": { - "unit": { - "type": "string", - "const": "Btu/h", - "$asm.unit-iri": "http://qudt.org/vocab/unit#BtuPerHour" - } - }, - "required": [ - "unit" - ] - }, - "Btu/lb": { - "properties": { - "unit": { - "type": "string", - "const": "Btu/lb", - "$asm.unit-iri": "http://qudt.org/vocab/unit#BtuPerPound" - } - }, - "required": [ - "unit" - ] - }, - "Btu/s": { - "properties": { - "unit": { - "type": "string", - "const": "Btu/s", - "$asm.unit-iri": "http://qudt.org/vocab/unit#BtuPerSecond" - } - }, - "required": [ - "unit" - ] - }, - "Btu/°F": { - "properties": { - "unit": { - "type": "string", - "const": "Btu/°F", - "$asm.unit-iri": "http://qudt.org/vocab/unit#BtuPerDegreeFahrenheit" - } - }, - "required": [ - "unit" - ] - }, - "Btu/°R": { - "properties": { - "unit": { - "type": "string", - "const": "Btu/°R", - "$asm.unit-iri": "http://qudt.org/vocab/unit#BtuPerDegreeRankine" - } - }, - "required": [ - "unit" - ] - }, - "C": { - "properties": { - "unit": { - "type": "string", - "const": "C", - "$asm.unit-iri": "http://qudt.org/vocab/unit#Coulomb" - } - }, - "required": [ - "unit" - ] - }, - "C m": { - "properties": { - "unit": { - "type": "string", - "const": "C m", - "$asm.unit-iri": "http://qudt.org/vocab/unit#CoulombMeter" - } - }, - "required": [ - "unit" - ] - }, - "C m^-2": { - "properties": { - "unit": { - "type": "string", - "const": "C m^-2", - "$asm.unit-iri": "http://qudt.org/vocab/unit#CoulombPerSquareMeter" - } - }, - "required": [ - "unit" - ] - }, - "C m^-3": { - "properties": { - "unit": { - "type": "string", - "const": "C m^-3", - "$asm.unit-iri": "http://qudt.org/vocab/unit#CoulombPerCubicMeter" - } - }, - "required": [ - "unit" - ] - }, - "C m^2": { - "properties": { - "unit": { - "type": "string", - "const": "C m^2", - "$asm.unit-iri": "http://qudt.org/vocab/unit#CoulombSquareMeter" - } - }, - "required": [ - "unit" - ] - }, - "C/kg": { - "properties": { - "unit": { - "type": "string", - "const": "C/kg", - "$asm.unit-iri": "http://qudt.org/vocab/unit#CoulombPerKilogram" - } - }, - "required": [ - "unit" - ] - }, - "C/m": { - "properties": { - "unit": { - "type": "string", - "const": "C/m", - "$asm.unit-iri": "http://qudt.org/vocab/unit#CoulombPerMeter" - } - }, - "required": [ - "unit" - ] - }, - "C/mol": { - "properties": { - "unit": { - "type": "string", - "const": "C/mol", - "$asm.unit-iri": "http://qudt.org/vocab/unit#CoulombPerMole" - } - }, - "required": [ - "unit" - ] - }, - "CCID50/mL": { - "properties": { - "unit": { - "type": "string", - "const": "CCID50/mL", - "$asm.unit-iri": "http://purl.allotrope.org/ontology/qudt-ext/unit#CCID50PerMilliliter" - } - }, - "required": [ - "unit" - ] - }, - "CFU": { - "properties": { - "unit": { - "type": "string", - "const": "CFU", - "$asm.unit-iri": "http://qudt.org/vocab/unit#ColonyFormingUnit" - } - }, - "required": [ - "unit" - ] - }, - "C^2 m^2 J^-1": { - "properties": { - "unit": { - "type": "string", - "const": "C^2 m^2 J^-1", - "$asm.unit-iri": "http://qudt.org/vocab/unit#SquareCoulombMeterPerJoule" - } - }, - "required": [ - "unit" - ] - }, - "C^3 m^3 J^-2": { - "properties": { - "unit": { - "type": "string", - "const": "C^3 m^3 J^-2", - "$asm.unit-iri": "http://qudt.org/vocab/unit#CubicCoulombMeterPerSquareJoule" - } - }, - "required": [ - "unit" - ] - }, - "C^4 m^4 J^-3": { - "properties": { - "unit": { - "type": "string", - "const": "C^4 m^4 J^-3", - "$asm.unit-iri": "http://qudt.org/vocab/unit#QuarticCoulombMeterPerCubicEnergy" - } - }, - "required": [ - "unit" - ] - }, - "Cal": { - "properties": { - "unit": { - "type": "string", - "const": "Cal", - "$asm.unit-iri": "http://qudt.org/vocab/unit#CalorieNutritional" - } - }, - "required": [ - "unit" - ] - }, - "Ci": { - "properties": { - "unit": { - "type": "string", - "const": "Ci", - "$asm.unit-iri": "http://qudt.org/vocab/unit#Curie" - } - }, - "required": [ - "unit" - ] - }, - "Counts": { - "properties": { - "unit": { - "type": "string", - "const": "Counts", - "$asm.unit-iri": "http://purl.allotrope.org/ontology/qudt-ext/unit#Counts" - } - }, - "required": [ - "unit" - ] - }, - "Counts.s": { - "properties": { - "unit": { - "type": "string", - "const": "Counts.s", - "$asm.unit-iri": "http://purl.allotrope.org/ontology/qudt-ext/unit#CountsTimesSecond" - } - }, - "required": [ - "unit" - ] - }, - "Counts/mL": { - "properties": { - "unit": { - "type": "string", - "const": "Counts/mL", - "$asm.unit-iri": "http://purl.allotrope.org/ontology/qudt-ext/unit#CountsPerMilliliter" - } - }, - "required": [ - "unit" - ] - }, - "Counts/s": { - "properties": { - "unit": { - "type": "string", - "const": "Counts/s", - "$asm.unit-iri": "http://purl.allotrope.org/ontology/qudt-ext/unit#CountsPerSecond" - } - }, - "required": [ - "unit" - ] - }, - "Counts/μL": { - "properties": { - "unit": { - "type": "string", - "const": "Counts/μL", - "$asm.unit-iri": "http://purl.allotrope.org/ontology/qudt-ext/unit#CountsPerMicroliter" - } - }, - "required": [ - "unit" - ] - }, - "D": { - "properties": { - "unit": { - "type": "string", - "const": "D", - "$asm.unit-iri": "http://qudt.org/vocab/unit#Debye" - } - }, - "required": [ - "unit" - ] - }, - "Da": { - "properties": { - "unit": { - "type": "string", - "const": "Da", - "$asm.unit-iri": "http://qudt.org/vocab/unit#Dalton" - } - }, - "required": [ - "unit" - ] - }, - "E_h": { - "properties": { - "unit": { - "type": "string", - "const": "E_h", - "$asm.unit-iri": "http://qudt.org/vocab/unit#Hartree" - } - }, - "required": [ - "unit" - ] - }, - "F": { - "properties": { - "unit": { - "type": "string", - "const": "F", - "$asm.unit-iri": "http://qudt.org/vocab/unit#Farad" - } - }, - "required": [ - "unit" - ] - }, - "F/m": { - "properties": { - "unit": { - "type": "string", - "const": "F/m", - "$asm.unit-iri": "http://qudt.org/vocab/unit#FaradPerMeter" - } - }, - "required": [ - "unit" - ] - }, - "FFU/mL": { - "properties": { - "unit": { - "type": "string", - "const": "FFU/mL", - "$asm.unit-iri": "http://purl.allotrope.org/ontology/qudt-ext/unit#FocusFormingUnitPerMilliliter" - } - }, - "required": [ - "unit" - ] - }, - "Fd": { - "properties": { - "unit": { - "type": "string", - "const": "Fd", - "$asm.unit-iri": "http://qudt.org/vocab/unit#Faraday" - } - }, - "required": [ - "unit" - ] - }, - "Fr": { - "properties": { - "unit": { - "type": "string", - "const": "Fr", - "$asm.unit-iri": "http://qudt.org/vocab/unit#Franklin" - } - }, - "required": [ - "unit" - ] - }, - "G": { - "properties": { - "unit": { - "type": "string", - "const": "G", - "$asm.unit-iri": "http://qudt.org/vocab/unit#Gravity" - } - }, - "required": [ - "unit" - ] - }, - "GHz": { - "properties": { - "unit": { - "type": "string", - "const": "GHz", - "$asm.unit-iri": "http://qudt.org/vocab/unit#GigaHertz" - } - }, - "required": [ - "unit" - ] - }, - "GU": { - "properties": { - "unit": { - "type": "string", - "const": "GU", - "$asm.unit-iri": "http://purl.allotrope.org/ontology/qudt-ext/unit#GlossUnit" - } - }, - "required": [ - "unit" - ] - }, - "Gal": { - "properties": { - "unit": { - "type": "string", - "const": "Gal", - "$asm.unit-iri": "http://qudt.org/vocab/unit#Gal" - } - }, - "required": [ - "unit" - ] - }, - "GeV": { - "properties": { - "unit": { - "type": "string", - "const": "GeV", - "$asm.unit-iri": "http://qudt.org/vocab/unit#GigaElectronVolt" - } - }, - "required": [ - "unit" - ] - }, - "GeV^-2": { - "properties": { - "unit": { - "type": "string", - "const": "GeV^-2", - "$asm.unit-iri": "http://qudt.org/vocab/unit#PerSquareGigaElectronVolt" - } - }, - "required": [ - "unit" - ] - }, - "Gi": { - "properties": { - "unit": { - "type": "string", - "const": "Gi", - "$asm.unit-iri": "http://qudt.org/vocab/unit#Gilbert" - } - }, - "required": [ - "unit" - ] - }, - "Gs": { - "properties": { - "unit": { - "type": "string", - "const": "Gs", - "$asm.unit-iri": "http://qudt.org/vocab/unit#Gauss" - } - }, - "required": [ - "unit" - ] - }, - "Gy": { - "properties": { - "unit": { - "type": "string", - "const": "Gy", - "$asm.unit-iri": "http://qudt.org/vocab/unit#Gray" - } - }, - "required": [ - "unit" - ] - }, - "Gy/s": { - "properties": { - "unit": { - "type": "string", - "const": "Gy/s", - "$asm.unit-iri": "http://qudt.org/vocab/unit#GrayPerSecond" - } - }, - "required": [ - "unit" - ] - }, - "H": { - "properties": { - "unit": { - "type": "string", - "const": "H", - "$asm.unit-iri": "http://qudt.org/vocab/unit#Henry" - } - }, - "required": [ - "unit" - ] - }, - "H/m": { - "properties": { - "unit": { - "type": "string", - "const": "H/m", - "$asm.unit-iri": "http://qudt.org/vocab/unit#HenryPerMeter" - } - }, - "required": [ - "unit" - ] - }, - "HP": { - "properties": { - "unit": { - "type": "string", - "const": "HP", - "$asm.unit-iri": "http://qudt.org/vocab/unit#Horsepower" - } - }, - "required": [ - "unit" - ] - }, - "Hz": { - "properties": { - "unit": { - "type": "string", - "const": "Hz", - "$asm.unit-iri": "http://qudt.org/vocab/unit#Hertz" - } - }, - "required": [ - "unit" - ] - }, - "Hz.s": { - "properties": { - "unit": { - "type": "string", - "const": "Hz.s", - "$asm.unit-iri": "http://purl.allotrope.org/ontology/qudt-ext/unit#HertzTimesSecond" - } - }, - "required": [ - "unit" - ] - }, - "Hz/K": { - "properties": { - "unit": { - "type": "string", - "const": "Hz/K", - "$asm.unit-iri": "http://qudt.org/vocab/unit#HertzPerKelvin" - } - }, - "required": [ - "unit" - ] - }, - "Hz/T": { - "properties": { - "unit": { - "type": "string", - "const": "Hz/T", - "$asm.unit-iri": "http://qudt.org/vocab/unit#HertzPerTesla" - } - }, - "required": [ - "unit" - ] - }, - "Hz/V": { - "properties": { - "unit": { - "type": "string", - "const": "Hz/V", - "$asm.unit-iri": "http://qudt.org/vocab/unit#HertzPerVolt" - } - }, - "required": [ - "unit" - ] - }, - "IU": { - "properties": { - "unit": { - "type": "string", - "const": "IU", - "$asm.unit-iri": "http://qudt.org/vocab/unit#InternationalUnit" - } - }, - "required": [ - "unit" - ] - }, - "IU/L": { - "properties": { - "unit": { - "type": "string", - "const": "IU/L", - "$asm.unit-iri": "http://qudt.org/vocab/unit#InternationalUnitPerLiter" - } - }, - "required": [ - "unit" - ] - }, - "J": { - "properties": { - "unit": { - "type": "string", - "const": "J", - "$asm.unit-iri": "http://qudt.org/vocab/unit#Joule" - } - }, - "required": [ - "unit" - ] - }, - "J T^-2": { - "properties": { - "unit": { - "type": "string", - "const": "J T^-2", - "$asm.unit-iri": "http://qudt.org/vocab/unit#JoulePerSquareTesla" - } - }, - "required": [ - "unit" - ] - }, - "J m mol^-1": { - "properties": { - "unit": { - "type": "string", - "const": "J m mol^-1", - "$asm.unit-iri": "http://qudt.org/vocab/unit#JouleMeterPerMole" - } - }, - "required": [ - "unit" - ] - }, - "J mol^-1 K^-1": { - "properties": { - "unit": { - "type": "string", - "const": "J mol^-1 K^-1", - "$asm.unit-iri": "http://qudt.org/vocab/unit#JoulePerMoleKelvin" - } - }, - "required": [ - "unit" - ] - }, - "J s": { - "properties": { - "unit": { - "type": "string", - "const": "J s", - "$asm.unit-iri": "http://qudt.org/vocab/unit#JouleSecond" - } - }, - "required": [ - "unit" - ] - }, - "J s mol^-1": { - "properties": { - "unit": { - "type": "string", - "const": "J s mol^-1", - "$asm.unit-iri": "http://qudt.org/vocab/unit#JouleSecondPerMole" - } - }, - "required": [ - "unit" - ] - }, - "J/(g °C)": { - "properties": { - "unit": { - "type": "string", - "const": "J/(g °C)", - "$asm.unit-iri": "http://purl.allotrope.org/ontology/qudt-ext/unit#JoulePerGramDegreeCelsius" - } - }, - "required": [ - "unit" - ] - }, - "J/(kg K Pa)": { - "properties": { - "unit": { - "type": "string", - "const": "J/(kg K Pa)", - "$asm.unit-iri": "http://qudt.org/vocab/unit#JoulePerKilogramKelvinPerPascal" - } - }, - "required": [ - "unit" - ] - }, - "J/(kg K m^3)": { - "properties": { - "unit": { - "type": "string", - "const": "J/(kg K m^3)", - "$asm.unit-iri": "http://qudt.org/vocab/unit#JoulePerKilogramKelvinPerCubicMeter" - } - }, - "required": [ - "unit" - ] - }, - "J/(kg K)": { - "properties": { - "unit": { - "type": "string", - "const": "J/(kg K)", - "$asm.unit-iri": "http://qudt.org/vocab/unit#JoulePerKilogramKelvin" - } - }, - "required": [ - "unit" - ] - }, - "J/(m^3 K)": { - "properties": { - "unit": { - "type": "string", - "const": "J/(m^3 K)", - "$asm.unit-iri": "http://qudt.org/vocab/unit#JoulePerCubicMeterKelvin" - } - }, - "required": [ - "unit" - ] - }, - "J/K": { - "properties": { - "unit": { - "type": "string", - "const": "J/K", - "$asm.unit-iri": "http://qudt.org/vocab/unit#JoulePerKelvin" - } - }, - "required": [ - "unit" - ] - }, - "J/T": { - "properties": { - "unit": { - "type": "string", - "const": "J/T", - "$asm.unit-iri": "http://qudt.org/vocab/unit#JoulePerTesla" - } - }, - "required": [ - "unit" - ] - }, - "J/g": { - "properties": { - "unit": { - "type": "string", - "const": "J/g", - "$asm.unit-iri": "http://purl.allotrope.org/ontology/qudt-ext/unit#JoulePerGram" - } - }, - "required": [ - "unit" - ] - }, - "J/kg": { - "properties": { - "unit": { - "type": "string", - "const": "J/kg", - "$asm.unit-iri": "http://qudt.org/vocab/unit#JoulePerKilogram" - } - }, - "required": [ - "unit" - ] - }, - "J/m^2": { - "properties": { - "unit": { - "type": "string", - "const": "J/m^2", - "$asm.unit-iri": "http://qudt.org/vocab/unit#JoulePerSquareMeter" - } - }, - "required": [ - "unit" - ] - }, - "J/m^3": { - "properties": { - "unit": { - "type": "string", - "const": "J/m^3", - "$asm.unit-iri": "http://qudt.org/vocab/unit#JoulePerCubicMeter" - } - }, - "required": [ - "unit" - ] - }, - "J/mol": { - "properties": { - "unit": { - "type": "string", - "const": "J/mol", - "$asm.unit-iri": "http://qudt.org/vocab/unit#JoulePerMole" - } - }, - "required": [ - "unit" - ] - }, - "J/°C": { - "properties": { - "unit": { - "type": "string", - "const": "J/°C", - "$asm.unit-iri": "http://purl.allotrope.org/ontology/qudt-ext/unit#JoulePerDegreeCelsius" - } - }, - "required": [ - "unit" - ] - }, - "K": { - "properties": { - "unit": { - "type": "string", - "const": "K", - "$asm.unit-iri": "http://qudt.org/vocab/unit#Kelvin" - } - }, - "required": [ - "unit" - ] - }, - "K-m/W": { - "properties": { - "unit": { - "type": "string", - "const": "K-m/W", - "$asm.unit-iri": "http://qudt.org/vocab/unit#MeterKelvinPerWatt" - } - }, - "required": [ - "unit" - ] - }, - "K/T": { - "properties": { - "unit": { - "type": "string", - "const": "K/T", - "$asm.unit-iri": "http://qudt.org/vocab/unit#KelvinPerTesla" - } - }, - "required": [ - "unit" - ] - }, - "K/W": { - "properties": { - "unit": { - "type": "string", - "const": "K/W", - "$asm.unit-iri": "http://qudt.org/vocab/unit#KelvinPerWatt" - } - }, - "required": [ - "unit" - ] - }, - "K/h": { - "properties": { - "unit": { - "type": "string", - "const": "K/h", - "$asm.unit-iri": "http://qudt.org/vocab/unit#KelvinPerHour" - } - }, - "required": [ - "unit" - ] - }, - "K/m": { - "properties": { - "unit": { - "type": "string", - "const": "K/m", - "$asm.unit-iri": "http://qudt.org/vocab/unit#KelvinPerMinute" - } - }, - "required": [ - "unit" - ] - }, - "K/s": { - "properties": { - "unit": { - "type": "string", - "const": "K/s", - "$asm.unit-iri": "http://qudt.org/vocab/unit#KelvinPerSecond" - } - }, - "required": [ - "unit" - ] - }, - "L": { - "properties": { - "unit": { - "type": "string", - "const": "L", - "$asm.unit-iri": "http://qudt.org/vocab/unit#Liter" - } - }, - "required": [ - "unit" - ] - }, - "L/(g cm)": { - "properties": { - "unit": { - "type": "string", - "const": "L/(g cm)", - "$asm.unit-iri": "http://purl.allotrope.org/ontology/qudt-ext/unit#LiterPerGramCentimeter" - } - }, - "required": [ - "unit" - ] - }, - "L/kg": { - "properties": { - "unit": { - "type": "string", - "const": "L/kg", - "$asm.unit-iri": "http://purl.allotrope.org/ontology/qudt-ext/unit#LiterPerKilogram" - } - }, - "required": [ - "unit" - ] - }, - "L/min": { - "properties": { - "unit": { - "type": "string", - "const": "L/min", - "$asm.unit-iri": "http://purl.allotrope.org/ontology/qudt-ext/unit#LiterPerMinute" - } - }, - "required": [ - "unit" - ] - }, - "L/s": { - "properties": { - "unit": { - "type": "string", - "const": "L/s", - "$asm.unit-iri": "http://purl.allotrope.org/ontology/qudt-ext/unit#LiterPerSecond" - } - }, - "required": [ - "unit" - ] - }, - "LU": { - "properties": { - "unit": { - "type": "string", - "const": "LU", - "$asm.unit-iri": "http://purl.allotrope.org/ontology/qudt-ext/unit#LuminescenceUnits" - } - }, - "required": [ - "unit" - ] - }, - "Lmb": { - "properties": { - "unit": { - "type": "string", - "const": "Lmb", - "$asm.unit-iri": "http://qudt.org/vocab/unit#Lambert" - } - }, - "required": [ - "unit" - ] - }, - "M": { - "properties": { - "unit": { - "type": "string", - "const": "M", - "$asm.unit-iri": "http://purl.allotrope.org/ontology/qudt-ext/unit#Molar" - } - }, - "required": [ - "unit" - ] - }, - "M$/Flight": { - "properties": { - "unit": { - "type": "string", - "const": "M$/Flight", - "$asm.unit-iri": "http://qudt.org/vocab/unit#MillionDollarsPerFlight" - } - }, - "required": [ - "unit" - ] - }, - "M$/yr": { - "properties": { - "unit": { - "type": "string", - "const": "M$/yr", - "$asm.unit-iri": "http://qudt.org/vocab/unit#MillionDollarsPerYear" - } - }, - "required": [ - "unit" - ] - }, - "MHz": { - "properties": { - "unit": { - "type": "string", - "const": "MHz", - "$asm.unit-iri": "http://qudt.org/vocab/unit#MegaHertz" - } - }, - "required": [ - "unit" - ] - }, - "MHz K^-1": { - "properties": { - "unit": { - "type": "string", - "const": "MHz K^-1", - "$asm.unit-iri": "http://qudt.org/vocab/unit#MegaHertzPerKelvin" - } - }, - "required": [ - "unit" - ] - }, - "MHz T^-1": { - "properties": { - "unit": { - "type": "string", - "const": "MHz T^-1", - "$asm.unit-iri": "http://qudt.org/vocab/unit#MegaHertzPerTesla" - } - }, - "required": [ - "unit" - ] - }, - "MPa": { - "properties": { - "unit": { - "type": "string", - "const": "MPa", - "$asm.unit-iri": "http://purl.allotrope.org/ontology/qudt-ext/unit#MegaPascal" - } - }, - "required": [ - "unit" - ] - }, - "MeV": { - "properties": { - "unit": { - "type": "string", - "const": "MeV", - "$asm.unit-iri": "http://qudt.org/vocab/unit#MegaElectronVolt" - } - }, - "required": [ - "unit" - ] - }, - "MeV fm": { - "properties": { - "unit": { - "type": "string", - "const": "MeV fm", - "$asm.unit-iri": "http://qudt.org/vocab/unit#MegaElectronVoltFemtometer" - } - }, - "required": [ - "unit" - ] - }, - "MeV/c": { - "properties": { - "unit": { - "type": "string", - "const": "MeV/c", - "$asm.unit-iri": "http://qudt.org/vocab/unit#MegaElectronVoltPerSpeedOfLight" - } - }, - "required": [ - "unit" - ] - }, - "MeV/cm": { - "properties": { - "unit": { - "type": "string", - "const": "MeV/cm", - "$asm.unit-iri": "http://qudt.org/vocab/unit#MegaElectronVoltPerCentimeter" - } - }, - "required": [ - "unit" - ] - }, - "Mx": { - "properties": { - "unit": { - "type": "string", - "const": "Mx", - "$asm.unit-iri": "http://qudt.org/vocab/unit#Maxwell" - } - }, - "required": [ - "unit" - ] - }, - "N": { - "properties": { - "unit": { - "type": "string", - "const": "N", - "$asm.unit-iri": "http://qudt.org/vocab/unit#Newton" - } - }, - "required": [ - "unit" - ] - }, - "N m": { - "properties": { - "unit": { - "type": "string", - "const": "N m", - "$asm.unit-iri": "http://qudt.org/vocab/unit#NewtonMeter" - } - }, - "required": [ - "unit" - ] - }, - "N/C": { - "properties": { - "unit": { - "type": "string", - "const": "N/C", - "$asm.unit-iri": "http://qudt.org/vocab/unit#NewtonPerCoulomb" - } - }, - "required": [ - "unit" - ] - }, - "N/kg": { - "properties": { - "unit": { - "type": "string", - "const": "N/kg", - "$asm.unit-iri": "http://qudt.org/vocab/unit#NewtonPerKilogram" - } - }, - "required": [ - "unit" - ] - }, - "N/m": { - "properties": { - "unit": { - "type": "string", - "const": "N/m", - "$asm.unit-iri": "http://qudt.org/vocab/unit#NewtonPerMeter" - } - }, - "required": [ - "unit" - ] - }, - "N/mm^2": { - "properties": { - "unit": { - "type": "string", - "const": "N/mm^2", - "$asm.unit-iri": "http://purl.allotrope.org/ontology/qudt-ext/unit#NewtonPerSquareMillimeter" - } - }, - "required": [ - "unit" - ] - }, - "NTU": { - "properties": { - "unit": { - "type": "string", - "const": "NTU", - "$asm.unit-iri": "http://qudt.org/vocab/unit#NephelometricTurbidityUnit" - } - }, - "required": [ - "unit" - ] - }, - "Nm/ct": { - "properties": { - "unit": { - "type": "string", - "const": "Nm/ct", - "$asm.unit-iri": "http://qudt.org/vocab/unit#Carat" - } - }, - "required": [ - "unit" - ] - }, - "Oe": { - "properties": { - "unit": { - "type": "string", - "const": "Oe", - "$asm.unit-iri": "http://qudt.org/vocab/unit#Oersted" - } - }, - "required": [ - "unit" - ] - }, - "Oe cm": { - "properties": { - "unit": { - "type": "string", - "const": "Oe cm", - "$asm.unit-iri": "http://qudt.org/vocab/unit#OerstedCentimeter" - } - }, - "required": [ - "unit" - ] - }, - "P": { - "properties": { - "unit": { - "type": "string", - "const": "P", - "$asm.unit-iri": "http://qudt.org/vocab/unit#Poise" - } - }, - "required": [ - "unit" - ] - }, - "PFU": { - "properties": { - "unit": { - "type": "string", - "const": "PFU", - "$asm.unit-iri": "http://purl.allotrope.org/ontology/qudt-ext/unit#PlaqueFormingUnit" - } - }, - "required": [ - "unit" - ] - }, - "Pa": { - "properties": { - "unit": { - "type": "string", - "const": "Pa", - "$asm.unit-iri": "http://qudt.org/vocab/unit#Pascal" - } - }, - "required": [ - "unit" - ] - }, - "Pa s": { - "properties": { - "unit": { - "type": "string", - "const": "Pa s", - "$asm.unit-iri": "http://qudt.org/vocab/unit#PascalSecond" - } - }, - "required": [ - "unit" - ] - }, - "Pa/hr": { - "properties": { - "unit": { - "type": "string", - "const": "Pa/hr", - "$asm.unit-iri": "http://qudt.org/vocab/unit#PascalPerHour" - } - }, - "required": [ - "unit" - ] - }, - "Pa/s": { - "properties": { - "unit": { - "type": "string", - "const": "Pa/s", - "$asm.unit-iri": "http://qudt.org/vocab/unit#PascalPerSecond" - } - }, - "required": [ - "unit" - ] - }, - "Pm": { - "properties": { - "unit": { - "type": "string", - "const": "Pm", - "$asm.unit-iri": "http://qudt.org/vocab/unit#Pica" - } - }, - "required": [ - "unit" - ] - }, - "Q_p": { - "properties": { - "unit": { - "type": "string", - "const": "Q_p", - "$asm.unit-iri": "http://qudt.org/vocab/unit#PlanckCharge" - } - }, - "required": [ - "unit" - ] - }, - "R": { - "properties": { - "unit": { - "type": "string", - "const": "R", - "$asm.unit-iri": "http://qudt.org/vocab/unit#Roentgen" - } - }, - "required": [ - "unit" - ] - }, - "RFU": { - "properties": { - "unit": { - "type": "string", - "const": "RFU", - "$asm.unit-iri": "http://purl.allotrope.org/ontology/qudt-ext/unit#RelativeFluorescenceUnit" - } - }, - "required": [ - "unit" - ] - }, - "RFU.mL": { - "properties": { - "unit": { - "type": "string", - "const": "RFU.mL", - "$asm.unit-iri": "http://purl.allotrope.org/ontology/qudt-ext/unit#RelativeFluorescenceUnitTimesMilliliter" - } - }, - "required": [ - "unit" - ] - }, - "RFU.s": { - "properties": { - "unit": { - "type": "string", - "const": "RFU.s", - "$asm.unit-iri": "http://purl.allotrope.org/ontology/qudt-ext/unit#RelativeFluorescenceUnitTimesSecond" - } - }, - "required": [ - "unit" - ] - }, - "RIU": { - "properties": { - "unit": { - "type": "string", - "const": "RIU", - "$asm.unit-iri": "http://purl.allotrope.org/ontology/qudt-ext/unit#RefractiveIndexUnit" - } - }, - "required": [ - "unit" - ] - }, - "RLU": { - "properties": { - "unit": { - "type": "string", - "const": "RLU", - "$asm.unit-iri": "http://purl.allotrope.org/ontology/qudt-ext/unit#RelativeLightUnit" - } - }, - "required": [ - "unit" - ] - }, - "RLU.mL": { - "properties": { - "unit": { - "type": "string", - "const": "RLU.mL", - "$asm.unit-iri": "http://purl.allotrope.org/ontology/qudt-ext/unit#RelativeLightUnitTimesMilliliter" - } - }, - "required": [ - "unit" - ] - }, - "RLU.s": { - "properties": { - "unit": { - "type": "string", - "const": "RLU.s", - "$asm.unit-iri": "http://purl.allotrope.org/ontology/qudt-ext/unit#RelativeLightUnitTimesSecond" - } - }, - "required": [ - "unit" - ] - }, - "RT": { - "properties": { - "unit": { - "type": "string", - "const": "RT", - "$asm.unit-iri": "http://qudt.org/vocab/unit#RegisterTon" - } - }, - "required": [ - "unit" - ] - }, - "S": { - "properties": { - "unit": { - "type": "string", - "const": "S", - "$asm.unit-iri": "http://qudt.org/vocab/unit#Siemens" - } - }, - "required": [ - "unit" - ] - }, - "S/m": { - "properties": { - "unit": { - "type": "string", - "const": "S/m", - "$asm.unit-iri": "http://purl.allotrope.org/ontology/qudt-ext/unit#SiemensPerMeter" - } - }, - "required": [ - "unit" - ] - }, - "Sh": { - "properties": { - "unit": { - "type": "string", - "const": "Sh", - "$asm.unit-iri": "http://qudt.org/vocab/unit#Shake" - } - }, - "required": [ - "unit" - ] - }, - "St": { - "properties": { - "unit": { - "type": "string", - "const": "St", - "$asm.unit-iri": "http://qudt.org/vocab/unit#Stokes" - } - }, - "required": [ - "unit" - ] - }, - "Sv": { - "properties": { - "unit": { - "type": "string", - "const": "Sv", - "$asm.unit-iri": "http://qudt.org/vocab/unit#Sievert" - } - }, - "required": [ - "unit" - ] - }, - "T": { - "properties": { - "unit": { - "type": "string", - "const": "T", - "$asm.unit-iri": "http://qudt.org/vocab/unit#Tesla" - } - }, - "required": [ - "unit" - ] - }, - "U": { - "properties": { - "unit": { - "type": "string", - "const": "U", - "$asm.unit-iri": "http://purl.allotrope.org/ontology/qudt-ext/unit#EnzymeUnit" - } - }, - "required": [ - "unit" - ] - }, - "U/nWb": { - "properties": { - "unit": { - "type": "string", - "const": "U/nWb", - "$asm.unit-iri": "http://qudt.org/vocab/unit#UnitPole" - } - }, - "required": [ - "unit" - ] - }, - "US gal": { - "properties": { - "unit": { - "type": "string", - "const": "US gal", - "$asm.unit-iri": "http://qudt.org/vocab/unit#GallonUS" - } - }, - "required": [ - "unit" - ] - }, - "V": { - "properties": { - "unit": { - "type": "string", - "const": "V", - "$asm.unit-iri": "http://qudt.org/vocab/unit#Volt" - } - }, - "required": [ - "unit" - ] - }, - "V m^-2": { - "properties": { - "unit": { - "type": "string", - "const": "V m^-2", - "$asm.unit-iri": "http://qudt.org/vocab/unit#VoltPerSquareMeter" - } - }, - "required": [ - "unit" - ] - }, - "V/m": { - "properties": { - "unit": { - "type": "string", - "const": "V/m", - "$asm.unit-iri": "http://qudt.org/vocab/unit#VoltPerMeter" - } - }, - "required": [ - "unit" - ] - }, - "V/s": { - "properties": { - "unit": { - "type": "string", - "const": "V/s", - "$asm.unit-iri": "http://qudt.org/vocab/unit#VoltPerSecond" - } - }, - "required": [ - "unit" - ] - }, - "W": { - "properties": { - "unit": { - "type": "string", - "const": "W", - "$asm.unit-iri": "http://qudt.org/vocab/unit#Watt" - } - }, - "required": [ - "unit" - ] - }, - "W h": { - "properties": { - "unit": { - "type": "string", - "const": "W h", - "$asm.unit-iri": "http://qudt.org/vocab/unit#Watthour" - } - }, - "required": [ - "unit" - ] - }, - "W m^-2 K^-4": { - "properties": { - "unit": { - "type": "string", - "const": "W m^-2 K^-4", - "$asm.unit-iri": "http://qudt.org/vocab/unit#WattPerSquareMeterQuarticKelvin" - } - }, - "required": [ - "unit" - ] - }, - "W m^2": { - "properties": { - "unit": { - "type": "string", - "const": "W m^2", - "$asm.unit-iri": "http://qudt.org/vocab/unit#WattSquareMeter" - } - }, - "required": [ - "unit" - ] - }, - "W m^2 sr^-1": { - "properties": { - "unit": { - "type": "string", - "const": "W m^2 sr^-1", - "$asm.unit-iri": "http://qudt.org/vocab/unit#WattSquareMeterPerSteradian" - } - }, - "required": [ - "unit" - ] - }, - "W/(m K)": { - "properties": { - "unit": { - "type": "string", - "const": "W/(m K)", - "$asm.unit-iri": "http://qudt.org/vocab/unit#WattPerMeterKelvin" - } - }, - "required": [ - "unit" - ] - }, - "W/(m^2 K)": { - "properties": { - "unit": { - "type": "string", - "const": "W/(m^2 K)", - "$asm.unit-iri": "http://qudt.org/vocab/unit#WattPerSquareMeterKelvin" - } - }, - "required": [ - "unit" - ] - }, - "W/(m^2 sr)": { - "properties": { - "unit": { - "type": "string", - "const": "W/(m^2 sr)", - "$asm.unit-iri": "http://qudt.org/vocab/unit#WattPerSquareMeterSteradian" - } - }, - "required": [ - "unit" - ] - }, - "W/K": { - "properties": { - "unit": { - "type": "string", - "const": "W/K", - "$asm.unit-iri": "http://purl.allotrope.org/ontology/qudt-ext/unit#WattPerKelvin" - } - }, - "required": [ - "unit" - ] - }, - "W/cm^2": { - "properties": { - "unit": { - "type": "string", - "const": "W/cm^2", - "$asm.unit-iri": "http://qudt.org/vocab/unit#WattPerSquareCentimeter" - } - }, - "required": [ - "unit" - ] - }, - "W/ft^2": { - "properties": { - "unit": { - "type": "string", - "const": "W/ft^2", - "$asm.unit-iri": "http://qudt.org/vocab/unit#WattPerSquareFoot" - } - }, - "required": [ - "unit" - ] - }, - "W/g": { - "properties": { - "unit": { - "type": "string", - "const": "W/g", - "$asm.unit-iri": "http://purl.allotrope.org/ontology/qudt-ext/unit#WattPerGram" - } - }, - "required": [ - "unit" - ] - }, - "W/in^2": { - "properties": { - "unit": { - "type": "string", - "const": "W/in^2", - "$asm.unit-iri": "http://qudt.org/vocab/unit#WattPerSquareInch" - } - }, - "required": [ - "unit" - ] - }, - "W/m^2": { - "properties": { - "unit": { - "type": "string", - "const": "W/m^2", - "$asm.unit-iri": "http://qudt.org/vocab/unit#WattPerSquareMeter" - } - }, - "required": [ - "unit" - ] - }, - "Wb": { - "properties": { - "unit": { - "type": "string", - "const": "Wb", - "$asm.unit-iri": "http://qudt.org/vocab/unit#Weber" - } - }, - "required": [ - "unit" - ] - }, - "Z": { - "properties": { - "unit": { - "type": "string", - "const": "Z", - "$asm.unit-iri": "http://qudt.org/vocab/unit#AtomicNumber" - } - }, - "required": [ - "unit" - ] - }, - "[S/m].L": { - "properties": { - "unit": { - "type": "string", - "const": "[S/m].L", - "$asm.unit-iri": "http://purl.allotrope.org/ontology/qudt-ext/unit#SiemensPerMeterTimesLiter" - } - }, - "required": [ - "unit" - ] - }, - "[S/m].s": { - "properties": { - "unit": { - "type": "string", - "const": "[S/m].s", - "$asm.unit-iri": "http://purl.allotrope.org/ontology/qudt-ext/unit#SiemensPerMeterTimesSecond" - } - }, - "required": [ - "unit" - ] - }, - "[sps]": { - "properties": { - "unit": { - "type": "string", - "const": "[sps]", - "$asm.unit-iri": "http://purl.allotrope.org/ontology/qudt-ext/unit#SamplePerSecond" - } - }, - "required": [ - "unit" - ] - }, - "a": { - "properties": { - "unit": { - "type": "string", - "const": "a", - "$asm.unit-iri": "http://qudt.org/vocab/unit#Are" - } - }, - "required": [ - "unit" - ] - }, - "aS": { - "properties": { - "unit": { - "type": "string", - "const": "aS", - "$asm.unit-iri": "http://qudt.org/vocab/unit#Absiemen" - } - }, - "required": [ - "unit" - ] - }, - "abA": { - "properties": { - "unit": { - "type": "string", - "const": "abA", - "$asm.unit-iri": "http://qudt.org/vocab/unit#Abampere" - } - }, - "required": [ - "unit" - ] - }, - "abC": { - "properties": { - "unit": { - "type": "string", - "const": "abC", - "$asm.unit-iri": "http://qudt.org/vocab/unit#Abcoulomb" - } - }, - "required": [ - "unit" - ] - }, - "abC/cm^2": { - "properties": { - "unit": { - "type": "string", - "const": "abC/cm^2", - "$asm.unit-iri": "http://qudt.org/vocab/unit#AbcoulombPerSquareCentimeter" - } - }, - "required": [ - "unit" - ] - }, - "abF": { - "properties": { - "unit": { - "type": "string", - "const": "abF", - "$asm.unit-iri": "http://qudt.org/vocab/unit#Abfarad" - } - }, - "required": [ - "unit" - ] - }, - "abF/cm": { - "properties": { - "unit": { - "type": "string", - "const": "abF/cm", - "$asm.unit-iri": "http://qudt.org/vocab/unit#AbfaradPerCentimeter" - } - }, - "required": [ - "unit" - ] - }, - "abH": { - "properties": { - "unit": { - "type": "string", - "const": "abH", - "$asm.unit-iri": "http://qudt.org/vocab/unit#Abhenry" - } - }, - "required": [ - "unit" - ] - }, - "abT": { - "properties": { - "unit": { - "type": "string", - "const": "abT", - "$asm.unit-iri": "http://qudt.org/vocab/unit#Abtesla" - } - }, - "required": [ - "unit" - ] - }, - "abV": { - "properties": { - "unit": { - "type": "string", - "const": "abV", - "$asm.unit-iri": "http://qudt.org/vocab/unit#Abvolt" - } - }, - "required": [ - "unit" - ] - }, - "abV cm": { - "properties": { - "unit": { - "type": "string", - "const": "abV cm", - "$asm.unit-iri": "http://qudt.org/vocab/unit#AbvoltCentimeter" - } - }, - "required": [ - "unit" - ] - }, - "abV-s": { - "properties": { - "unit": { - "type": "string", - "const": "abV-s", - "$asm.unit-iri": "http://qudt.org/vocab/unit#AbvoltSecond" - } - }, - "required": [ - "unit" - ] - }, - "abV/cm": { - "properties": { - "unit": { - "type": "string", - "const": "abV/cm", - "$asm.unit-iri": "http://qudt.org/vocab/unit#AbvoltPerCentimeter" - } - }, - "required": [ - "unit" - ] - }, - "abΩ": { - "properties": { - "unit": { - "type": "string", - "const": "abΩ", - "$asm.unit-iri": "http://qudt.org/vocab/unit#Abohm" - } - }, - "required": [ - "unit" - ] - }, - "ac": { - "properties": { - "unit": { - "type": "string", - "const": "ac", - "$asm.unit-iri": "http://qudt.org/vocab/unit#Acre" - } - }, - "required": [ - "unit" - ] - }, - "ac ft": { - "properties": { - "unit": { - "type": "string", - "const": "ac ft", - "$asm.unit-iri": "http://qudt.org/vocab/unit#AcreFoot" - } - }, - "required": [ - "unit" - ] - }, - "amu": { - "properties": { - "unit": { - "type": "string", - "const": "amu", - "$asm.unit-iri": "http://qudt.org/vocab/unit#AtomicMassUnit" - } - }, - "required": [ - "unit" - ] - }, - "arb'U": { - "properties": { - "unit": { - "type": "string", - "const": "arb'U", - "$asm.unit-iri": "http://purl.allotrope.org/ontology/qudt-ext/unit#ArbitraryUnit" - } - }, - "required": [ - "unit" - ] - }, - "arb'U.Hz": { - "properties": { - "unit": { - "type": "string", - "const": "arb'U.Hz", - "$asm.unit-iri": "http://purl.allotrope.org/ontology/qudt-ext/unit#ArbitraryUnitTimesHertz" - } - }, - "required": [ - "unit" - ] - }, - "arb'U/V": { - "properties": { - "unit": { - "type": "string", - "const": "arb'U/V", - "$asm.unit-iri": "http://purl.allotrope.org/ontology/qudt-ext/unit#ArbitraryUnitPerVolt" - } - }, - "required": [ - "unit" - ] - }, - "arcMin": { - "properties": { - "unit": { - "type": "string", - "const": "arcMin", - "$asm.unit-iri": "http://qudt.org/vocab/unit#ArcMinute" - } - }, - "required": [ - "unit" - ] - }, - "arcSec": { - "properties": { - "unit": { - "type": "string", - "const": "arcSec", - "$asm.unit-iri": "http://qudt.org/vocab/unit#ArcSecond" - } - }, - "required": [ - "unit" - ] - }, - "at": { - "properties": { - "unit": { - "type": "string", - "const": "at", - "$asm.unit-iri": "http://qudt.org/vocab/unit#AtmosphereTechnical" - } - }, - "required": [ - "unit" - ] - }, - "atm": { - "properties": { - "unit": { - "type": "string", - "const": "atm", - "$asm.unit-iri": "http://qudt.org/vocab/unit#AtmosphereStandard" - } - }, - "required": [ - "unit" - ] - }, - "au": { - "properties": { - "unit": { - "type": "string", - "const": "au", - "$asm.unit-iri": "http://qudt.org/vocab/unit#AstronomicalUnit" - } - }, - "required": [ - "unit" - ] - }, - "b": { - "properties": { - "unit": { - "type": "string", - "const": "b", - "$asm.unit-iri": "http://qudt.org/vocab/unit#Barn" - } - }, - "required": [ - "unit" - ] - }, - "ban": { - "properties": { - "unit": { - "type": "string", - "const": "ban", - "$asm.unit-iri": "http://qudt.org/vocab/unit#Ban" - } - }, - "required": [ - "unit" - ] - }, - "bar": { - "properties": { - "unit": { - "type": "string", - "const": "bar", - "$asm.unit-iri": "http://qudt.org/vocab/unit#Bar" - } - }, - "required": [ - "unit" - ] - }, - "bbl": { - "properties": { - "unit": { - "type": "string", - "const": "bbl", - "$asm.unit-iri": "http://qudt.org/vocab/unit#Barrel" - } - }, - "required": [ - "unit" - ] - }, - "bit": { - "properties": { - "unit": { - "type": "string", - "const": "bit", - "$asm.unit-iri": "http://qudt.org/vocab/unit#Bit" - } - }, - "required": [ - "unit" - ] - }, - "bps": { - "properties": { - "unit": { - "type": "string", - "const": "bps", - "$asm.unit-iri": "http://qudt.org/vocab/unit#BitsPerSecond" - } - }, - "required": [ - "unit" - ] - }, - "breaths/min": { - "properties": { - "unit": { - "type": "string", - "const": "breaths/min", - "$asm.unit-iri": "http://qudt.org/vocab/unit#BreathPerMinute" - } - }, - "required": [ - "unit" - ] - }, - "bu": { - "properties": { - "unit": { - "type": "string", - "const": "bu", - "$asm.unit-iri": "http://qudt.org/vocab/unit#Bushel" - } - }, - "required": [ - "unit" - ] - }, - "cP": { - "properties": { - "unit": { - "type": "string", - "const": "cP", - "$asm.unit-iri": "http://qudt.org/vocab/unit#Centipoise" - } - }, - "required": [ - "unit" - ] - }, - "cSt": { - "properties": { - "unit": { - "type": "string", - "const": "cSt", - "$asm.unit-iri": "http://qudt.org/vocab/unit#Centistokes" - } - }, - "required": [ - "unit" - ] - }, - "cal": { - "properties": { - "unit": { - "type": "string", - "const": "cal", - "$asm.unit-iri": "http://qudt.org/vocab/unit#CalorieThermochemical" - } - }, - "required": [ - "unit" - ] - }, - "cal/(cm s °C)": { - "properties": { - "unit": { - "type": "string", - "const": "cal/(cm s °C)", - "$asm.unit-iri": "http://qudt.org/vocab/unit#KilocaloriePerCentimeterSecondDegreeCelsius" - } - }, - "required": [ - "unit" - ] - }, - "cal/(g.s)": { - "properties": { - "unit": { - "type": "string", - "const": "cal/(g.s)", - "$asm.unit-iri": "http://purl.allotrope.org/ontology/qudt-ext/unit#CaloriePerGramSecond" - } - }, - "required": [ - "unit" - ] - }, - "cal/s": { - "properties": { - "unit": { - "type": "string", - "const": "cal/s", - "$asm.unit-iri": "http://purl.allotrope.org/ontology/qudt-ext/unit#CaloriePerSecond" - } - }, - "required": [ - "unit" - ] - }, - "cd": { - "properties": { - "unit": { - "type": "string", - "const": "cd", - "$asm.unit-iri": "http://qudt.org/vocab/unit#Candela" - } - }, - "required": [ - "unit" - ] - }, - "cd/in^2": { - "properties": { - "unit": { - "type": "string", - "const": "cd/in^2", - "$asm.unit-iri": "http://qudt.org/vocab/unit#CandelaPerSquareInch" - } - }, - "required": [ - "unit" - ] - }, - "cd/m^2": { - "properties": { - "unit": { - "type": "string", - "const": "cd/m^2", - "$asm.unit-iri": "http://qudt.org/vocab/unit#CandelaPerSquareMeter" - } - }, - "required": [ - "unit" - ] - }, - "cdl": { - "properties": { - "unit": { - "type": "string", - "const": "cdl", - "$asm.unit-iri": "http://qudt.org/vocab/unit#Candle" - } - }, - "required": [ - "unit" - ] - }, - "cell": { - "properties": { - "unit": { - "type": "string", - "const": "cell", - "$asm.unit-iri": "http://purl.allotrope.org/ontology/qudt-ext/unit#Cell" - } - }, - "required": [ - "unit" - ] - }, - "ch": { - "properties": { - "unit": { - "type": "string", - "const": "ch", - "$asm.unit-iri": "http://qudt.org/vocab/unit#Chain" - } - }, - "required": [ - "unit" - ] - }, - "clo": { - "properties": { - "unit": { - "type": "string", - "const": "clo", - "$asm.unit-iri": "http://qudt.org/vocab/unit#Clo" - } - }, - "required": [ - "unit" - ] - }, - "cm": { - "properties": { - "unit": { - "type": "string", - "const": "cm", - "$asm.unit-iri": "http://qudt.org/vocab/unit#Centimeter" - } - }, - "required": [ - "unit" - ] - }, - "cm s °C": { - "properties": { - "unit": { - "type": "string", - "const": "cm s °C", - "$asm.unit-iri": "http://qudt.org/vocab/unit#CentimeterSecondDegreeCelsius" - } - }, - "required": [ - "unit" - ] - }, - "cm-degC": { - "properties": { - "unit": { - "type": "string", - "const": "cm-degC", - "$asm.unit-iri": "http://qudt.org/vocab/unit#DegreeCelsiusCentimeter" - } - }, - "required": [ - "unit" - ] - }, - "cm/s": { - "properties": { - "unit": { - "type": "string", - "const": "cm/s", - "$asm.unit-iri": "http://qudt.org/vocab/unit#CentimeterPerSecond" - } - }, - "required": [ - "unit" - ] - }, - "cm/s^2": { - "properties": { - "unit": { - "type": "string", - "const": "cm/s^2", - "$asm.unit-iri": "http://qudt.org/vocab/unit#CentimeterPerSecondSquared" - } - }, - "required": [ - "unit" - ] - }, - "cmH2O": { - "properties": { - "unit": { - "type": "string", - "const": "cmH2O", - "$asm.unit-iri": "http://qudt.org/vocab/unit#CentimeterOfWater" - } - }, - "required": [ - "unit" - ] - }, - "cm^2": { - "properties": { - "unit": { - "type": "string", - "const": "cm^2", - "$asm.unit-iri": "http://qudt.org/vocab/unit#SquareCentimeter" - } - }, - "required": [ - "unit" - ] - }, - "cm^2 min": { - "properties": { - "unit": { - "type": "string", - "const": "cm^2 min", - "$asm.unit-iri": "http://qudt.org/vocab/unit#SquareCentimeterMinute" - } - }, - "required": [ - "unit" - ] - }, - "cm^2 s": { - "properties": { - "unit": { - "type": "string", - "const": "cm^2 s", - "$asm.unit-iri": "http://qudt.org/vocab/unit#SquareCentimeterSecond" - } - }, - "required": [ - "unit" - ] - }, - "cm^2/g": { - "properties": { - "unit": { - "type": "string", - "const": "cm^2/g", - "$asm.unit-iri": "http://purl.allotrope.org/ontology/qudt-ext/unit#SquareCentimetersPerGram" - } - }, - "required": [ - "unit" - ] - }, - "cm^2/mol": { - "properties": { - "unit": { - "type": "string", - "const": "cm^2/mol", - "$asm.unit-iri": "http://purl.allotrope.org/ontology/qudt-ext/unit#SquareCentimetersPerMole" - } - }, - "required": [ - "unit" - ] - }, - "cm^3": { - "properties": { - "unit": { - "type": "string", - "const": "cm^3", - "$asm.unit-iri": "http://qudt.org/vocab/unit#CubicCentimeter" - } - }, - "required": [ - "unit" - ] - }, - "cm^3/g STP": { - "properties": { - "unit": { - "type": "string", - "const": "cm^3/g STP", - "$asm.unit-iri": "http://purl.allotrope.org/ontology/qudt-ext/unit#CubicCentimeterPerGramAtSTP" - } - }, - "required": [ - "unit" - ] - }, - "cm^3/min": { - "properties": { - "unit": { - "type": "string", - "const": "cm^3/min", - "$asm.unit-iri": "http://purl.allotrope.org/ontology/qudt-ext/unit#CubicCentimeterPerMinute" - } - }, - "required": [ - "unit" - ] - }, - "cmil": { - "properties": { - "unit": { - "type": "string", - "const": "cmil", - "$asm.unit-iri": "http://qudt.org/vocab/unit#CircularMil" - } - }, - "required": [ - "unit" - ] - }, - "cord": { - "properties": { - "unit": { - "type": "string", - "const": "cord", - "$asm.unit-iri": "http://qudt.org/vocab/unit#Cord" - } - }, - "required": [ - "unit" - ] - }, - "cp": { - "properties": { - "unit": { - "type": "string", - "const": "cp", - "$asm.unit-iri": "http://qudt.org/vocab/unit#Candlepower" - } - }, - "required": [ - "unit" - ] - }, - "cup": { - "properties": { - "unit": { - "type": "string", - "const": "cup", - "$asm.unit-iri": "http://qudt.org/vocab/unit#LiquidCupUS" - } - }, - "required": [ - "unit" - ] - }, - "d": { - "properties": { - "unit": { - "type": "string", - "const": "d", - "$asm.unit-iri": "http://qudt.org/vocab/unit#Day" - } - }, - "required": [ - "unit" - ] - }, - "d (s)": { - "properties": { - "unit": { - "type": "string", - "const": "d (s)", - "$asm.unit-iri": "http://qudt.org/vocab/unit#DaySidereal" - } - }, - "required": [ - "unit" - ] - }, - "dB": { - "properties": { - "unit": { - "type": "string", - "const": "dB", - "$asm.unit-iri": "http://qudt.org/vocab/unit#Decibel" - } - }, - "required": [ - "unit" - ] - }, - "dBc": { - "properties": { - "unit": { - "type": "string", - "const": "dBc", - "$asm.unit-iri": "http://qudt.org/vocab/unit#DecibelCarrier" - } - }, - "required": [ - "unit" - ] - }, - "dBm": { - "properties": { - "unit": { - "type": "string", - "const": "dBm", - "$asm.unit-iri": "http://qudt.org/vocab/unit#DecibelReferredToOneMilliwatt" - } - }, - "required": [ - "unit" - ] - }, - "degC": { - "properties": { - "unit": { - "type": "string", - "const": "degC", - "$asm.unit-iri": "http://qudt.org/vocab/unit#DegreeCelsius" - } - }, - "required": [ - "unit" - ] - }, - "deg^2": { - "properties": { - "unit": { - "type": "string", - "const": "deg^2", - "$asm.unit-iri": "http://qudt.org/vocab/unit#SquareDegree" - } - }, - "required": [ - "unit" - ] - }, - "deg·mL·g−1·dm−1": { - "properties": { - "unit": { - "type": "string", - "const": "deg·mL·g−1·dm−1", - "$asm.unit-iri": "http://purl.allotrope.org/ontology/qudt-ext/unit#DegreeTimesMilliliterPerGramTimesDecimeter" - } - }, - "required": [ - "unit" - ] - }, - "dm": { - "properties": { - "unit": { - "type": "string", - "const": "dm", - "$asm.unit-iri": "http://qudt.org/vocab/unit#Decimeter" - } - }, - "required": [ - "unit" - ] - }, - "dpt": { - "properties": { - "unit": { - "type": "string", - "const": "dpt", - "$asm.unit-iri": "http://qudt.org/vocab/unit#Diopter" - } - }, - "required": [ - "unit" - ] - }, - "drp": { - "properties": { - "unit": { - "type": "string", - "const": "drp", - "$asm.unit-iri": "http://purl.allotrope.org/ontology/qudt-ext/unit#Drop" - } - }, - "required": [ - "unit" - ] - }, - "dry_gal": { - "properties": { - "unit": { - "type": "string", - "const": "dry_gal", - "$asm.unit-iri": "http://qudt.org/vocab/unit#DryGallonUS" - } - }, - "required": [ - "unit" - ] - }, - "dry_pt": { - "properties": { - "unit": { - "type": "string", - "const": "dry_pt", - "$asm.unit-iri": "http://qudt.org/vocab/unit#DryPintUS" - } - }, - "required": [ - "unit" - ] - }, - "dry_qt": { - "properties": { - "unit": { - "type": "string", - "const": "dry_qt", - "$asm.unit-iri": "http://qudt.org/vocab/unit#DryQuartUS" - } - }, - "required": [ - "unit" - ] - }, - "dwt": { - "properties": { - "unit": { - "type": "string", - "const": "dwt", - "$asm.unit-iri": "http://qudt.org/vocab/unit#PennyWeight" - } - }, - "required": [ - "unit" - ] - }, - "dyn": { - "properties": { - "unit": { - "type": "string", - "const": "dyn", - "$asm.unit-iri": "http://qudt.org/vocab/unit#Dyne" - } - }, - "required": [ - "unit" - ] - }, - "dyn cm": { - "properties": { - "unit": { - "type": "string", - "const": "dyn cm", - "$asm.unit-iri": "http://qudt.org/vocab/unit#DyneCentimeter" - } - }, - "required": [ - "unit" - ] - }, - "dyn/cm^2": { - "properties": { - "unit": { - "type": "string", - "const": "dyn/cm^2", - "$asm.unit-iri": "http://qudt.org/vocab/unit#DynePerSquareCentimeter" - } - }, - "required": [ - "unit" - ] - }, - "e": { - "properties": { - "unit": { - "type": "string", - "const": "e", - "$asm.unit-iri": "http://purl.allotrope.org/ontology/qudt-ext/unit#E" - } - }, - "required": [ - "unit" - ] - }, - "eV": { - "properties": { - "unit": { - "type": "string", - "const": "eV", - "$asm.unit-iri": "http://qudt.org/vocab/unit#ElectronVolt" - } - }, - "required": [ - "unit" - ] - }, - "eV s": { - "properties": { - "unit": { - "type": "string", - "const": "eV s", - "$asm.unit-iri": "http://qudt.org/vocab/unit#ElectronVoltSecond" - } - }, - "required": [ - "unit" - ] - }, - "eV/K": { - "properties": { - "unit": { - "type": "string", - "const": "eV/K", - "$asm.unit-iri": "http://qudt.org/vocab/unit#ElectronVoltPerKelvin" - } - }, - "required": [ - "unit" - ] - }, - "eV/T": { - "properties": { - "unit": { - "type": "string", - "const": "eV/T", - "$asm.unit-iri": "http://qudt.org/vocab/unit#ElectronVoltPerTesla" - } - }, - "required": [ - "unit" - ] - }, - "erg": { - "properties": { - "unit": { - "type": "string", - "const": "erg", - "$asm.unit-iri": "http://qudt.org/vocab/unit#Erg" - } - }, - "required": [ - "unit" - ] - }, - "erg s": { - "properties": { - "unit": { - "type": "string", - "const": "erg s", - "$asm.unit-iri": "http://qudt.org/vocab/unit#ErgSecond" - } - }, - "required": [ - "unit" - ] - }, - "erg/(cm^2 s)": { - "properties": { - "unit": { - "type": "string", - "const": "erg/(cm^2 s)", - "$asm.unit-iri": "http://qudt.org/vocab/unit#ErgPerSquareCentimeterSecond" - } - }, - "required": [ - "unit" - ] - }, - "erg/cm^3": { - "properties": { - "unit": { - "type": "string", - "const": "erg/cm^3", - "$asm.unit-iri": "http://qudt.org/vocab/unit#ErgPerCubicCentimeter" - } - }, - "required": [ - "unit" - ] - }, - "erg/s": { - "properties": { - "unit": { - "type": "string", - "const": "erg/s", - "$asm.unit-iri": "http://qudt.org/vocab/unit#ErgPerSecond" - } - }, - "required": [ - "unit" - ] - }, - "fL": { - "properties": { - "unit": { - "type": "string", - "const": "fL", - "$asm.unit-iri": "http://purl.allotrope.org/ontology/qudt-ext/unit#Femtoliter" - } - }, - "required": [ - "unit" - ] - }, - "fa": { - "properties": { - "unit": { - "type": "string", - "const": "fa", - "$asm.unit-iri": "http://qudt.org/vocab/unit#FractionalArea" - } - }, - "required": [ - "unit" - ] - }, - "fath": { - "properties": { - "unit": { - "type": "string", - "const": "fath", - "$asm.unit-iri": "http://qudt.org/vocab/unit#Fathom" - } - }, - "required": [ - "unit" - ] - }, - "fc": { - "properties": { - "unit": { - "type": "string", - "const": "fc", - "$asm.unit-iri": "http://qudt.org/vocab/unit#FootCandle" - } - }, - "required": [ - "unit" - ] - }, - "fermi": { - "properties": { - "unit": { - "type": "string", - "const": "fermi", - "$asm.unit-iri": "http://qudt.org/vocab/unit#Fermi" - } - }, - "required": [ - "unit" - ] - }, - "fg": { - "properties": { - "unit": { - "type": "string", - "const": "fg", - "$asm.unit-iri": "http://purl.allotrope.org/ontology/qudt-ext/unit#Femtogram" - } - }, - "required": [ - "unit" - ] - }, - "fg/L": { - "properties": { - "unit": { - "type": "string", - "const": "fg/L", - "$asm.unit-iri": "http://purl.allotrope.org/ontology/qudt-ext/unit#FemtogramPerLiter" - } - }, - "required": [ - "unit" - ] - }, - "fg/cm^2": { - "properties": { - "unit": { - "type": "string", - "const": "fg/cm^2", - "$asm.unit-iri": "http://purl.allotrope.org/ontology/qudt-ext/unit#FemtogramPerSquareCentimeter" - } - }, - "required": [ - "unit" - ] - }, - "fg/fL": { - "properties": { - "unit": { - "type": "string", - "const": "fg/fL", - "$asm.unit-iri": "http://purl.allotrope.org/ontology/qudt-ext/unit#FemtogramPerFemtoliter" - } - }, - "required": [ - "unit" - ] - }, - "fg/mL": { - "properties": { - "unit": { - "type": "string", - "const": "fg/mL", - "$asm.unit-iri": "http://purl.allotrope.org/ontology/qudt-ext/unit#FemtogramPerMilliliter" - } - }, - "required": [ - "unit" - ] - }, - "fg/m^2": { - "properties": { - "unit": { - "type": "string", - "const": "fg/m^2", - "$asm.unit-iri": "http://purl.allotrope.org/ontology/qudt-ext/unit#FemtogramPerSquareMeter" - } - }, - "required": [ - "unit" - ] - }, - "fg/nL": { - "properties": { - "unit": { - "type": "string", - "const": "fg/nL", - "$asm.unit-iri": "http://purl.allotrope.org/ontology/qudt-ext/unit#FemtogramPerNanoliter" - } - }, - "required": [ - "unit" - ] - }, - "fg/pL": { - "properties": { - "unit": { - "type": "string", - "const": "fg/pL", - "$asm.unit-iri": "http://purl.allotrope.org/ontology/qudt-ext/unit#FemtogramPerPicoliter" - } - }, - "required": [ - "unit" - ] - }, - "fg/μL": { - "properties": { - "unit": { - "type": "string", - "const": "fg/μL", - "$asm.unit-iri": "http://purl.allotrope.org/ontology/qudt-ext/unit#FemtogramPerMicroliter" - } - }, - "required": [ - "unit" - ] - }, - "flight": { - "properties": { - "unit": { - "type": "string", - "const": "flight", - "$asm.unit-iri": "http://qudt.org/vocab/unit#Flight" - } - }, - "required": [ - "unit" - ] - }, - "fm": { - "properties": { - "unit": { - "type": "string", - "const": "fm", - "$asm.unit-iri": "http://qudt.org/vocab/unit#Femtometer" - } - }, - "required": [ - "unit" - ] - }, - "fmol": { - "properties": { - "unit": { - "type": "string", - "const": "fmol", - "$asm.unit-iri": "http://purl.allotrope.org/ontology/qudt-ext/unit#Femtomole" - } - }, - "required": [ - "unit" - ] - }, - "fmol/L": { - "properties": { - "unit": { - "type": "string", - "const": "fmol/L", - "$asm.unit-iri": "http://purl.allotrope.org/ontology/qudt-ext/unit#Femtomolar" - } - }, - "required": [ - "unit" - ] - }, - "fps": { - "properties": { - "unit": { - "type": "string", - "const": "fps", - "$asm.unit-iri": "http://qudt.org/vocab/unit#FramePerSecond" - } - }, - "required": [ - "unit" - ] - }, - "ft": { - "properties": { - "unit": { - "type": "string", - "const": "ft", - "$asm.unit-iri": "http://qudt.org/vocab/unit#Foot" - } - }, - "required": [ - "unit" - ] - }, - "ft L": { - "properties": { - "unit": { - "type": "string", - "const": "ft L", - "$asm.unit-iri": "http://qudt.org/vocab/unit#FootLambert" - } - }, - "required": [ - "unit" - ] - }, - "ft lbf": { - "properties": { - "unit": { - "type": "string", - "const": "ft lbf", - "$asm.unit-iri": "http://qudt.org/vocab/unit#FootPoundForce" - } - }, - "required": [ - "unit" - ] - }, - "ft lbf/(ft^2 s)": { - "properties": { - "unit": { - "type": "string", - "const": "ft lbf/(ft^2 s)", - "$asm.unit-iri": "http://qudt.org/vocab/unit#FootPoundForcePerSquareFootSecond" - } - }, - "required": [ - "unit" - ] - }, - "ft lbf/ft^2": { - "properties": { - "unit": { - "type": "string", - "const": "ft lbf/ft^2", - "$asm.unit-iri": "http://qudt.org/vocab/unit#FootPoundForcePerSquareFoot" - } - }, - "required": [ - "unit" - ] - }, - "ft lbf/h": { - "properties": { - "unit": { - "type": "string", - "const": "ft lbf/h", - "$asm.unit-iri": "http://qudt.org/vocab/unit#FootPoundForcePerHour" - } - }, - "required": [ - "unit" - ] - }, - "ft lbf/m^2": { - "properties": { - "unit": { - "type": "string", - "const": "ft lbf/m^2", - "$asm.unit-iri": "http://qudt.org/vocab/unit#FootPoundForcePerSquareMeter" - } - }, - "required": [ - "unit" - ] - }, - "ft lbf/min": { - "properties": { - "unit": { - "type": "string", - "const": "ft lbf/min", - "$asm.unit-iri": "http://qudt.org/vocab/unit#FootPoundForcePerMinute" - } - }, - "required": [ - "unit" - ] - }, - "ft lbf/s": { - "properties": { - "unit": { - "type": "string", - "const": "ft lbf/s", - "$asm.unit-iri": "http://qudt.org/vocab/unit#FootPoundForcePerSecond" - } - }, - "required": [ - "unit" - ] - }, - "ft-pdl": { - "properties": { - "unit": { - "type": "string", - "const": "ft-pdl", - "$asm.unit-iri": "http://qudt.org/vocab/unit#FootPoundal" - } - }, - "required": [ - "unit" - ] - }, - "ft/h": { - "properties": { - "unit": { - "type": "string", - "const": "ft/h", - "$asm.unit-iri": "http://qudt.org/vocab/unit#FootPerHour" - } - }, - "required": [ - "unit" - ] - }, - "ft/min": { - "properties": { - "unit": { - "type": "string", - "const": "ft/min", - "$asm.unit-iri": "http://qudt.org/vocab/unit#FootPerMinute" - } - }, - "required": [ - "unit" - ] - }, - "ft/s": { - "properties": { - "unit": { - "type": "string", - "const": "ft/s", - "$asm.unit-iri": "http://qudt.org/vocab/unit#FootPerSecond" - } - }, - "required": [ - "unit" - ] - }, - "ft/s^2": { - "properties": { - "unit": { - "type": "string", - "const": "ft/s^2", - "$asm.unit-iri": "http://qudt.org/vocab/unit#FootPerSecondSquared" - } - }, - "required": [ - "unit" - ] - }, - "ftH2O": { - "properties": { - "unit": { - "type": "string", - "const": "ftH2O", - "$asm.unit-iri": "http://qudt.org/vocab/unit#FootOfWater" - } - }, - "required": [ - "unit" - ] - }, - "ftUS": { - "properties": { - "unit": { - "type": "string", - "const": "ftUS", - "$asm.unit-iri": "http://qudt.org/vocab/unit#FootUSSurvey" - } - }, - "required": [ - "unit" - ] - }, - "ft^2": { - "properties": { - "unit": { - "type": "string", - "const": "ft^2", - "$asm.unit-iri": "http://qudt.org/vocab/unit#SquareFoot" - } - }, - "required": [ - "unit" - ] - }, - "ft^2 h °F": { - "properties": { - "unit": { - "type": "string", - "const": "ft^2 h °F", - "$asm.unit-iri": "http://qudt.org/vocab/unit#SquareFootHourDegreeFahrenheit" - } - }, - "required": [ - "unit" - ] - }, - "ft^2 s °F": { - "properties": { - "unit": { - "type": "string", - "const": "ft^2 s °F", - "$asm.unit-iri": "http://qudt.org/vocab/unit#SquareFootSecondDegreeFahrenheit" - } - }, - "required": [ - "unit" - ] - }, - "ft^2 °F": { - "properties": { - "unit": { - "type": "string", - "const": "ft^2 °F", - "$asm.unit-iri": "http://qudt.org/vocab/unit#SquareFootDegreeFahrenheit" - } - }, - "required": [ - "unit" - ] - }, - "ft^2/(Btu in)": { - "properties": { - "unit": { - "type": "string", - "const": "ft^2/(Btu in)", - "$asm.unit-iri": "http://qudt.org/vocab/unit#SquareFootPerBtuInch" - } - }, - "required": [ - "unit" - ] - }, - "ft^2/h": { - "properties": { - "unit": { - "type": "string", - "const": "ft^2/h", - "$asm.unit-iri": "http://qudt.org/vocab/unit#SquareFootPerHour" - } - }, - "required": [ - "unit" - ] - }, - "ft^2/s": { - "properties": { - "unit": { - "type": "string", - "const": "ft^2/s", - "$asm.unit-iri": "http://qudt.org/vocab/unit#SquareFootPerSecond" - } - }, - "required": [ - "unit" - ] - }, - "ft^3": { - "properties": { - "unit": { - "type": "string", - "const": "ft^3", - "$asm.unit-iri": "http://qudt.org/vocab/unit#CubicFoot" - } - }, - "required": [ - "unit" - ] - }, - "ft^3/min": { - "properties": { - "unit": { - "type": "string", - "const": "ft^3/min", - "$asm.unit-iri": "http://qudt.org/vocab/unit#CubicFootPerMinute" - } - }, - "required": [ - "unit" - ] - }, - "ft^3/s": { - "properties": { - "unit": { - "type": "string", - "const": "ft^3/s", - "$asm.unit-iri": "http://qudt.org/vocab/unit#CubicFootPerSecond" - } - }, - "required": [ - "unit" - ] - }, - "fur": { - "properties": { - "unit": { - "type": "string", - "const": "fur", - "$asm.unit-iri": "http://qudt.org/vocab/unit#Furlong" - } - }, - "required": [ - "unit" - ] - }, - "g": { - "properties": { - "unit": { - "type": "string", - "const": "g", - "$asm.unit-iri": "http://qudt.org/vocab/unit#Gram" - } - }, - "required": [ - "unit" - ] - }, - "g °C": { - "properties": { - "unit": { - "type": "string", - "const": "g °C", - "$asm.unit-iri": "http://qudt.org/vocab/unit#GramDegreeCelsius" - } - }, - "required": [ - "unit" - ] - }, - "g/L": { - "properties": { - "unit": { - "type": "string", - "const": "g/L", - "$asm.unit-iri": "http://purl.allotrope.org/ontology/qudt-ext/unit#GramPerLiter" - } - }, - "required": [ - "unit" - ] - }, - "g/cm^2": { - "properties": { - "unit": { - "type": "string", - "const": "g/cm^2", - "$asm.unit-iri": "http://purl.allotrope.org/ontology/qudt-ext/unit#GramPerSquareCentimeter" - } - }, - "required": [ - "unit" - ] - }, - "g/cm^3": { - "properties": { - "unit": { - "type": "string", - "const": "g/cm^3", - "$asm.unit-iri": "http://purl.allotrope.org/ontology/qudt-ext/unit#GramPerCubicCentimeter" - } - }, - "required": [ - "unit" - ] - }, - "g/fL": { - "properties": { - "unit": { - "type": "string", - "const": "g/fL", - "$asm.unit-iri": "http://purl.allotrope.org/ontology/qudt-ext/unit#GramPerFemtoliter" - } - }, - "required": [ - "unit" - ] - }, - "g/mL": { - "properties": { - "unit": { - "type": "string", - "const": "g/mL", - "$asm.unit-iri": "http://purl.allotrope.org/ontology/qudt-ext/unit#GramPerMilliliter" - } - }, - "required": [ - "unit" - ] - }, - "g/m^2": { - "properties": { - "unit": { - "type": "string", - "const": "g/m^2", - "$asm.unit-iri": "http://purl.allotrope.org/ontology/qudt-ext/unit#GramPerSquareMeter" - } - }, - "required": [ - "unit" - ] - }, - "g/min": { - "properties": { - "unit": { - "type": "string", - "const": "g/min", - "$asm.unit-iri": "http://purl.allotrope.org/ontology/qudt-ext/unit#GramsPerMinute" - } - }, - "required": [ - "unit" - ] - }, - "g/mol": { - "properties": { - "unit": { - "type": "string", - "const": "g/mol", - "$asm.unit-iri": "http://purl.allotrope.org/ontology/qudt-ext/unit#GramPerMole" - } - }, - "required": [ - "unit" - ] - }, - "g/nL": { - "properties": { - "unit": { - "type": "string", - "const": "g/nL", - "$asm.unit-iri": "http://purl.allotrope.org/ontology/qudt-ext/unit#GramPerNanoliter" - } - }, - "required": [ - "unit" - ] - }, - "g/pL": { - "properties": { - "unit": { - "type": "string", - "const": "g/pL", - "$asm.unit-iri": "http://purl.allotrope.org/ontology/qudt-ext/unit#GramPerPicoliter" - } - }, - "required": [ - "unit" - ] - }, - "g/μL": { - "properties": { - "unit": { - "type": "string", - "const": "g/μL", - "$asm.unit-iri": "http://purl.allotrope.org/ontology/qudt-ext/unit#GramPerMicroliter" - } - }, - "required": [ - "unit" - ] - }, - "gal/d": { - "properties": { - "unit": { - "type": "string", - "const": "gal/d", - "$asm.unit-iri": "http://qudt.org/vocab/unit#GallonUSPerDay" - } - }, - "required": [ - "unit" - ] - }, - "gal/min": { - "properties": { - "unit": { - "type": "string", - "const": "gal/min", - "$asm.unit-iri": "http://qudt.org/vocab/unit#GallonUSPerMinute" - } - }, - "required": [ - "unit" - ] - }, - "gamma": { - "properties": { - "unit": { - "type": "string", - "const": "gamma", - "$asm.unit-iri": "http://qudt.org/vocab/unit#Gamma" - } - }, - "required": [ - "unit" - ] - }, - "gon": { - "properties": { - "unit": { - "type": "string", - "const": "gon", - "$asm.unit-iri": "http://qudt.org/vocab/unit#Gon" - } - }, - "required": [ - "unit" - ] - }, - "gr": { - "properties": { - "unit": { - "type": "string", - "const": "gr", - "$asm.unit-iri": "http://qudt.org/vocab/unit#Grain" - } - }, - "required": [ - "unit" - ] - }, - "gr/gal": { - "properties": { - "unit": { - "type": "string", - "const": "gr/gal", - "$asm.unit-iri": "http://qudt.org/vocab/unit#GrainPerGallon" - } - }, - "required": [ - "unit" - ] - }, - "grad": { - "properties": { - "unit": { - "type": "string", - "const": "grad", - "$asm.unit-iri": "http://qudt.org/vocab/unit#Grad" - } - }, - "required": [ - "unit" - ] - }, - "grd": { - "properties": { - "unit": { - "type": "string", - "const": "grd", - "$asm.unit-iri": "http://qudt.org/vocab/unit#Grade" - } - }, - "required": [ - "unit" - ] - }, - "h": { - "properties": { - "unit": { - "type": "string", - "const": "h", - "$asm.unit-iri": "http://qudt.org/vocab/unit#Hour" - } - }, - "required": [ - "unit" - ] - }, - "h ft^2": { - "properties": { - "unit": { - "type": "string", - "const": "h ft^2", - "$asm.unit-iri": "http://qudt.org/vocab/unit#HourSquareFoot" - } - }, - "required": [ - "unit" - ] - }, - "ha": { - "properties": { - "unit": { - "type": "string", - "const": "ha", - "$asm.unit-iri": "http://qudt.org/vocab/unit#Hectare" - } - }, - "required": [ - "unit" - ] - }, - "hp/H2O": { - "properties": { - "unit": { - "type": "string", - "const": "hp/H2O", - "$asm.unit-iri": "http://qudt.org/vocab/unit#HorsepowerWater" - } - }, - "required": [ - "unit" - ] - }, - "hp/V": { - "properties": { - "unit": { - "type": "string", - "const": "hp/V", - "$asm.unit-iri": "http://qudt.org/vocab/unit#HorsepowerElectric" - } - }, - "required": [ - "unit" - ] - }, - "hp/boiler": { - "properties": { - "unit": { - "type": "string", - "const": "hp/boiler", - "$asm.unit-iri": "http://qudt.org/vocab/unit#HorsepowerBoiler" - } - }, - "required": [ - "unit" - ] - }, - "hp/m": { - "properties": { - "unit": { - "type": "string", - "const": "hp/m", - "$asm.unit-iri": "http://qudt.org/vocab/unit#HorsepowerMetric" - } - }, - "required": [ - "unit" - ] - }, - "hr": { - "properties": { - "unit": { - "type": "string", - "const": "hr", - "$asm.unit-iri": "http://qudt.org/vocab/unit#HourSidereal" - } - }, - "required": [ - "unit" - ] - }, - "imp gal": { - "properties": { - "unit": { - "type": "string", - "const": "imp gal", - "$asm.unit-iri": "http://qudt.org/vocab/unit#GallonImperial" - } - }, - "required": [ - "unit" - ] - }, - "in": { - "properties": { - "unit": { - "type": "string", - "const": "in", - "$asm.unit-iri": "http://qudt.org/vocab/unit#Inch" - } - }, - "required": [ - "unit" - ] - }, - "in lbf": { - "properties": { - "unit": { - "type": "string", - "const": "in lbf", - "$asm.unit-iri": "http://qudt.org/vocab/unit#InchPoundForce" - } - }, - "required": [ - "unit" - ] - }, - "in/s^2": { - "properties": { - "unit": { - "type": "string", - "const": "in/s^2", - "$asm.unit-iri": "http://qudt.org/vocab/unit#InchPerSecondSquared" - } - }, - "required": [ - "unit" - ] - }, - "inAq": { - "properties": { - "unit": { - "type": "string", - "const": "inAq", - "$asm.unit-iri": "http://qudt.org/vocab/unit#InchOfWater" - } - }, - "required": [ - "unit" - ] - }, - "inHg": { - "properties": { - "unit": { - "type": "string", - "const": "inHg", - "$asm.unit-iri": "http://qudt.org/vocab/unit#InchOfMercury" - } - }, - "required": [ - "unit" - ] - }, - "in^2": { - "properties": { - "unit": { - "type": "string", - "const": "in^2", - "$asm.unit-iri": "http://qudt.org/vocab/unit#SquareInch" - } - }, - "required": [ - "unit" - ] - }, - "in^3": { - "properties": { - "unit": { - "type": "string", - "const": "in^3", - "$asm.unit-iri": "http://qudt.org/vocab/unit#CubicInch" - } - }, - "required": [ - "unit" - ] - }, - "in^3/min": { - "properties": { - "unit": { - "type": "string", - "const": "in^3/min", - "$asm.unit-iri": "http://qudt.org/vocab/unit#CubicInchPerMinute" - } - }, - "required": [ - "unit" - ] - }, - "kHz": { - "properties": { - "unit": { - "type": "string", - "const": "kHz", - "$asm.unit-iri": "http://qudt.org/vocab/unit#KiloHertz" - } - }, - "required": [ - "unit" - ] - }, - "kJ/(mol K)": { - "properties": { - "unit": { - "type": "string", - "const": "kJ/(mol K)", - "$asm.unit-iri": "http://purl.allotrope.org/ontology/qudt-ext/unit#KiloJoulePerMoleKelvin" - } - }, - "required": [ - "unit" - ] - }, - "kPa": { - "properties": { - "unit": { - "type": "string", - "const": "kPa", - "$asm.unit-iri": "http://qudt.org/vocab/unit#KiloPascal" - } - }, - "required": [ - "unit" - ] - }, - "kPaA": { - "properties": { - "unit": { - "type": "string", - "const": "kPaA", - "$asm.unit-iri": "http://qudt.org/vocab/unit#KiloPascalAbsolute" - } - }, - "required": [ - "unit" - ] - }, - "kV": { - "properties": { - "unit": { - "type": "string", - "const": "kV", - "$asm.unit-iri": "http://purl.allotrope.org/ontology/qudt-ext/unit#KiloVolt" - } - }, - "required": [ - "unit" - ] - }, - "kW": { - "properties": { - "unit": { - "type": "string", - "const": "kW", - "$asm.unit-iri": "http://qudt.org/vocab/unit#Kilowatt" - } - }, - "required": [ - "unit" - ] - }, - "kW h": { - "properties": { - "unit": { - "type": "string", - "const": "kW h", - "$asm.unit-iri": "http://qudt.org/vocab/unit#Kilowatthour" - } - }, - "required": [ - "unit" - ] - }, - "kat": { - "properties": { - "unit": { - "type": "string", - "const": "kat", - "$asm.unit-iri": "http://qudt.org/vocab/unit#Katal" - } - }, - "required": [ - "unit" - ] - }, - "kbps": { - "properties": { - "unit": { - "type": "string", - "const": "kbps", - "$asm.unit-iri": "http://qudt.org/vocab/unit#KilobitsPerSecond" - } - }, - "required": [ - "unit" - ] - }, - "kcal": { - "properties": { - "unit": { - "type": "string", - "const": "kcal", - "$asm.unit-iri": "http://qudt.org/vocab/unit#Kilocalorie" - } - }, - "required": [ - "unit" - ] - }, - "kcal/(cm^2 min)": { - "properties": { - "unit": { - "type": "string", - "const": "kcal/(cm^2 min)", - "$asm.unit-iri": "http://qudt.org/vocab/unit#KilocaloriePerSquareCentimeterMinute" - } - }, - "required": [ - "unit" - ] - }, - "kcal/(cm^2 s)": { - "properties": { - "unit": { - "type": "string", - "const": "kcal/(cm^2 s)", - "$asm.unit-iri": "http://qudt.org/vocab/unit#KilocaloriePerSquareCentimeterSecond" - } - }, - "required": [ - "unit" - ] - }, - "kcal/(g °C)": { - "properties": { - "unit": { - "type": "string", - "const": "kcal/(g °C)", - "$asm.unit-iri": "http://qudt.org/vocab/unit#KilocaloriePerGramDegreeCelsius" - } - }, - "required": [ - "unit" - ] - }, - "kcal/(mol °C)": { - "properties": { - "unit": { - "type": "string", - "const": "kcal/(mol °C)", - "$asm.unit-iri": "http://qudt.org/vocab/unit#KilocaloriePerMoleDegreeCelsius" - } - }, - "required": [ - "unit" - ] - }, - "kcal/cm^2": { - "properties": { - "unit": { - "type": "string", - "const": "kcal/cm^2", - "$asm.unit-iri": "http://qudt.org/vocab/unit#KilocaloriePerSquareCentimeter" - } - }, - "required": [ - "unit" - ] - }, - "kcal/g": { - "properties": { - "unit": { - "type": "string", - "const": "kcal/g", - "$asm.unit-iri": "http://qudt.org/vocab/unit#KilocaloriePerGram" - } - }, - "required": [ - "unit" - ] - }, - "kcal/min": { - "properties": { - "unit": { - "type": "string", - "const": "kcal/min", - "$asm.unit-iri": "http://qudt.org/vocab/unit#KilocaloriePerMinute" - } - }, - "required": [ - "unit" - ] - }, - "kcal/mol": { - "properties": { - "unit": { - "type": "string", - "const": "kcal/mol", - "$asm.unit-iri": "http://qudt.org/vocab/unit#KilocaloriePerMole" - } - }, - "required": [ - "unit" - ] - }, - "kcal/s": { - "properties": { - "unit": { - "type": "string", - "const": "kcal/s", - "$asm.unit-iri": "http://qudt.org/vocab/unit#KilocaloriePerSecond" - } - }, - "required": [ - "unit" - ] - }, - "keV": { - "properties": { - "unit": { - "type": "string", - "const": "keV", - "$asm.unit-iri": "http://qudt.org/vocab/unit#KiloElectronVolt" - } - }, - "required": [ - "unit" - ] - }, - "keV/µm": { - "properties": { - "unit": { - "type": "string", - "const": "keV/µm", - "$asm.unit-iri": "http://qudt.org/vocab/unit#KiloElectronVoltPerMicrometer" - } - }, - "required": [ - "unit" - ] - }, - "kg": { - "properties": { - "unit": { - "type": "string", - "const": "kg", - "$asm.unit-iri": "http://qudt.org/vocab/unit#Kilogram" - } - }, - "required": [ - "unit" - ] - }, - "kg K": { - "properties": { - "unit": { - "type": "string", - "const": "kg K", - "$asm.unit-iri": "http://qudt.org/vocab/unit#KilogramKelvin" - } - }, - "required": [ - "unit" - ] - }, - "kg m s^-1": { - "properties": { - "unit": { - "type": "string", - "const": "kg m s^-1", - "$asm.unit-iri": "http://qudt.org/vocab/unit#KilogramMeterPerSecond" - } - }, - "required": [ - "unit" - ] - }, - "kg m^2": { - "properties": { - "unit": { - "type": "string", - "const": "kg m^2", - "$asm.unit-iri": "http://qudt.org/vocab/unit#KilogramMeterSquared" - } - }, - "required": [ - "unit" - ] - }, - "kg mol^-1": { - "properties": { - "unit": { - "type": "string", - "const": "kg mol^-1", - "$asm.unit-iri": "http://qudt.org/vocab/unit#KilogramPerMole" - } - }, - "required": [ - "unit" - ] - }, - "kg s^2": { - "properties": { - "unit": { - "type": "string", - "const": "kg s^2", - "$asm.unit-iri": "http://qudt.org/vocab/unit#KilogramSecondSquared" - } - }, - "required": [ - "unit" - ] - }, - "kg/L": { - "properties": { - "unit": { - "type": "string", - "const": "kg/L", - "$asm.unit-iri": "http://purl.allotrope.org/ontology/qudt-ext/unit#KilogramPerLiter" - } - }, - "required": [ - "unit" - ] - }, - "kg/cm^2": { - "properties": { - "unit": { - "type": "string", - "const": "kg/cm^2", - "$asm.unit-iri": "http://purl.allotrope.org/ontology/qudt-ext/unit#KilogramPerSquareCentimeter" - } - }, - "required": [ - "unit" - ] - }, - "kg/fL": { - "properties": { - "unit": { - "type": "string", - "const": "kg/fL", - "$asm.unit-iri": "http://purl.allotrope.org/ontology/qudt-ext/unit#KilogramPerFemtoliter" - } - }, - "required": [ - "unit" - ] - }, - "kg/h": { - "properties": { - "unit": { - "type": "string", - "const": "kg/h", - "$asm.unit-iri": "http://qudt.org/vocab/unit#KilogramPerHour" - } - }, - "required": [ - "unit" - ] - }, - "kg/m": { - "properties": { - "unit": { - "type": "string", - "const": "kg/m", - "$asm.unit-iri": "http://qudt.org/vocab/unit#KilogramPerMeter" - } - }, - "required": [ - "unit" - ] - }, - "kg/mL": { - "properties": { - "unit": { - "type": "string", - "const": "kg/mL", - "$asm.unit-iri": "http://purl.allotrope.org/ontology/qudt-ext/unit#KilogramPerMilliliter" - } - }, - "required": [ - "unit" - ] - }, - "kg/m^2": { - "properties": { - "unit": { - "type": "string", - "const": "kg/m^2", - "$asm.unit-iri": "http://qudt.org/vocab/unit#KilogramPerSquareMeter" - } - }, - "required": [ - "unit" - ] - }, - "kg/m^3": { - "properties": { - "unit": { - "type": "string", - "const": "kg/m^3", - "$asm.unit-iri": "http://qudt.org/vocab/unit#KilogramPerCubicMeter" - } - }, - "required": [ - "unit" - ] - }, - "kg/nL": { - "properties": { - "unit": { - "type": "string", - "const": "kg/nL", - "$asm.unit-iri": "http://purl.allotrope.org/ontology/qudt-ext/unit#KilogramPerNanoliter" - } - }, - "required": [ - "unit" - ] - }, - "kg/pL": { - "properties": { - "unit": { - "type": "string", - "const": "kg/pL", - "$asm.unit-iri": "http://purl.allotrope.org/ontology/qudt-ext/unit#KilogramPerPicoliter" - } - }, - "required": [ - "unit" - ] - }, - "kg/s": { - "properties": { - "unit": { - "type": "string", - "const": "kg/s", - "$asm.unit-iri": "http://qudt.org/vocab/unit#KilogramPerSecond" - } - }, - "required": [ - "unit" - ] - }, - "kg/μL": { - "properties": { - "unit": { - "type": "string", - "const": "kg/μL", - "$asm.unit-iri": "http://purl.allotrope.org/ontology/qudt-ext/unit#KilogramPerMicroliter" - } - }, - "required": [ - "unit" - ] - }, - "kgf": { - "properties": { - "unit": { - "type": "string", - "const": "kgf", - "$asm.unit-iri": "http://qudt.org/vocab/unit#KilogramForce" - } - }, - "required": [ - "unit" - ] - }, - "kgf m": { - "properties": { - "unit": { - "type": "string", - "const": "kgf m", - "$asm.unit-iri": "http://qudt.org/vocab/unit#KilogramForceMeter" - } - }, - "required": [ - "unit" - ] - }, - "kgf/cm^2": { - "properties": { - "unit": { - "type": "string", - "const": "kgf/cm^2", - "$asm.unit-iri": "http://qudt.org/vocab/unit#KilogramForcePerSquareCentimeter" - } - }, - "required": [ - "unit" - ] - }, - "kip": { - "properties": { - "unit": { - "type": "string", - "const": "kip", - "$asm.unit-iri": "http://qudt.org/vocab/unit#Kip" - } - }, - "required": [ - "unit" - ] - }, - "kip/in^2": { - "properties": { - "unit": { - "type": "string", - "const": "kip/in^2", - "$asm.unit-iri": "http://qudt.org/vocab/unit#KipPerSquareInch" - } - }, - "required": [ - "unit" - ] - }, - "km": { - "properties": { - "unit": { - "type": "string", - "const": "km", - "$asm.unit-iri": "http://qudt.org/vocab/unit#Kilometer" - } - }, - "required": [ - "unit" - ] - }, - "km/h": { - "properties": { - "unit": { - "type": "string", - "const": "km/h", - "$asm.unit-iri": "http://qudt.org/vocab/unit#KilometerPerHour" - } - }, - "required": [ - "unit" - ] - }, - "km/s": { - "properties": { - "unit": { - "type": "string", - "const": "km/s", - "$asm.unit-iri": "http://qudt.org/vocab/unit#KilometerPerSecond" - } - }, - "required": [ - "unit" - ] - }, - "km^3/s^2": { - "properties": { - "unit": { - "type": "string", - "const": "km^3/s^2", - "$asm.unit-iri": "http://qudt.org/vocab/unit#CubicKilometerPerSecondSquared" - } - }, - "required": [ - "unit" - ] - }, - "kn": { - "properties": { - "unit": { - "type": "string", - "const": "kn", - "$asm.unit-iri": "http://qudt.org/vocab/unit#Knot" - } - }, - "required": [ - "unit" - ] - }, - "kp": { - "properties": { - "unit": { - "type": "string", - "const": "kp", - "$asm.unit-iri": "http://qudt.org/vocab/unit#KiloPond" - } - }, - "required": [ - "unit" - ] - }, - "kt/s": { - "properties": { - "unit": { - "type": "string", - "const": "kt/s", - "$asm.unit-iri": "http://qudt.org/vocab/unit#KnotPerSecond" - } - }, - "required": [ - "unit" - ] - }, - "l_P": { - "properties": { - "unit": { - "type": "string", - "const": "l_P", - "$asm.unit-iri": "http://qudt.org/vocab/unit#PlanckLength" - } - }, - "required": [ - "unit" - ] - }, - "lb mol": { - "properties": { - "unit": { - "type": "string", - "const": "lb mol", - "$asm.unit-iri": "http://qudt.org/vocab/unit#PoundMole" - } - }, - "required": [ - "unit" - ] - }, - "lb mol °F": { - "properties": { - "unit": { - "type": "string", - "const": "lb mol °F", - "$asm.unit-iri": "http://qudt.org/vocab/unit#PoundMoleDegreeFahrenheit" - } - }, - "required": [ - "unit" - ] - }, - "lb-degF": { - "properties": { - "unit": { - "type": "string", - "const": "lb-degF", - "$asm.unit-iri": "http://qudt.org/vocab/unit#PoundDegreeFahrenheit" - } - }, - "required": [ - "unit" - ] - }, - "lb-degR": { - "properties": { - "unit": { - "type": "string", - "const": "lb-degR", - "$asm.unit-iri": "http://qudt.org/vocab/unit#PoundDegreeRankine" - } - }, - "required": [ - "unit" - ] - }, - "lb/(ft-hr)": { - "properties": { - "unit": { - "type": "string", - "const": "lb/(ft-hr)", - "$asm.unit-iri": "http://qudt.org/vocab/unit#PoundPerFootHour" - } - }, - "required": [ - "unit" - ] - }, - "lb/(ft-s)": { - "properties": { - "unit": { - "type": "string", - "const": "lb/(ft-s)", - "$asm.unit-iri": "http://qudt.org/vocab/unit#PoundPerFootSecond" - } - }, - "required": [ - "unit" - ] - }, - "lb/ft": { - "properties": { - "unit": { - "type": "string", - "const": "lb/ft", - "$asm.unit-iri": "http://qudt.org/vocab/unit#PoundPerFoot" - } - }, - "required": [ - "unit" - ] - }, - "lb/ft^2": { - "properties": { - "unit": { - "type": "string", - "const": "lb/ft^2", - "$asm.unit-iri": "http://qudt.org/vocab/unit#PoundPerSquareFoot" - } - }, - "required": [ - "unit" - ] - }, - "lb/ft^3": { - "properties": { - "unit": { - "type": "string", - "const": "lb/ft^3", - "$asm.unit-iri": "http://qudt.org/vocab/unit#PoundPerCubicFoot" - } - }, - "required": [ - "unit" - ] - }, - "lb/gal": { - "properties": { - "unit": { - "type": "string", - "const": "lb/gal", - "$asm.unit-iri": "http://qudt.org/vocab/unit#PoundPerGallon" - } - }, - "required": [ - "unit" - ] - }, - "lb/hr": { - "properties": { - "unit": { - "type": "string", - "const": "lb/hr", - "$asm.unit-iri": "http://qudt.org/vocab/unit#PoundPerHour" - } - }, - "required": [ - "unit" - ] - }, - "lb/in": { - "properties": { - "unit": { - "type": "string", - "const": "lb/in", - "$asm.unit-iri": "http://qudt.org/vocab/unit#PoundPerInch" - } - }, - "required": [ - "unit" - ] - }, - "lb/in^3": { - "properties": { - "unit": { - "type": "string", - "const": "lb/in^3", - "$asm.unit-iri": "http://qudt.org/vocab/unit#PoundPerCubicInch" - } - }, - "required": [ - "unit" - ] - }, - "lb/min": { - "properties": { - "unit": { - "type": "string", - "const": "lb/min", - "$asm.unit-iri": "http://qudt.org/vocab/unit#PoundPerMinute" - } - }, - "required": [ - "unit" - ] - }, - "lb/yd^3": { - "properties": { - "unit": { - "type": "string", - "const": "lb/yd^3", - "$asm.unit-iri": "http://qudt.org/vocab/unit#PoundPerCubicYard" - } - }, - "required": [ - "unit" - ] - }, - "lb_av": { - "properties": { - "unit": { - "type": "string", - "const": "lb_av", - "$asm.unit-iri": "http://purl.allotrope.org/ontology/qudt-ext/unit#AvoirdupoisPound" - } - }, - "required": [ - "unit" - ] - }, - "lbf": { - "properties": { - "unit": { - "type": "string", - "const": "lbf", - "$asm.unit-iri": "http://qudt.org/vocab/unit#PoundForce" - } - }, - "required": [ - "unit" - ] - }, - "lbf / in^2-s": { - "properties": { - "unit": { - "type": "string", - "const": "lbf / in^2-s", - "$asm.unit-iri": "http://qudt.org/vocab/unit#PoundForcePerSquareInchSecond" - } - }, - "required": [ - "unit" - ] - }, - "lbf-ft": { - "properties": { - "unit": { - "type": "string", - "const": "lbf-ft", - "$asm.unit-iri": "http://qudt.org/vocab/unit#PoundForceFoot" - } - }, - "required": [ - "unit" - ] - }, - "lbf-in": { - "properties": { - "unit": { - "type": "string", - "const": "lbf-in", - "$asm.unit-iri": "http://qudt.org/vocab/unit#PoundForceInch" - } - }, - "required": [ - "unit" - ] - }, - "lbf-s/ft^2": { - "properties": { - "unit": { - "type": "string", - "const": "lbf-s/ft^2", - "$asm.unit-iri": "http://qudt.org/vocab/unit#PoundForceSecondPerSquareFoot" - } - }, - "required": [ - "unit" - ] - }, - "lbf-s/in^2": { - "properties": { - "unit": { - "type": "string", - "const": "lbf-s/in^2", - "$asm.unit-iri": "http://qudt.org/vocab/unit#PoundForceSecondPerSquareInch" - } - }, - "required": [ - "unit" - ] - }, - "lbf/ft": { - "properties": { - "unit": { - "type": "string", - "const": "lbf/ft", - "$asm.unit-iri": "http://qudt.org/vocab/unit#PoundForcePerFoot" - } - }, - "required": [ - "unit" - ] - }, - "lbf/ft^2": { - "properties": { - "unit": { - "type": "string", - "const": "lbf/ft^2", - "$asm.unit-iri": "http://qudt.org/vocab/unit#PoundForcePerSquareFoot" - } - }, - "required": [ - "unit" - ] - }, - "lbf/in": { - "properties": { - "unit": { - "type": "string", - "const": "lbf/in", - "$asm.unit-iri": "http://qudt.org/vocab/unit#PoundForcePerInch" - } - }, - "required": [ - "unit" - ] - }, - "lbf/lb": { - "properties": { - "unit": { - "type": "string", - "const": "lbf/lb", - "$asm.unit-iri": "http://qudt.org/vocab/unit#PoundForcePerPound" - } - }, - "required": [ - "unit" - ] - }, - "lbf/s": { - "properties": { - "unit": { - "type": "string", - "const": "lbf/s", - "$asm.unit-iri": "http://qudt.org/vocab/unit#FootPoundForceSecond" - } - }, - "required": [ - "unit" - ] - }, - "lbm": { - "properties": { - "unit": { - "type": "string", - "const": "lbm", - "$asm.unit-iri": "http://qudt.org/vocab/unit#PoundMass" - } - }, - "required": [ - "unit" - ] - }, - "lbm (tr)": { - "properties": { - "unit": { - "type": "string", - "const": "lbm (tr)", - "$asm.unit-iri": "http://qudt.org/vocab/unit#PoundTroy" - } - }, - "required": [ - "unit" - ] - }, - "lbm/m^3": { - "properties": { - "unit": { - "type": "string", - "const": "lbm/m^3", - "$asm.unit-iri": "http://qudt.org/vocab/unit#PoundPerCubicMeter" - } - }, - "required": [ - "unit" - ] - }, - "lcwt": { - "properties": { - "unit": { - "type": "string", - "const": "lcwt", - "$asm.unit-iri": "http://qudt.org/vocab/unit#HundredWeightLong" - } - }, - "required": [ - "unit" - ] - }, - "lm": { - "properties": { - "unit": { - "type": "string", - "const": "lm", - "$asm.unit-iri": "http://qudt.org/vocab/unit#Lumen" - } - }, - "required": [ - "unit" - ] - }, - "lx": { - "properties": { - "unit": { - "type": "string", - "const": "lx", - "$asm.unit-iri": "http://qudt.org/vocab/unit#Lux" - } - }, - "required": [ - "unit" - ] - }, - "ly": { - "properties": { - "unit": { - "type": "string", - "const": "ly", - "$asm.unit-iri": "http://qudt.org/vocab/unit#LightYear" - } - }, - "required": [ - "unit" - ] - }, - "m": { - "properties": { - "unit": { - "type": "string", - "const": "m", - "$asm.unit-iri": "http://qudt.org/vocab/unit#Meter" - } - }, - "required": [ - "unit" - ] - }, - "m K": { - "properties": { - "unit": { - "type": "string", - "const": "m K", - "$asm.unit-iri": "http://qudt.org/vocab/unit#MeterKelvin" - } - }, - "required": [ - "unit" - ] - }, - "m T": { - "properties": { - "unit": { - "type": "string", - "const": "m T", - "$asm.unit-iri": "http://qudt.org/vocab/unit#TeslaMeter" - } - }, - "required": [ - "unit" - ] - }, - "m V": { - "properties": { - "unit": { - "type": "string", - "const": "m V", - "$asm.unit-iri": "http://qudt.org/vocab/unit#VoltMeter" - } - }, - "required": [ - "unit" - ] - }, - "m h^-1": { - "properties": { - "unit": { - "type": "string", - "const": "m h^-1", - "$asm.unit-iri": "http://qudt.org/vocab/unit#MeterPerHour" - } - }, - "required": [ - "unit" - ] - }, - "m min^-1": { - "properties": { - "unit": { - "type": "string", - "const": "m min^-1", - "$asm.unit-iri": "http://qudt.org/vocab/unit#MeterPerMinute" - } - }, - "required": [ - "unit" - ] - }, - "m s^-1": { - "properties": { - "unit": { - "type": "string", - "const": "m s^-1", - "$asm.unit-iri": "http://qudt.org/vocab/unit#MeterPerSecond" - } - }, - "required": [ - "unit" - ] - }, - "m s^-2": { - "properties": { - "unit": { - "type": "string", - "const": "m s^-2", - "$asm.unit-iri": "http://qudt.org/vocab/unit#MeterPerSecondSquared" - } - }, - "required": [ - "unit" - ] - }, - "m-kg": { - "properties": { - "unit": { - "type": "string", - "const": "m-kg", - "$asm.unit-iri": "http://qudt.org/vocab/unit#MeterKilogram" - } - }, - "required": [ - "unit" - ] - }, - "m/F": { - "properties": { - "unit": { - "type": "string", - "const": "m/F", - "$asm.unit-iri": "http://qudt.org/vocab/unit#MeterPerFarad" - } - }, - "required": [ - "unit" - ] - }, - "m/K": { - "properties": { - "unit": { - "type": "string", - "const": "m/K", - "$asm.unit-iri": "http://qudt.org/vocab/unit#MeterPerKelvin" - } - }, - "required": [ - "unit" - ] - }, - "m/z": { - "properties": { - "unit": { - "type": "string", - "const": "m/z", - "$asm.unit-iri": "http://purl.allotrope.org/ontology/qudt-ext/unit#MassPerCharge" - } - }, - "required": [ - "unit" - ] - }, - "mA": { - "properties": { - "unit": { - "type": "string", - "const": "mA", - "$asm.unit-iri": "http://purl.allotrope.org/ontology/qudt-ext/unit#MilliAmpere" - } - }, - "required": [ - "unit" - ] - }, - "mAU": { - "properties": { - "unit": { - "type": "string", - "const": "mAU", - "$asm.unit-iri": "http://purl.allotrope.org/ontology/qudt-ext/unit#MilliAbsorbanceUnit" - } - }, - "required": [ - "unit" - ] - }, - "mAU.L": { - "properties": { - "unit": { - "type": "string", - "const": "mAU.L", - "$asm.unit-iri": "http://purl.allotrope.org/ontology/qudt-ext/unit#MilliAbsorbanceUnitTimesLiter" - } - }, - "required": [ - "unit" - ] - }, - "mAU.mL": { - "properties": { - "unit": { - "type": "string", - "const": "mAU.mL", - "$asm.unit-iri": "http://purl.allotrope.org/ontology/qudt-ext/unit#MilliAbsorbanceUnitTimesMilliliter" - } - }, - "required": [ - "unit" - ] - }, - "mAU.min": { - "properties": { - "unit": { - "type": "string", - "const": "mAU.min", - "$asm.unit-iri": "http://purl.allotrope.org/ontology/qudt-ext/unit#MilliAbsorbanceUnitTimesMinute" - } - }, - "required": [ - "unit" - ] - }, - "mAU.s": { - "properties": { - "unit": { - "type": "string", - "const": "mAU.s", - "$asm.unit-iri": "http://purl.allotrope.org/ontology/qudt-ext/unit#MilliAbsorbanceUnitTimesSecond" - } - }, - "required": [ - "unit" - ] - }, - "mArbU": { - "properties": { - "unit": { - "type": "string", - "const": "mArbU", - "$asm.unit-iri": "http://purl.allotrope.org/ontology/qudt-ext/unit#MilliArbitraryUnit" - } - }, - "required": [ - "unit" - ] - }, - "mF/m": { - "properties": { - "unit": { - "type": "string", - "const": "mF/m", - "$asm.unit-iri": "http://purl.allotrope.org/ontology/qudt-ext/unit#MicroFaradPerMeter" - } - }, - "required": [ - "unit" - ] - }, - "mF/m kHz": { - "properties": { - "unit": { - "type": "string", - "const": "mF/m kHz", - "$asm.unit-iri": "http://purl.allotrope.org/ontology/qudt-ext/unit#MicroFaradPerMeterKiloHertz" - } - }, - "required": [ - "unit" - ] - }, - "mG": { - "properties": { - "unit": { - "type": "string", - "const": "mG", - "$asm.unit-iri": "http://qudt.org/vocab/unit#Milligravity" - } - }, - "required": [ - "unit" - ] - }, - "mH": { - "properties": { - "unit": { - "type": "string", - "const": "mH", - "$asm.unit-iri": "http://qudt.org/vocab/unit#MilliHenry" - } - }, - "required": [ - "unit" - ] - }, - "mL": { - "properties": { - "unit": { - "type": "string", - "const": "mL", - "$asm.unit-iri": "http://purl.allotrope.org/ontology/qudt-ext/unit#Milliliter" - } - }, - "required": [ - "unit" - ] - }, - "mL/L": { - "properties": { - "unit": { - "type": "string", - "const": "mL/L", - "$asm.unit-iri": "http://purl.allotrope.org/ontology/qudt-ext/unit#MilliliterPerLiter" - } - }, - "required": [ - "unit" - ] - }, - "mL/kg": { - "properties": { - "unit": { - "type": "string", - "const": "mL/kg", - "$asm.unit-iri": "http://purl.allotrope.org/ontology/qudt-ext/unit#MilliliterPerKilogram" - } - }, - "required": [ - "unit" - ] - }, - "mL/min": { - "properties": { - "unit": { - "type": "string", - "const": "mL/min", - "$asm.unit-iri": "http://purl.allotrope.org/ontology/qudt-ext/unit#MilliliterPerMinute" - } - }, - "required": [ - "unit" - ] - }, - "mL/min^2": { - "properties": { - "unit": { - "type": "string", - "const": "mL/min^2", - "$asm.unit-iri": "http://purl.allotrope.org/ontology/qudt-ext/unit#MilliliterPerMinuteSquared" - } - }, - "required": [ - "unit" - ] - }, - "mL/s": { - "properties": { - "unit": { - "type": "string", - "const": "mL/s", - "$asm.unit-iri": "http://purl.allotrope.org/ontology/qudt-ext/unit#MilliliterPerSecond" - } - }, - "required": [ - "unit" - ] - }, - "mL/s^2": { - "properties": { - "unit": { - "type": "string", - "const": "mL/s^2", - "$asm.unit-iri": "http://purl.allotrope.org/ontology/qudt-ext/unit#MilliliterPerSecondSquared" - } - }, - "required": [ - "unit" - ] - }, - "mM": { - "properties": { - "unit": { - "type": "string", - "const": "mM", - "$asm.unit-iri": "http://purl.allotrope.org/ontology/qudt-ext/unit#Millimolar" - } - }, - "required": [ - "unit" - ] - }, - "mS/cm": { - "properties": { - "unit": { - "type": "string", - "const": "mS/cm", - "$asm.unit-iri": "http://purl.allotrope.org/ontology/qudt-ext/unit#MillisiemenPerCentimeter" - } - }, - "required": [ - "unit" - ] - }, - "mT": { - "properties": { - "unit": { - "type": "string", - "const": "mT", - "$asm.unit-iri": "http://qudt.org/vocab/unit#MetricTon" - } - }, - "required": [ - "unit" - ] - }, - "mV": { - "properties": { - "unit": { - "type": "string", - "const": "mV", - "$asm.unit-iri": "http://purl.allotrope.org/ontology/qudt-ext/unit#Millivolt" - } - }, - "required": [ - "unit" - ] - }, - "mV.L": { - "properties": { - "unit": { - "type": "string", - "const": "mV.L", - "$asm.unit-iri": "http://purl.allotrope.org/ontology/qudt-ext/unit#MillivoltTimesLiter" - } - }, - "required": [ - "unit" - ] - }, - "mV.s": { - "properties": { - "unit": { - "type": "string", - "const": "mV.s", - "$asm.unit-iri": "http://purl.allotrope.org/ontology/qudt-ext/unit#MillivoltTimesSecond" - } - }, - "required": [ - "unit" - ] - }, - "mW": { - "properties": { - "unit": { - "type": "string", - "const": "mW", - "$asm.unit-iri": "http://purl.allotrope.org/ontology/qudt-ext/unit#MilliWatt" - } - }, - "required": [ - "unit" - ] - }, - "mW/g": { - "properties": { - "unit": { - "type": "string", - "const": "mW/g", - "$asm.unit-iri": "http://purl.allotrope.org/ontology/qudt-ext/unit#MilliWattPerGram" - } - }, - "required": [ - "unit" - ] - }, - "m^-1": { - "properties": { - "unit": { - "type": "string", - "const": "m^-1", - "$asm.unit-iri": "http://qudt.org/vocab/unit#PerMeter" - } - }, - "required": [ - "unit" - ] - }, - "m^-1 K^-1": { - "properties": { - "unit": { - "type": "string", - "const": "m^-1 K^-1", - "$asm.unit-iri": "http://qudt.org/vocab/unit#PerMeterKelvin" - } - }, - "required": [ - "unit" - ] - }, - "m^-1 T^-1": { - "properties": { - "unit": { - "type": "string", - "const": "m^-1 T^-1", - "$asm.unit-iri": "http://qudt.org/vocab/unit#PerTeslaMeter" - } - }, - "required": [ - "unit" - ] - }, - "m^-3": { - "properties": { - "unit": { - "type": "string", - "const": "m^-3", - "$asm.unit-iri": "http://qudt.org/vocab/unit#PerCubicMeter" - } - }, - "required": [ - "unit" - ] - }, - "m^2": { - "properties": { - "unit": { - "type": "string", - "const": "m^2", - "$asm.unit-iri": "http://qudt.org/vocab/unit#SquareMeter" - } - }, - "required": [ - "unit" - ] - }, - "m^2 K": { - "properties": { - "unit": { - "type": "string", - "const": "m^2 K", - "$asm.unit-iri": "http://qudt.org/vocab/unit#SquareMeterKelvin" - } - }, - "required": [ - "unit" - ] - }, - "m^2 sr": { - "properties": { - "unit": { - "type": "string", - "const": "m^2 sr", - "$asm.unit-iri": "http://qudt.org/vocab/unit#SquareMeterSteradian" - } - }, - "required": [ - "unit" - ] - }, - "m^2/K": { - "properties": { - "unit": { - "type": "string", - "const": "m^2/K", - "$asm.unit-iri": "http://qudt.org/vocab/unit#SquareMeterPerKelvin" - } - }, - "required": [ - "unit" - ] - }, - "m^2/g": { - "properties": { - "unit": { - "type": "string", - "const": "m^2/g", - "$asm.unit-iri": "http://purl.allotrope.org/ontology/qudt-ext/unit#SquareMetersPerGram" - } - }, - "required": [ - "unit" - ] - }, - "m^2/s": { - "properties": { - "unit": { - "type": "string", - "const": "m^2/s", - "$asm.unit-iri": "http://qudt.org/vocab/unit#SquareMeterPerSecond" - } - }, - "required": [ - "unit" - ] - }, - "m^3": { - "properties": { - "unit": { - "type": "string", - "const": "m^3", - "$asm.unit-iri": "http://qudt.org/vocab/unit#CubicMeter" - } - }, - "required": [ - "unit" - ] - }, - "m^3 kg^-1 s^-2": { - "properties": { - "unit": { - "type": "string", - "const": "m^3 kg^-1 s^-2", - "$asm.unit-iri": "http://qudt.org/vocab/unit#CubicMeterPerKilogramSecondSquared" - } - }, - "required": [ - "unit" - ] - }, - "m^3 mol^-1": { - "properties": { - "unit": { - "type": "string", - "const": "m^3 mol^-1", - "$asm.unit-iri": "http://qudt.org/vocab/unit#CubicMeterPerMole" - } - }, - "required": [ - "unit" - ] - }, - "m^3/K": { - "properties": { - "unit": { - "type": "string", - "const": "m^3/K", - "$asm.unit-iri": "http://qudt.org/vocab/unit#CubicMeterPerKelvin" - } - }, - "required": [ - "unit" - ] - }, - "m^3/h": { - "properties": { - "unit": { - "type": "string", - "const": "m^3/h", - "$asm.unit-iri": "http://qudt.org/vocab/unit#CubicMeterPerHour" - } - }, - "required": [ - "unit" - ] - }, - "m^3/kg": { - "properties": { - "unit": { - "type": "string", - "const": "m^3/kg", - "$asm.unit-iri": "http://qudt.org/vocab/unit#CubicMeterPerKilogram" - } - }, - "required": [ - "unit" - ] - }, - "m^3/s": { - "properties": { - "unit": { - "type": "string", - "const": "m^3/s", - "$asm.unit-iri": "http://qudt.org/vocab/unit#CubicMeterPerSecond" - } - }, - "required": [ - "unit" - ] - }, - "m^3/s^2": { - "properties": { - "unit": { - "type": "string", - "const": "m^3/s^2", - "$asm.unit-iri": "http://qudt.org/vocab/unit#CubicMeterPerSecondSquared" - } - }, - "required": [ - "unit" - ] - }, - "m_P": { - "properties": { - "unit": { - "type": "string", - "const": "m_P", - "$asm.unit-iri": "http://qudt.org/vocab/unit#PlanckMass" - } - }, - "required": [ - "unit" - ] - }, - "mbar": { - "properties": { - "unit": { - "type": "string", - "const": "mbar", - "$asm.unit-iri": "http://qudt.org/vocab/unit#Millibar" - } - }, - "required": [ - "unit" - ] - }, - "mbps": { - "properties": { - "unit": { - "type": "string", - "const": "mbps", - "$asm.unit-iri": "http://qudt.org/vocab/unit#MegabitsPerSecond" - } - }, - "required": [ - "unit" - ] - }, - "mcal/(mol °C)": { - "properties": { - "unit": { - "type": "string", - "const": "mcal/(mol °C)", - "$asm.unit-iri": "http://purl.allotrope.org/ontology/qudt-ext/unit#MilliCaloriePerMoleDegreeCelsius" - } - }, - "required": [ - "unit" - ] - }, - "mcal/min": { - "properties": { - "unit": { - "type": "string", - "const": "mcal/min", - "$asm.unit-iri": "http://purl.allotrope.org/ontology/qudt-ext/unit#MilliCaloriePerMinute" - } - }, - "required": [ - "unit" - ] - }, - "mcal/s": { - "properties": { - "unit": { - "type": "string", - "const": "mcal/s", - "$asm.unit-iri": "http://purl.allotrope.org/ontology/qudt-ext/unit#MilliCaloriePerSecond" - } - }, - "required": [ - "unit" - ] - }, - "mg": { - "properties": { - "unit": { - "type": "string", - "const": "mg", - "$asm.unit-iri": "http://purl.allotrope.org/ontology/qudt-ext/unit#Milligram" - } - }, - "required": [ - "unit" - ] - }, - "mg/L": { - "properties": { - "unit": { - "type": "string", - "const": "mg/L", - "$asm.unit-iri": "http://purl.allotrope.org/ontology/qudt-ext/unit#MilligramPerLiter" - } - }, - "required": [ - "unit" - ] - }, - "mg/cm^2": { - "properties": { - "unit": { - "type": "string", - "const": "mg/cm^2", - "$asm.unit-iri": "http://purl.allotrope.org/ontology/qudt-ext/unit#MilligramPerSquareCentimeter" - } - }, - "required": [ - "unit" - ] - }, - "mg/dL": { - "properties": { - "unit": { - "type": "string", - "const": "mg/dL", - "$asm.unit-iri": "http://purl.allotrope.org/ontology/qudt-ext/unit#MilligramPerDeciliter" - } - }, - "required": [ - "unit" - ] - }, - "mg/fL": { - "properties": { - "unit": { - "type": "string", - "const": "mg/fL", - "$asm.unit-iri": "http://purl.allotrope.org/ontology/qudt-ext/unit#MilligramPerFemtoliter" - } - }, - "required": [ - "unit" - ] - }, - "mg/kg": { - "properties": { - "unit": { - "type": "string", - "const": "mg/kg", - "$asm.unit-iri": "http://purl.allotrope.org/ontology/qudt-ext/unit#MilligramPerKilogram" - } - }, - "required": [ - "unit" - ] - }, - "mg/mL": { - "properties": { - "unit": { - "type": "string", - "const": "mg/mL", - "$asm.unit-iri": "http://purl.allotrope.org/ontology/qudt-ext/unit#MilligramPerMilliliter" - } - }, - "required": [ - "unit" - ] - }, - "mg/m^2": { - "properties": { - "unit": { - "type": "string", - "const": "mg/m^2", - "$asm.unit-iri": "http://purl.allotrope.org/ontology/qudt-ext/unit#MilligramPerSquareMeter" - } - }, - "required": [ - "unit" - ] - }, - "mg/min": { - "properties": { - "unit": { - "type": "string", - "const": "mg/min", - "$asm.unit-iri": "http://purl.allotrope.org/ontology/qudt-ext/unit#MilligramPerMinute" - } - }, - "required": [ - "unit" - ] - }, - "mg/nL": { - "properties": { - "unit": { - "type": "string", - "const": "mg/nL", - "$asm.unit-iri": "http://purl.allotrope.org/ontology/qudt-ext/unit#MilligramPerNanoliter" - } - }, - "required": [ - "unit" - ] - }, - "mg/pL": { - "properties": { - "unit": { - "type": "string", - "const": "mg/pL", - "$asm.unit-iri": "http://purl.allotrope.org/ontology/qudt-ext/unit#MilligramPerPicoliter" - } - }, - "required": [ - "unit" - ] - }, - "mg/s": { - "properties": { - "unit": { - "type": "string", - "const": "mg/s", - "$asm.unit-iri": "http://purl.allotrope.org/ontology/qudt-ext/unit#MilligramPerSecond" - } - }, - "required": [ - "unit" - ] - }, - "mg/μL": { - "properties": { - "unit": { - "type": "string", - "const": "mg/μL", - "$asm.unit-iri": "http://purl.allotrope.org/ontology/qudt-ext/unit#MilligramPerMicroliter" - } - }, - "required": [ - "unit" - ] - }, - "mho": { - "properties": { - "unit": { - "type": "string", - "const": "mho", - "$asm.unit-iri": "http://qudt.org/vocab/unit#Mho" - } - }, - "required": [ - "unit" - ] - }, - "mi": { - "properties": { - "unit": { - "type": "string", - "const": "mi", - "$asm.unit-iri": "http://qudt.org/vocab/unit#MileInternational" - } - }, - "required": [ - "unit" - ] - }, - "mi/hr": { - "properties": { - "unit": { - "type": "string", - "const": "mi/hr", - "$asm.unit-iri": "http://qudt.org/vocab/unit#MilePerHour" - } - }, - "required": [ - "unit" - ] - }, - "mi/min": { - "properties": { - "unit": { - "type": "string", - "const": "mi/min", - "$asm.unit-iri": "http://qudt.org/vocab/unit#MilePerMinute" - } - }, - "required": [ - "unit" - ] - }, - "miUS": { - "properties": { - "unit": { - "type": "string", - "const": "miUS", - "$asm.unit-iri": "http://qudt.org/vocab/unit#MileUSStatute" - } - }, - "required": [ - "unit" - ] - }, - "mi^2": { - "properties": { - "unit": { - "type": "string", - "const": "mi^2", - "$asm.unit-iri": "http://qudt.org/vocab/unit#SquareMile" - } - }, - "required": [ - "unit" - ] - }, - "mi^3": { - "properties": { - "unit": { - "type": "string", - "const": "mi^3", - "$asm.unit-iri": "http://qudt.org/vocab/unit#CubicMile" - } - }, - "required": [ - "unit" - ] - }, - "microF": { - "properties": { - "unit": { - "type": "string", - "const": "microF", - "$asm.unit-iri": "http://qudt.org/vocab/unit#MicroFarad" - } - }, - "required": [ - "unit" - ] - }, - "mil": { - "properties": { - "unit": { - "type": "string", - "const": "mil", - "$asm.unit-iri": "http://qudt.org/vocab/unit#MilAngle" - } - }, - "required": [ - "unit" - ] - }, - "mil (l)": { - "properties": { - "unit": { - "type": "string", - "const": "mil (l)", - "$asm.unit-iri": "http://qudt.org/vocab/unit#MilLength" - } - }, - "required": [ - "unit" - ] - }, - "min": { - "properties": { - "unit": { - "type": "string", - "const": "min", - "$asm.unit-iri": "http://qudt.org/vocab/unit#MinuteTime" - } - }, - "required": [ - "unit" - ] - }, - "min (s)": { - "properties": { - "unit": { - "type": "string", - "const": "min (s)", - "$asm.unit-iri": "http://qudt.org/vocab/unit#MinuteSidereal" - } - }, - "required": [ - "unit" - ] - }, - "min^-1": { - "properties": { - "unit": { - "type": "string", - "const": "min^-1", - "$asm.unit-iri": "http://purl.allotrope.org/ontology/qudt-ext/unit#PerMinute" - } - }, - "required": [ - "unit" - ] - }, - "mm": { - "properties": { - "unit": { - "type": "string", - "const": "mm", - "$asm.unit-iri": "http://qudt.org/vocab/unit#Millimeter" - } - }, - "required": [ - "unit" - ] - }, - "mm/min": { - "properties": { - "unit": { - "type": "string", - "const": "mm/min", - "$asm.unit-iri": "http://purl.allotrope.org/ontology/qudt-ext/unit#MillimeterPerMinute" - } - }, - "required": [ - "unit" - ] - }, - "mm/s": { - "properties": { - "unit": { - "type": "string", - "const": "mm/s", - "$asm.unit-iri": "http://purl.allotrope.org/ontology/qudt-ext/unit#MillimeterPerSecond" - } - }, - "required": [ - "unit" - ] - }, - "mmHg": { - "properties": { - "unit": { - "type": "string", - "const": "mmHg", - "$asm.unit-iri": "http://qudt.org/vocab/unit#MillimeterOfMercury" - } - }, - "required": [ - "unit" - ] - }, - "mmHg/min": { - "properties": { - "unit": { - "type": "string", - "const": "mmHg/min", - "$asm.unit-iri": "http://purl.allotrope.org/ontology/qudt-ext/unit#MillimeterOfMercuryPerMinute" - } - }, - "required": [ - "unit" - ] - }, - "mmHgA": { - "properties": { - "unit": { - "type": "string", - "const": "mmHgA", - "$asm.unit-iri": "http://qudt.org/vocab/unit#MillimeterOfMercuryAbsolute" - } - }, - "required": [ - "unit" - ] - }, - "mm^3": { - "properties": { - "unit": { - "type": "string", - "const": "mm^3", - "$asm.unit-iri": "http://qudt.org/vocab/unit#CubicMillimeter" - } - }, - "required": [ - "unit" - ] - }, - "mmol": { - "properties": { - "unit": { - "type": "string", - "const": "mmol", - "$asm.unit-iri": "http://purl.allotrope.org/ontology/qudt-ext/unit#Millimole" - } - }, - "required": [ - "unit" - ] - }, - "mmol/L": { - "properties": { - "unit": { - "type": "string", - "const": "mmol/L", - "$asm.unit-iri": "http://purl.allotrope.org/ontology/qudt-ext/unit#MillimolePerLiter" - } - }, - "required": [ - "unit" - ] - }, - "mmol/mL": { - "properties": { - "unit": { - "type": "string", - "const": "mmol/mL", - "$asm.unit-iri": "http://purl.allotrope.org/ontology/qudt-ext/unit#MillimolePerMilliliter" - } - }, - "required": [ - "unit" - ] - }, - "mol": { - "properties": { - "unit": { - "type": "string", - "const": "mol", - "$asm.unit-iri": "http://qudt.org/vocab/unit#Mole" - } - }, - "required": [ - "unit" - ] - }, - "mol K": { - "properties": { - "unit": { - "type": "string", - "const": "mol K", - "$asm.unit-iri": "http://qudt.org/vocab/unit#MoleKelvin" - } - }, - "required": [ - "unit" - ] - }, - "mol-degC": { - "properties": { - "unit": { - "type": "string", - "const": "mol-degC", - "$asm.unit-iri": "http://qudt.org/vocab/unit#MoleDegreeCelsius" - } - }, - "required": [ - "unit" - ] - }, - "mol/L": { - "properties": { - "unit": { - "type": "string", - "const": "mol/L", - "$asm.unit-iri": "http://purl.allotrope.org/ontology/qudt-ext/unit#MolePerLiter" - } - }, - "required": [ - "unit" - ] - }, - "mol/dm^3": { - "properties": { - "unit": { - "type": "string", - "const": "mol/dm^3", - "$asm.unit-iri": "http://purl.allotrope.org/ontology/qudt-ext/unit#MolePerCubicDecimeter" - } - }, - "required": [ - "unit" - ] - }, - "mol/kg": { - "properties": { - "unit": { - "type": "string", - "const": "mol/kg", - "$asm.unit-iri": "http://qudt.org/vocab/unit#MolePerKilogram" - } - }, - "required": [ - "unit" - ] - }, - "mol/m^3": { - "properties": { - "unit": { - "type": "string", - "const": "mol/m^3", - "$asm.unit-iri": "http://qudt.org/vocab/unit#MolePerCubicMeter" - } - }, - "required": [ - "unit" - ] - }, - "mol^-1": { - "properties": { - "unit": { - "type": "string", - "const": "mol^-1", - "$asm.unit-iri": "http://qudt.org/vocab/unit#PerMole" - } - }, - "required": [ - "unit" - ] - }, - "mosm/kg": { - "properties": { - "unit": { - "type": "string", - "const": "mosm/kg", - "$asm.unit-iri": "http://purl.allotrope.org/ontology/qudt-ext/unit#MilliOsmolesPerKilogram" - } - }, - "required": [ - "unit" - ] - }, - "ms": { - "properties": { - "unit": { - "type": "string", - "const": "ms", - "$asm.unit-iri": "http://qudt.org/vocab/unit#MilliSecond" - } - }, - "required": [ - "unit" - ] - }, - "mtorr": { - "properties": { - "unit": { - "type": "string", - "const": "mtorr", - "$asm.unit-iri": "http://qudt.org/vocab/unit#MilliTorr" - } - }, - "required": [ - "unit" - ] - }, - "m°": { - "properties": { - "unit": { - "type": "string", - "const": "m°", - "$asm.unit-iri": "http://purl.allotrope.org/ontology/qudt-ext/unit#MilliDegreeAngle" - } - }, - "required": [ - "unit" - ] - }, - "m°.s": { - "properties": { - "unit": { - "type": "string", - "const": "m°.s", - "$asm.unit-iri": "http://purl.allotrope.org/ontology/qudt-ext/unit#MilliDegreeAngleTimesSecond" - } - }, - "required": [ - "unit" - ] - }, - "n mile": { - "properties": { - "unit": { - "type": "string", - "const": "n mile", - "$asm.unit-iri": "http://qudt.org/vocab/unit#NauticalMile" - } - }, - "required": [ - "unit" - ] - }, - "nA": { - "properties": { - "unit": { - "type": "string", - "const": "nA", - "$asm.unit-iri": "http://purl.allotrope.org/ontology/qudt-ext/unit#NanoAmpere" - } - }, - "required": [ - "unit" - ] - }, - "nC": { - "properties": { - "unit": { - "type": "string", - "const": "nC", - "$asm.unit-iri": "http://purl.allotrope.org/ontology/qudt-ext/unit#NanoCoulomb" - } - }, - "required": [ - "unit" - ] - }, - "nC.L": { - "properties": { - "unit": { - "type": "string", - "const": "nC.L", - "$asm.unit-iri": "http://purl.allotrope.org/ontology/qudt-ext/unit#NanoCoulombTimesLiter" - } - }, - "required": [ - "unit" - ] - }, - "nC.s": { - "properties": { - "unit": { - "type": "string", - "const": "nC.s", - "$asm.unit-iri": "http://purl.allotrope.org/ontology/qudt-ext/unit#NanoCoulombTimesSecond" - } - }, - "required": [ - "unit" - ] - }, - "nF": { - "properties": { - "unit": { - "type": "string", - "const": "nF", - "$asm.unit-iri": "http://qudt.org/vocab/unit#NanoFarad" - } - }, - "required": [ - "unit" - ] - }, - "nL": { - "properties": { - "unit": { - "type": "string", - "const": "nL", - "$asm.unit-iri": "http://purl.allotrope.org/ontology/qudt-ext/unit#Nanoliter" - } - }, - "required": [ - "unit" - ] - }, - "nano RIU.s": { - "properties": { - "unit": { - "type": "string", - "const": "nano RIU.s", - "$asm.unit-iri": "http://purl.allotrope.org/ontology/qudt-ext/unit#NanoRefractiveIndexUnitTimesSecond" - } - }, - "required": [ - "unit" - ] - }, - "nat": { - "properties": { - "unit": { - "type": "string", - "const": "nat", - "$asm.unit-iri": "http://qudt.org/vocab/unit#Nat" - } - }, - "required": [ - "unit" - ] - }, - "ng": { - "properties": { - "unit": { - "type": "string", - "const": "ng", - "$asm.unit-iri": "http://purl.allotrope.org/ontology/qudt-ext/unit#Nanogram" - } - }, - "required": [ - "unit" - ] - }, - "ng/L": { - "properties": { - "unit": { - "type": "string", - "const": "ng/L", - "$asm.unit-iri": "http://purl.allotrope.org/ontology/qudt-ext/unit#NanogramPerLiter" - } - }, - "required": [ - "unit" - ] - }, - "ng/cm^2": { - "properties": { - "unit": { - "type": "string", - "const": "ng/cm^2", - "$asm.unit-iri": "http://purl.allotrope.org/ontology/qudt-ext/unit#NanogramPerSquareCentimeter" - } - }, - "required": [ - "unit" - ] - }, - "ng/fL": { - "properties": { - "unit": { - "type": "string", - "const": "ng/fL", - "$asm.unit-iri": "http://purl.allotrope.org/ontology/qudt-ext/unit#NanogramPerFemtoliter" - } - }, - "required": [ - "unit" - ] - }, - "ng/mL": { - "properties": { - "unit": { - "type": "string", - "const": "ng/mL", - "$asm.unit-iri": "http://purl.allotrope.org/ontology/qudt-ext/unit#NanogramPerMilliliter" - } - }, - "required": [ - "unit" - ] - }, - "ng/m^2": { - "properties": { - "unit": { - "type": "string", - "const": "ng/m^2", - "$asm.unit-iri": "http://purl.allotrope.org/ontology/qudt-ext/unit#NanogramPerSquareMeter" - } - }, - "required": [ - "unit" - ] - }, - "ng/nL": { - "properties": { - "unit": { - "type": "string", - "const": "ng/nL", - "$asm.unit-iri": "http://purl.allotrope.org/ontology/qudt-ext/unit#NanogramPerNanoliter" - } - }, - "required": [ - "unit" - ] - }, - "ng/pL": { - "properties": { - "unit": { - "type": "string", - "const": "ng/pL", - "$asm.unit-iri": "http://purl.allotrope.org/ontology/qudt-ext/unit#NanogramPerPicoliter" - } - }, - "required": [ - "unit" - ] - }, - "ng/μL": { - "properties": { - "unit": { - "type": "string", - "const": "ng/μL", - "$asm.unit-iri": "http://purl.allotrope.org/ontology/qudt-ext/unit#NanogramPerMicroliter" - } - }, - "required": [ - "unit" - ] - }, - "nm": { - "properties": { - "unit": { - "type": "string", - "const": "nm", - "$asm.unit-iri": "http://purl.allotrope.org/ontology/qudt-ext/unit#Nanometer" - } - }, - "required": [ - "unit" - ] - }, - "nmi/hr": { - "properties": { - "unit": { - "type": "string", - "const": "nmi/hr", - "$asm.unit-iri": "http://qudt.org/vocab/unit#NauticalMilePerHour" - } - }, - "required": [ - "unit" - ] - }, - "nmi/min": { - "properties": { - "unit": { - "type": "string", - "const": "nmi/min", - "$asm.unit-iri": "http://qudt.org/vocab/unit#NauticalMilePerMinute" - } - }, - "required": [ - "unit" - ] - }, - "nmol": { - "properties": { - "unit": { - "type": "string", - "const": "nmol", - "$asm.unit-iri": "http://purl.allotrope.org/ontology/qudt-ext/unit#Nanomole" - } - }, - "required": [ - "unit" - ] - }, - "nmol/dm^3": { - "properties": { - "unit": { - "type": "string", - "const": "nmol/dm^3", - "$asm.unit-iri": "http://purl.allotrope.org/ontology/qudt-ext/unit#Nanomolar" - } - }, - "required": [ - "unit" - ] - }, - "osm/L": { - "properties": { - "unit": { - "type": "string", - "const": "osm/L", - "$asm.unit-iri": "http://purl.allotrope.org/ontology/qudt-ext/unit#OsmolesPerLiter" - } - }, - "required": [ - "unit" - ] - }, - "oz": { - "properties": { - "unit": { - "type": "string", - "const": "oz", - "$asm.unit-iri": "http://qudt.org/vocab/unit#OunceImperial" - } - }, - "required": [ - "unit" - ] - }, - "oz (tr)": { - "properties": { - "unit": { - "type": "string", - "const": "oz (tr)", - "$asm.unit-iri": "http://qudt.org/vocab/unit#OunceTroy" - } - }, - "required": [ - "unit" - ] - }, - "oz fl": { - "properties": { - "unit": { - "type": "string", - "const": "oz fl", - "$asm.unit-iri": "http://qudt.org/vocab/unit#LiquidOunceUS" - } - }, - "required": [ - "unit" - ] - }, - "oz/ft^2": { - "properties": { - "unit": { - "type": "string", - "const": "oz/ft^2", - "$asm.unit-iri": "http://qudt.org/vocab/unit#OuncePerSquareFoot" - } - }, - "required": [ - "unit" - ] - }, - "oz/gal": { - "properties": { - "unit": { - "type": "string", - "const": "oz/gal", - "$asm.unit-iri": "http://qudt.org/vocab/unit#OuncePerGallon" - } - }, - "required": [ - "unit" - ] - }, - "oz/in^3": { - "properties": { - "unit": { - "type": "string", - "const": "oz/in^3", - "$asm.unit-iri": "http://qudt.org/vocab/unit#OuncePerCubicInch" - } - }, - "required": [ - "unit" - ] - }, - "oz/yd^2": { - "properties": { - "unit": { - "type": "string", - "const": "oz/yd^2", - "$asm.unit-iri": "http://qudt.org/vocab/unit#OuncePerSquareYard" - } - }, - "required": [ - "unit" - ] - }, - "ozf": { - "properties": { - "unit": { - "type": "string", - "const": "ozf", - "$asm.unit-iri": "http://qudt.org/vocab/unit#OunceForce" - } - }, - "required": [ - "unit" - ] - }, - "ozf in": { - "properties": { - "unit": { - "type": "string", - "const": "ozf in", - "$asm.unit-iri": "http://qudt.org/vocab/unit#OunceForceInch" - } - }, - "required": [ - "unit" - ] - }, - "ozm": { - "properties": { - "unit": { - "type": "string", - "const": "ozm", - "$asm.unit-iri": "http://qudt.org/vocab/unit#OunceMass" - } - }, - "required": [ - "unit" - ] - }, - "pA": { - "properties": { - "unit": { - "type": "string", - "const": "pA", - "$asm.unit-iri": "http://purl.allotrope.org/ontology/qudt-ext/unit#PicoAmpere" - } - }, - "required": [ - "unit" - ] - }, - "pA.L": { - "properties": { - "unit": { - "type": "string", - "const": "pA.L", - "$asm.unit-iri": "http://purl.allotrope.org/ontology/qudt-ext/unit#PicoAmpereTimesLiter" - } - }, - "required": [ - "unit" - ] - }, - "pA.min": { - "properties": { - "unit": { - "type": "string", - "const": "pA.min", - "$asm.unit-iri": "http://purl.allotrope.org/ontology/qudt-ext/unit#PicoAmperesTimesMinute" - } - }, - "required": [ - "unit" - ] - }, - "pA.s": { - "properties": { - "unit": { - "type": "string", - "const": "pA.s", - "$asm.unit-iri": "http://purl.allotrope.org/ontology/qudt-ext/unit#PicoAmpereTimesSecond" - } - }, - "required": [ - "unit" - ] - }, - "pF": { - "properties": { - "unit": { - "type": "string", - "const": "pF", - "$asm.unit-iri": "http://qudt.org/vocab/unit#PicoFarad" - } - }, - "required": [ - "unit" - ] - }, - "pH": { - "properties": { - "unit": { - "type": "string", - "const": "pH", - "$asm.unit-iri": "http://purl.allotrope.org/ontology/qudt-ext/unit#PH" - } - }, - "required": [ - "unit" - ] - }, - "pL": { - "properties": { - "unit": { - "type": "string", - "const": "pL", - "$asm.unit-iri": "http://purl.allotrope.org/ontology/qudt-ext/unit#Picoliter" - } - }, - "required": [ - "unit" - ] - }, - "pc": { - "properties": { - "unit": { - "type": "string", - "const": "pc", - "$asm.unit-iri": "http://qudt.org/vocab/unit#Parsec" - } - }, - "required": [ - "unit" - ] - }, - "pdl": { - "properties": { - "unit": { - "type": "string", - "const": "pdl", - "$asm.unit-iri": "http://qudt.org/vocab/unit#Poundal" - } - }, - "required": [ - "unit" - ] - }, - "pdl/ft^2": { - "properties": { - "unit": { - "type": "string", - "const": "pdl/ft^2", - "$asm.unit-iri": "http://qudt.org/vocab/unit#PoundalPerSquareFoot" - } - }, - "required": [ - "unit" - ] - }, - "person": { - "properties": { - "unit": { - "type": "string", - "const": "person", - "$asm.unit-iri": "http://qudt.org/vocab/unit#Person" - } - }, - "required": [ - "unit" - ] - }, - "pg": { - "properties": { - "unit": { - "type": "string", - "const": "pg", - "$asm.unit-iri": "http://purl.allotrope.org/ontology/qudt-ext/unit#Picogram" - } - }, - "required": [ - "unit" - ] - }, - "pg/L": { - "properties": { - "unit": { - "type": "string", - "const": "pg/L", - "$asm.unit-iri": "http://purl.allotrope.org/ontology/qudt-ext/unit#PicogramPerLiter" - } - }, - "required": [ - "unit" - ] - }, - "pg/cm^2": { - "properties": { - "unit": { - "type": "string", - "const": "pg/cm^2", - "$asm.unit-iri": "http://purl.allotrope.org/ontology/qudt-ext/unit#PicogramPerSquareCentimeter" - } - }, - "required": [ - "unit" - ] - }, - "pg/fL": { - "properties": { - "unit": { - "type": "string", - "const": "pg/fL", - "$asm.unit-iri": "http://purl.allotrope.org/ontology/qudt-ext/unit#PicogramPerFemtoliter" - } - }, - "required": [ - "unit" - ] - }, - "pg/mL": { - "properties": { - "unit": { - "type": "string", - "const": "pg/mL", - "$asm.unit-iri": "http://purl.allotrope.org/ontology/qudt-ext/unit#PicogramPerMilliliter" - } - }, - "required": [ - "unit" - ] - }, - "pg/m^2": { - "properties": { - "unit": { - "type": "string", - "const": "pg/m^2", - "$asm.unit-iri": "http://purl.allotrope.org/ontology/qudt-ext/unit#PicogramPerSquareMeter" - } - }, - "required": [ - "unit" - ] - }, - "pg/nL": { - "properties": { - "unit": { - "type": "string", - "const": "pg/nL", - "$asm.unit-iri": "http://purl.allotrope.org/ontology/qudt-ext/unit#PicogramPerNanoliter" - } - }, - "required": [ - "unit" - ] - }, - "pg/pL": { - "properties": { - "unit": { - "type": "string", - "const": "pg/pL", - "$asm.unit-iri": "http://purl.allotrope.org/ontology/qudt-ext/unit#PicogramPerPicoliter" - } - }, - "required": [ - "unit" - ] - }, - "pg/μL": { - "properties": { - "unit": { - "type": "string", - "const": "pg/μL", - "$asm.unit-iri": "http://purl.allotrope.org/ontology/qudt-ext/unit#PicogramPerMicroliter" - } - }, - "required": [ - "unit" - ] - }, - "ph": { - "properties": { - "unit": { - "type": "string", - "const": "ph", - "$asm.unit-iri": "http://qudt.org/vocab/unit#Phot" - } - }, - "required": [ - "unit" - ] - }, - "pi": { - "properties": { - "unit": { - "type": "string", - "const": "pi", - "$asm.unit-iri": "http://qudt.org/vocab/unit#PintImperial" - } - }, - "required": [ - "unit" - ] - }, - "pixel": { - "properties": { - "unit": { - "type": "string", - "const": "pixel", - "$asm.unit-iri": "http://purl.allotrope.org/ontology/qudt-ext/unit#Pixel" - } - }, - "required": [ - "unit" - ] - }, - "pixel/mm": { - "properties": { - "unit": { - "type": "string", - "const": "pixel/mm", - "$asm.unit-iri": "http://purl.allotrope.org/ontology/qudt-ext/unit#PixelPerMillimeter" - } - }, - "required": [ - "unit" - ] - }, - "pk": { - "properties": { - "unit": { - "type": "string", - "const": "pk", - "$asm.unit-iri": "http://qudt.org/vocab/unit#Peck" - } - }, - "required": [ - "unit" - ] - }, - "plates/m": { - "properties": { - "unit": { - "type": "string", - "const": "plates/m", - "$asm.unit-iri": "http://purl.allotrope.org/ontology/qudt-ext/unit#PlatesPerMeter" - } - }, - "required": [ - "unit" - ] - }, - "pm": { - "properties": { - "unit": { - "type": "string", - "const": "pm", - "$asm.unit-iri": "http://purl.allotrope.org/ontology/qudt-ext/unit#Picometer" - } - }, - "required": [ - "unit" - ] - }, - "pmol": { - "properties": { - "unit": { - "type": "string", - "const": "pmol", - "$asm.unit-iri": "http://purl.allotrope.org/ontology/qudt-ext/unit#Picomole" - } - }, - "required": [ - "unit" - ] - }, - "pmol/dm^3": { - "properties": { - "unit": { - "type": "string", - "const": "pmol/dm^3", - "$asm.unit-iri": "http://purl.allotrope.org/ontology/qudt-ext/unit#Picomolar" - } - }, - "required": [ - "unit" - ] - }, - "pnt": { - "properties": { - "unit": { - "type": "string", - "const": "pnt", - "$asm.unit-iri": "http://qudt.org/vocab/unit#Point" - } - }, - "required": [ - "unit" - ] - }, - "ppb": { - "properties": { - "unit": { - "type": "string", - "const": "ppb", - "$asm.unit-iri": "http://purl.allotrope.org/ontology/qudt-ext/unit#PartsPerBillion" - } - }, - "required": [ - "unit" - ] - }, - "ppm": { - "properties": { - "unit": { - "type": "string", - "const": "ppm", - "$asm.unit-iri": "http://purl.allotrope.org/ontology/qudt-ext/unit#PartsPerMillion" - } - }, - "required": [ - "unit" - ] - }, - "ppm.arb'U": { - "properties": { - "unit": { - "type": "string", - "const": "ppm.arb'U", - "$asm.unit-iri": "http://purl.allotrope.org/ontology/qudt-ext/unit#PartsPerMillionTimesArbitraryUnit" - } - }, - "required": [ - "unit" - ] - }, - "psi": { - "properties": { - "unit": { - "type": "string", - "const": "psi", - "$asm.unit-iri": "http://qudt.org/vocab/unit#PoundForcePerSquareInch" - } - }, - "required": [ - "unit" - ] - }, - "pt": { - "properties": { - "unit": { - "type": "string", - "const": "pt", - "$asm.unit-iri": "http://qudt.org/vocab/unit#LiquidPintUS" - } - }, - "required": [ - "unit" - ] - }, - "qt": { - "properties": { - "unit": { - "type": "string", - "const": "qt", - "$asm.unit-iri": "http://qudt.org/vocab/unit#LiquidQuartUS" - } - }, - "required": [ - "unit" - ] - }, - "quad": { - "properties": { - "unit": { - "type": "string", - "const": "quad", - "$asm.unit-iri": "http://qudt.org/vocab/unit#Quad" - } - }, - "required": [ - "unit" - ] - }, - "r": { - "properties": { - "unit": { - "type": "string", - "const": "r", - "$asm.unit-iri": "http://qudt.org/vocab/unit#Radian" - } - }, - "required": [ - "unit" - ] - }, - "rad": { - "properties": { - "unit": { - "type": "string", - "const": "rad", - "$asm.unit-iri": "http://qudt.org/vocab/unit#Rad" - } - }, - "required": [ - "unit" - ] - }, - "rad/h": { - "properties": { - "unit": { - "type": "string", - "const": "rad/h", - "$asm.unit-iri": "http://qudt.org/vocab/unit#RadianPerHour" - } - }, - "required": [ - "unit" - ] - }, - "rad/m": { - "properties": { - "unit": { - "type": "string", - "const": "rad/m", - "$asm.unit-iri": "http://qudt.org/vocab/unit#RadianPerMinute" - } - }, - "required": [ - "unit" - ] - }, - "rad/s": { - "properties": { - "unit": { - "type": "string", - "const": "rad/s", - "$asm.unit-iri": "http://qudt.org/vocab/unit#RadianPerSecond" - } - }, - "required": [ - "unit" - ] - }, - "rad/s^2": { - "properties": { - "unit": { - "type": "string", - "const": "rad/s^2", - "$asm.unit-iri": "http://qudt.org/vocab/unit#RadianPerSecondSquared" - } - }, - "required": [ - "unit" - ] - }, - "rd": { - "properties": { - "unit": { - "type": "string", - "const": "rd", - "$asm.unit-iri": "http://qudt.org/vocab/unit#Rod" - } - }, - "required": [ - "unit" - ] - }, - "rem": { - "properties": { - "unit": { - "type": "string", - "const": "rem", - "$asm.unit-iri": "http://qudt.org/vocab/unit#Rem" - } - }, - "required": [ - "unit" - ] - }, - "rev": { - "properties": { - "unit": { - "type": "string", - "const": "rev", - "$asm.unit-iri": "http://qudt.org/vocab/unit#Revolution" - } - }, - "required": [ - "unit" - ] - }, - "rev/h": { - "properties": { - "unit": { - "type": "string", - "const": "rev/h", - "$asm.unit-iri": "http://qudt.org/vocab/unit#RevolutionPerHour" - } - }, - "required": [ - "unit" - ] - }, - "rev/min": { - "properties": { - "unit": { - "type": "string", - "const": "rev/min", - "$asm.unit-iri": "http://qudt.org/vocab/unit#RevolutionPerMinute" - } - }, - "required": [ - "unit" - ] - }, - "rev/s": { - "properties": { - "unit": { - "type": "string", - "const": "rev/s", - "$asm.unit-iri": "http://qudt.org/vocab/unit#RevolutionPerSecond" - } - }, - "required": [ - "unit" - ] - }, - "s": { - "properties": { - "unit": { - "type": "string", - "const": "s", - "$asm.unit-iri": "http://qudt.org/vocab/unit#SecondTime" - } - }, - "required": [ - "unit" - ] - }, - "s T": { - "properties": { - "unit": { - "type": "string", - "const": "s T", - "$asm.unit-iri": "http://qudt.org/vocab/unit#TeslaSecond" - } - }, - "required": [ - "unit" - ] - }, - "s ft^2": { - "properties": { - "unit": { - "type": "string", - "const": "s ft^2", - "$asm.unit-iri": "http://qudt.org/vocab/unit#SecondSquareFoot" - } - }, - "required": [ - "unit" - ] - }, - "s^-1": { - "properties": { - "unit": { - "type": "string", - "const": "s^-1", - "$asm.unit-iri": "http://qudt.org/vocab/unit#PerSecond" - } - }, - "required": [ - "unit" - ] - }, - "s^-1 T^-1": { - "properties": { - "unit": { - "type": "string", - "const": "s^-1 T^-1", - "$asm.unit-iri": "http://qudt.org/vocab/unit#PerTeslaSecond" - } - }, - "required": [ - "unit" - ] - }, - "s^2": { - "properties": { - "unit": { - "type": "string", - "const": "s^2", - "$asm.unit-iri": "http://qudt.org/vocab/unit#SecondTimeSquared" - } - }, - "required": [ - "unit" - ] - }, - "sb": { - "properties": { - "unit": { - "type": "string", - "const": "sb", - "$asm.unit-iri": "http://qudt.org/vocab/unit#Stilb" - } - }, - "required": [ - "unit" - ] - }, - "scwt": { - "properties": { - "unit": { - "type": "string", - "const": "scwt", - "$asm.unit-iri": "http://qudt.org/vocab/unit#HundredWeightShort" - } - }, - "required": [ - "unit" - ] - }, - "slug": { - "properties": { - "unit": { - "type": "string", - "const": "slug", - "$asm.unit-iri": "http://qudt.org/vocab/unit#Slug" - } - }, - "required": [ - "unit" - ] - }, - "slug/(ft s)": { - "properties": { - "unit": { - "type": "string", - "const": "slug/(ft s)", - "$asm.unit-iri": "http://qudt.org/vocab/unit#SlugPerFootSecond" - } - }, - "required": [ - "unit" - ] - }, - "slug/ft": { - "properties": { - "unit": { - "type": "string", - "const": "slug/ft", - "$asm.unit-iri": "http://qudt.org/vocab/unit#SlugPerFoot" - } - }, - "required": [ - "unit" - ] - }, - "slug/ft^2": { - "properties": { - "unit": { - "type": "string", - "const": "slug/ft^2", - "$asm.unit-iri": "http://qudt.org/vocab/unit#SlugPerSquareFoot" - } - }, - "required": [ - "unit" - ] - }, - "slug/ft^3": { - "properties": { - "unit": { - "type": "string", - "const": "slug/ft^3", - "$asm.unit-iri": "http://qudt.org/vocab/unit#SlugPerCubicFoot" - } - }, - "required": [ - "unit" - ] - }, - "slug/s": { - "properties": { - "unit": { - "type": "string", - "const": "slug/s", - "$asm.unit-iri": "http://qudt.org/vocab/unit#SlugPerSecond" - } - }, - "required": [ - "unit" - ] - }, - "sr": { - "properties": { - "unit": { - "type": "string", - "const": "sr", - "$asm.unit-iri": "http://qudt.org/vocab/unit#Steradian" - } - }, - "required": [ - "unit" - ] - }, - "st": { - "properties": { - "unit": { - "type": "string", - "const": "st", - "$asm.unit-iri": "http://qudt.org/vocab/unit#Stere" - } - }, - "required": [ - "unit" - ] - }, - "statA": { - "properties": { - "unit": { - "type": "string", - "const": "statA", - "$asm.unit-iri": "http://qudt.org/vocab/unit#Statampere" - } - }, - "required": [ - "unit" - ] - }, - "statC": { - "properties": { - "unit": { - "type": "string", - "const": "statC", - "$asm.unit-iri": "http://qudt.org/vocab/unit#Statcoulomb" - } - }, - "required": [ - "unit" - ] - }, - "statC/cm^2": { - "properties": { - "unit": { - "type": "string", - "const": "statC/cm^2", - "$asm.unit-iri": "http://qudt.org/vocab/unit#StatcoulombPerSquareCentimeter" - } - }, - "required": [ - "unit" - ] - }, - "statC/mol": { - "properties": { - "unit": { - "type": "string", - "const": "statC/mol", - "$asm.unit-iri": "http://qudt.org/vocab/unit#StatcoulombPerMole" - } - }, - "required": [ - "unit" - ] - }, - "statF": { - "properties": { - "unit": { - "type": "string", - "const": "statF", - "$asm.unit-iri": "http://qudt.org/vocab/unit#Statfarad" - } - }, - "required": [ - "unit" - ] - }, - "statH": { - "properties": { - "unit": { - "type": "string", - "const": "statH", - "$asm.unit-iri": "http://qudt.org/vocab/unit#Stathenry" - } - }, - "required": [ - "unit" - ] - }, - "statH/cm": { - "properties": { - "unit": { - "type": "string", - "const": "statH/cm", - "$asm.unit-iri": "http://qudt.org/vocab/unit#StathenryPerCentimeter" - } - }, - "required": [ - "unit" - ] - }, - "statS": { - "properties": { - "unit": { - "type": "string", - "const": "statS", - "$asm.unit-iri": "http://qudt.org/vocab/unit#Statmho" - } - }, - "required": [ - "unit" - ] - }, - "statV": { - "properties": { - "unit": { - "type": "string", - "const": "statV", - "$asm.unit-iri": "http://qudt.org/vocab/unit#Statvolt" - } - }, - "required": [ - "unit" - ] - }, - "statV cm": { - "properties": { - "unit": { - "type": "string", - "const": "statV cm", - "$asm.unit-iri": "http://qudt.org/vocab/unit#StatvoltCentimeter" - } - }, - "required": [ - "unit" - ] - }, - "statV/cm": { - "properties": { - "unit": { - "type": "string", - "const": "statV/cm", - "$asm.unit-iri": "http://qudt.org/vocab/unit#StatvoltPerCentimeter" - } - }, - "required": [ - "unit" - ] - }, - "statΩ": { - "properties": { - "unit": { - "type": "string", - "const": "statΩ", - "$asm.unit-iri": "http://qudt.org/vocab/unit#Statohm" - } - }, - "required": [ - "unit" - ] - }, - "t/fg": { - "properties": { - "unit": { - "type": "string", - "const": "t/fg", - "$asm.unit-iri": "http://qudt.org/vocab/unit#TonOfRefrigeration" - } - }, - "required": [ - "unit" - ] - }, - "t/lbf": { - "properties": { - "unit": { - "type": "string", - "const": "t/lbf", - "$asm.unit-iri": "http://qudt.org/vocab/unit#TonEnergy" - } - }, - "required": [ - "unit" - ] - }, - "t_P": { - "properties": { - "unit": { - "type": "string", - "const": "t_P", - "$asm.unit-iri": "http://qudt.org/vocab/unit#PlanckTime" - } - }, - "required": [ - "unit" - ] - }, - "tbsp": { - "properties": { - "unit": { - "type": "string", - "const": "tbsp", - "$asm.unit-iri": "http://qudt.org/vocab/unit#Tablespoon" - } - }, - "required": [ - "unit" - ] - }, - "tex": { - "properties": { - "unit": { - "type": "string", - "const": "tex", - "$asm.unit-iri": "http://qudt.org/vocab/unit#Tex" - } - }, - "required": [ - "unit" - ] - }, - "therm (EC)": { - "properties": { - "unit": { - "type": "string", - "const": "therm (EC)", - "$asm.unit-iri": "http://qudt.org/vocab/unit#ThermEEC" - } - }, - "required": [ - "unit" - ] - }, - "therm (US)": { - "properties": { - "unit": { - "type": "string", - "const": "therm (US)", - "$asm.unit-iri": "http://qudt.org/vocab/unit#ThermUS" - } - }, - "required": [ - "unit" - ] - }, - "toe": { - "properties": { - "unit": { - "type": "string", - "const": "toe", - "$asm.unit-iri": "http://qudt.org/vocab/unit#TonOfOilEquivalent" - } - }, - "required": [ - "unit" - ] - }, - "ton (l)": { - "properties": { - "unit": { - "type": "string", - "const": "ton (l)", - "$asm.unit-iri": "http://qudt.org/vocab/unit#TonLong" - } - }, - "required": [ - "unit" - ] - }, - "ton (s)": { - "properties": { - "unit": { - "type": "string", - "const": "ton (s)", - "$asm.unit-iri": "http://qudt.org/vocab/unit#TonShort" - } - }, - "required": [ - "unit" - ] - }, - "ton/h": { - "properties": { - "unit": { - "type": "string", - "const": "ton/h", - "$asm.unit-iri": "http://qudt.org/vocab/unit#TonShortPerHour" - } - }, - "required": [ - "unit" - ] - }, - "ton/yd": { - "properties": { - "unit": { - "type": "string", - "const": "ton/yd", - "$asm.unit-iri": "http://qudt.org/vocab/unit#TonShortPerCubicYard" - } - }, - "required": [ - "unit" - ] - }, - "ton/yd^3": { - "properties": { - "unit": { - "type": "string", - "const": "ton/yd^3", - "$asm.unit-iri": "http://qudt.org/vocab/unit#TonLongPerCubicYard" - } - }, - "required": [ - "unit" - ] - }, - "torr": { - "properties": { - "unit": { - "type": "string", - "const": "torr", - "$asm.unit-iri": "http://qudt.org/vocab/unit#Torr" - } - }, - "required": [ - "unit" - ] - }, - "tsp": { - "properties": { - "unit": { - "type": "string", - "const": "tsp", - "$asm.unit-iri": "http://qudt.org/vocab/unit#Teaspoon" - } - }, - "required": [ - "unit" - ] - }, - "u": { - "properties": { - "unit": { - "type": "string", - "const": "u", - "$asm.unit-iri": "http://qudt.org/vocab/unit#Dalton2" - } - }, - "required": [ - "unit" - ] - }, - "unitless": { - "properties": { - "unit": { - "type": "string", - "const": "unitless", - "$asm.unit-iri": "http://qudt.org/vocab/unit#Unitless" - } - }, - "required": [ - "unit" - ] - }, - "yd": { - "properties": { - "unit": { - "type": "string", - "const": "yd", - "$asm.unit-iri": "http://qudt.org/vocab/unit#Yard" - } - }, - "required": [ - "unit" - ] - }, - "yd^2": { - "properties": { - "unit": { - "type": "string", - "const": "yd^2", - "$asm.unit-iri": "http://qudt.org/vocab/unit#SquareYard" - } - }, - "required": [ - "unit" - ] - }, - "yd^3": { - "properties": { - "unit": { - "type": "string", - "const": "yd^3", - "$asm.unit-iri": "http://qudt.org/vocab/unit#CubicYard" - } - }, - "required": [ - "unit" - ] - }, - "yd^3/min": { - "properties": { - "unit": { - "type": "string", - "const": "yd^3/min", - "$asm.unit-iri": "http://qudt.org/vocab/unit#CubicYardPerMinute" - } - }, - "required": [ - "unit" - ] - }, - "yr": { - "properties": { - "unit": { - "type": "string", - "const": "yr", - "$asm.unit-iri": "http://qudt.org/vocab/unit#Year365Day" - } - }, - "required": [ - "unit" - ] - }, - "yr (s)": { - "properties": { - "unit": { - "type": "string", - "const": "yr (s)", - "$asm.unit-iri": "http://qudt.org/vocab/unit#YearSidereal" - } - }, - "required": [ - "unit" - ] - }, - "yr (t)": { - "properties": { - "unit": { - "type": "string", - "const": "yr (t)", - "$asm.unit-iri": "http://qudt.org/vocab/unit#YearTropical" - } - }, - "required": [ - "unit" - ] - }, - "°": { - "properties": { - "unit": { - "type": "string", - "const": "°", - "$asm.unit-iri": "http://qudt.org/vocab/unit#DegreeAngle" - } - }, - "required": [ - "unit" - ] - }, - "° s^-2": { - "properties": { - "unit": { - "type": "string", - "const": "° s^-2", - "$asm.unit-iri": "http://qudt.org/vocab/unit#DegreePerSecondSquared" - } - }, - "required": [ - "unit" - ] - }, - "°/h": { - "properties": { - "unit": { - "type": "string", - "const": "°/h", - "$asm.unit-iri": "http://qudt.org/vocab/unit#DegreePerHour" - } - }, - "required": [ - "unit" - ] - }, - "°/min": { - "properties": { - "unit": { - "type": "string", - "const": "°/min", - "$asm.unit-iri": "http://qudt.org/vocab/unit#DegreePerMinute" - } - }, - "required": [ - "unit" - ] - }, - "°/s": { - "properties": { - "unit": { - "type": "string", - "const": "°/s", - "$asm.unit-iri": "http://qudt.org/vocab/unit#DegreePerSecond" - } - }, - "required": [ - "unit" - ] - }, - "°C": { - "properties": { - "unit": { - "type": "string", - "const": "°C", - "$asm.unit-iri": "http://qudt.org/vocab/unit#DegreeCentigrade" - } - }, - "required": [ - "unit" - ] - }, - "°C/h": { - "properties": { - "unit": { - "type": "string", - "const": "°C/h", - "$asm.unit-iri": "http://qudt.org/vocab/unit#DegreeCelsiusPerHour" - } - }, - "required": [ - "unit" - ] - }, - "°C/min": { - "properties": { - "unit": { - "type": "string", - "const": "°C/min", - "$asm.unit-iri": "http://qudt.org/vocab/unit#DegreeCelsiusPerMinute" - } - }, - "required": [ - "unit" - ] - }, - "°C/s": { - "properties": { - "unit": { - "type": "string", - "const": "°C/s", - "$asm.unit-iri": "http://qudt.org/vocab/unit#DegreeCelsiusPerSecond" - } - }, - "required": [ - "unit" - ] - }, - "°F": { - "properties": { - "unit": { - "type": "string", - "const": "°F", - "$asm.unit-iri": "http://qudt.org/vocab/unit#DegreeFahrenheit" - } - }, - "required": [ - "unit" - ] - }, - "°F h": { - "properties": { - "unit": { - "type": "string", - "const": "°F h", - "$asm.unit-iri": "http://qudt.org/vocab/unit#DegreeFahrenheitHour" - } - }, - "required": [ - "unit" - ] - }, - "°F h/Btu": { - "properties": { - "unit": { - "type": "string", - "const": "°F h/Btu", - "$asm.unit-iri": "http://qudt.org/vocab/unit#DegreeFahrenheitHourPerBtu" - } - }, - "required": [ - "unit" - ] - }, - "°F/h": { - "properties": { - "unit": { - "type": "string", - "const": "°F/h", - "$asm.unit-iri": "http://qudt.org/vocab/unit#DegreeFahrenheitPerHour" - } - }, - "required": [ - "unit" - ] - }, - "°F/m": { - "properties": { - "unit": { - "type": "string", - "const": "°F/m", - "$asm.unit-iri": "http://qudt.org/vocab/unit#DegreeFahrenheitPerMinute" - } - }, - "required": [ - "unit" - ] - }, - "°F/s": { - "properties": { - "unit": { - "type": "string", - "const": "°F/s", - "$asm.unit-iri": "http://qudt.org/vocab/unit#DegreeFahrenheitPerSecond" - } - }, - "required": [ - "unit" - ] - }, - "°R": { - "properties": { - "unit": { - "type": "string", - "const": "°R", - "$asm.unit-iri": "http://qudt.org/vocab/unit#DegreeRankine" - } - }, - "required": [ - "unit" - ] - }, - "°R/h": { - "properties": { - "unit": { - "type": "string", - "const": "°R/h", - "$asm.unit-iri": "http://qudt.org/vocab/unit#DegreeRankinePerHour" - } - }, - "required": [ - "unit" - ] - }, - "°R/m": { - "properties": { - "unit": { - "type": "string", - "const": "°R/m", - "$asm.unit-iri": "http://qudt.org/vocab/unit#DegreeRankinePerMinute" - } - }, - "required": [ - "unit" - ] - }, - "°R/s": { - "properties": { - "unit": { - "type": "string", - "const": "°R/s", - "$asm.unit-iri": "http://qudt.org/vocab/unit#DegreeRankinePerSecond" - } - }, - "required": [ - "unit" - ] - }, - "µG": { - "properties": { - "unit": { - "type": "string", - "const": "µG", - "$asm.unit-iri": "http://qudt.org/vocab/unit#Microgravity" - } - }, - "required": [ - "unit" - ] - }, - "µH": { - "properties": { - "unit": { - "type": "string", - "const": "µH", - "$asm.unit-iri": "http://qudt.org/vocab/unit#MicroHenry" - } - }, - "required": [ - "unit" - ] - }, - "µL/min": { - "properties": { - "unit": { - "type": "string", - "const": "µL/min", - "$asm.unit-iri": "http://purl.allotrope.org/ontology/qudt-ext/unit#MicroliterPerMinute" - } - }, - "required": [ - "unit" - ] - }, - "µL/s": { - "properties": { - "unit": { - "type": "string", - "const": "µL/s", - "$asm.unit-iri": "http://purl.allotrope.org/ontology/qudt-ext/unit#MicroliterPerSecond" - } - }, - "required": [ - "unit" - ] - }, - "µV": { - "properties": { - "unit": { - "type": "string", - "const": "µV", - "$asm.unit-iri": "http://purl.allotrope.org/ontology/qudt-ext/unit#Microvolt" - } - }, - "required": [ - "unit" - ] - }, - "µW": { - "properties": { - "unit": { - "type": "string", - "const": "µW", - "$asm.unit-iri": "http://purl.allotrope.org/ontology/qudt-ext/unit#MicroWatt" - } - }, - "required": [ - "unit" - ] - }, - "µW/g": { - "properties": { - "unit": { - "type": "string", - "const": "µW/g", - "$asm.unit-iri": "http://purl.allotrope.org/ontology/qudt-ext/unit#MicroWattPerGram" - } - }, - "required": [ - "unit" - ] - }, - "µcal/°C": { - "properties": { - "unit": { - "type": "string", - "const": "µcal/°C", - "$asm.unit-iri": "http://purl.allotrope.org/ontology/qudt-ext/unit#MicroCaloriePerDegreeCelsius" - } - }, - "required": [ - "unit" - ] - }, - "µin": { - "properties": { - "unit": { - "type": "string", - "const": "µin", - "$asm.unit-iri": "http://qudt.org/vocab/unit#MicroInch" - } - }, - "required": [ - "unit" - ] - }, - "µm": { - "properties": { - "unit": { - "type": "string", - "const": "µm", - "$asm.unit-iri": "http://qudt.org/vocab/unit#Micrometer" - } - }, - "required": [ - "unit" - ] - }, - "µs": { - "properties": { - "unit": { - "type": "string", - "const": "µs", - "$asm.unit-iri": "http://qudt.org/vocab/unit#MicroSecond" - } - }, - "required": [ - "unit" - ] - }, - "µtorr": { - "properties": { - "unit": { - "type": "string", - "const": "µtorr", - "$asm.unit-iri": "http://qudt.org/vocab/unit#MicroTorr" - } - }, - "required": [ - "unit" - ] - }, - "Å": { - "properties": { - "unit": { - "type": "string", - "const": "Å", - "$asm.unit-iri": "http://qudt.org/vocab/unit#Angstrom" - } - }, - "required": [ - "unit" - ] - }, - "Å^2": { - "properties": { - "unit": { - "type": "string", - "const": "Å^2", - "$asm.unit-iri": "http://purl.allotrope.org/ontology/qudt-ext/unit#SquareAngstrom" - } - }, - "required": [ - "unit" - ] - }, - "Θ_P": { - "properties": { - "unit": { - "type": "string", - "const": "Θ_P", - "$asm.unit-iri": "http://qudt.org/vocab/unit#PlanckTemperature" - } - }, - "required": [ - "unit" - ] - }, - "Ω": { - "properties": { - "unit": { - "type": "string", - "const": "Ω", - "$asm.unit-iri": "http://qudt.org/vocab/unit#Ohm" - } - }, - "required": [ - "unit" - ] - }, - "Ω m": { - "properties": { - "unit": { - "type": "string", - "const": "Ω m", - "$asm.unit-iri": "http://purl.allotrope.org/ontology/qudt-ext/unit#OhmMeter" - } - }, - "required": [ - "unit" - ] - }, - "εr": { - "properties": { - "unit": { - "type": "string", - "const": "εr", - "$asm.unit-iri": "http://qudt.org/vocab/unit#RelativePermittivity" - } - }, - "required": [ - "unit" - ] - }, - "μL": { - "properties": { - "unit": { - "type": "string", - "const": "μL", - "$asm.unit-iri": "http://purl.allotrope.org/ontology/qudt-ext/unit#Microliter" - } - }, - "required": [ - "unit" - ] - }, - "μM": { - "properties": { - "unit": { - "type": "string", - "const": "μM", - "$asm.unit-iri": "http://purl.allotrope.org/ontology/qudt-ext/unit#Micromolar" - } - }, - "required": [ - "unit" - ] - }, - "μS/cm": { - "properties": { - "unit": { - "type": "string", - "const": "μS/cm", - "$asm.unit-iri": "http://purl.allotrope.org/ontology/qudt-ext/unit#MicroSiemensPerCentimeter" - } - }, - "required": [ - "unit" - ] - }, - "μV.s": { - "properties": { - "unit": { - "type": "string", - "const": "μV.s", - "$asm.unit-iri": "http://purl.allotrope.org/ontology/qudt-ext/unit#MicroVoltTimesSecond" - } - }, - "required": [ - "unit" - ] - }, - "μg": { - "properties": { - "unit": { - "type": "string", - "const": "μg", - "$asm.unit-iri": "http://purl.allotrope.org/ontology/qudt-ext/unit#Microgram" - } - }, - "required": [ - "unit" - ] - }, - "μg/L": { - "properties": { - "unit": { - "type": "string", - "const": "μg/L", - "$asm.unit-iri": "http://purl.allotrope.org/ontology/qudt-ext/unit#MicrogramPerLiter" - } - }, - "required": [ - "unit" - ] - }, - "μg/cm^2": { - "properties": { - "unit": { - "type": "string", - "const": "μg/cm^2", - "$asm.unit-iri": "http://purl.allotrope.org/ontology/qudt-ext/unit#MicrogramPerSquareCentimeter" - } - }, - "required": [ - "unit" - ] - }, - "μg/fL": { - "properties": { - "unit": { - "type": "string", - "const": "μg/fL", - "$asm.unit-iri": "http://purl.allotrope.org/ontology/qudt-ext/unit#MicrogramPerFemtoliter" - } - }, - "required": [ - "unit" - ] - }, - "μg/mL": { - "properties": { - "unit": { - "type": "string", - "const": "μg/mL", - "$asm.unit-iri": "http://purl.allotrope.org/ontology/qudt-ext/unit#MicrogramPerMilliliter" - } - }, - "required": [ - "unit" - ] - }, - "μg/m^2": { - "properties": { - "unit": { - "type": "string", - "const": "μg/m^2", - "$asm.unit-iri": "http://purl.allotrope.org/ontology/qudt-ext/unit#MicrogramPerSquareMeter" - } - }, - "required": [ - "unit" - ] - }, - "μg/min": { - "properties": { - "unit": { - "type": "string", - "const": "μg/min", - "$asm.unit-iri": "http://purl.allotrope.org/ontology/qudt-ext/unit#MicrogramPerMinute" - } - }, - "required": [ - "unit" - ] - }, - "μg/nL": { - "properties": { - "unit": { - "type": "string", - "const": "μg/nL", - "$asm.unit-iri": "http://purl.allotrope.org/ontology/qudt-ext/unit#MicrogramPerNanoliter" - } - }, - "required": [ - "unit" - ] - }, - "μg/pL": { - "properties": { - "unit": { - "type": "string", - "const": "μg/pL", - "$asm.unit-iri": "http://purl.allotrope.org/ontology/qudt-ext/unit#MicrogramPerPicoliter" - } - }, - "required": [ - "unit" - ] - }, - "μg/μL": { - "properties": { - "unit": { - "type": "string", - "const": "μg/μL", - "$asm.unit-iri": "http://purl.allotrope.org/ontology/qudt-ext/unit#MicrogramPerMicroliter" - } - }, - "required": [ - "unit" - ] - }, - "μmol": { - "properties": { - "unit": { - "type": "string", - "const": "μmol", - "$asm.unit-iri": "http://purl.allotrope.org/ontology/qudt-ext/unit#Micromole" - } - }, - "required": [ - "unit" - ] - }, - "μr": { - "properties": { - "unit": { - "type": "string", - "const": "μr", - "$asm.unit-iri": "http://qudt.org/vocab/unit#RelativePermeability" - } - }, - "required": [ - "unit" - ] - }, - "€": { - "properties": { - "unit": { - "type": "string", - "const": "€", - "$asm.unit-iri": "http://qudt.org/vocab/unit#Euro" - } - }, - "required": [ - "unit" - ] - } - } - }, - "http://purl.allotrope.org/json-schemas/adm/absorbance/REC/2024/09/absorbance-cube-detector.schema": { - "$id": "http://purl.allotrope.org/json-schemas/adm/absorbance/REC/2024/09/absorbance-cube-detector.schema", - "$defs": { - "measurementDocumentItems": { - "properties": { - "device control aggregate document": { - "properties": { - "device control document": { - "items": { - "allOf": [ - { - "properties": { - "detector wavelength setting": { - "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0002456", - "$asm.pattern": "quantity datum", - "allOf": [ - { - "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/core.schema#/$defs/tQuantityValue" - }, - { - "$ref": "http://purl.allotrope.org/json-schemas/qudt/REC/2024/09/units.schema#/$defs/nm" - } - ] - }, - "detector bandwidth setting": { - "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0002477", - "$asm.pattern": "quantity datum", - "allOf": [ - { - "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/core.schema#/$defs/tQuantityValue" - }, - { - "$ref": "http://purl.allotrope.org/json-schemas/qudt/REC/2024/09/units.schema#/$defs/nm" - } - ] - }, - "electronic absorbance wavelength setting": { - "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0001254", - "$asm.pattern": "quantity datum", - "allOf": [ - { - "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/core.schema#/$defs/tQuantityValue" - }, - { - "$ref": "http://purl.allotrope.org/json-schemas/qudt/REC/2024/09/units.schema#/$defs/nm" - } - ] - }, - "electronic absorbance bandwidth setting": { - "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0001253", - "$asm.pattern": "quantity datum", - "allOf": [ - { - "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/core.schema#/$defs/tQuantityValue" - }, - { - "$ref": "http://purl.allotrope.org/json-schemas/qudt/REC/2024/09/units.schema#/$defs/nm" - } - ] - }, - "electronic absorbance reference bandwidth setting": { - "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0001251", - "$asm.pattern": "quantity datum", - "allOf": [ - { - "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/core.schema#/$defs/tQuantityValue" - }, - { - "$ref": "http://purl.allotrope.org/json-schemas/qudt/REC/2024/09/units.schema#/$defs/nm" - } - ] - }, - "total measurement time setting": { - "$asm.property-class": "http://purl.allotrope.org/ontologies/result#0002455", - "$asm.pattern": "quantity datum", - "allOf": [ - { - "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/core.schema#/$defs/tQuantityValue" - }, - { - "$ref": "http://purl.allotrope.org/json-schemas/qudt/REC/2024/09/units.schema#/$defs/s" - } - ] - }, - "read interval setting": { - "$asm.property-class": "http://purl.allotrope.org/ontologies/result#0002454", - "$asm.pattern": "quantity datum", - "allOf": [ - { - "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/core.schema#/$defs/tQuantityValue" - }, - { - "$ref": "http://purl.allotrope.org/json-schemas/qudt/REC/2024/09/units.schema#/$defs/s" - } - ] - }, - "number of scans setting": { - "$asm.property-class": "http://purl.allotrope.org/ontologies/result#0003051", - "$asm.pattern": "quantity datum", - "allOf": [ - { - "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/core.schema#/$defs/tQuantityValue" - }, - { - "$ref": "http://purl.allotrope.org/json-schemas/qudt/REC/2024/09/units.schema#/$defs/%23" - } - ] - } - } - } - ] - } - } - } - }, - "processed data aggregate document": { - "properties": { - "processed data document": { - "items": { - "allOf": [ - { - "properties": { - "peak list": { - "$asm.pattern": "aggregate datum", - "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0000432", - "type": "object", - "properties": { - "peak": { - "$asm.array-ordered": true, - "$asm.array-mixed": false, - "$asm.pattern": "indexed datum", - "type": "array", - "items": { - "allOf": [ - { - "$asm.pattern": "aggregate datum", - "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0000413", - "type": "object", - "properties": { - "peak height": { - "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0000948", - "$asm.pattern": "quantity datum", - "allOf": [ - { - "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/core.schema#/$defs/tQuantityValue" - }, - { - "$ref": "http://purl.allotrope.org/json-schemas/qudt/REC/2024/09/units.schema#/$defs/mAU" - } - ] - }, - "peak area": { - "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0001073", - "$asm.pattern": "quantity datum", - "allOf": [ - { - "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/core.schema#/$defs/tQuantityValue" - }, - { - "oneOf": [ - { - "$ref": "http://purl.allotrope.org/json-schemas/qudt/REC/2024/09/units.schema#/$defs/mAU.s" - }, - { - "$ref": "http://purl.allotrope.org/json-schemas/qudt/REC/2024/09/units.schema#/$defs/mAU.mL" - } - ] - } - ] - } - } - }, - { - "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/core.schema#/$defs/orderedItem" - } - ] - } - } - } - } - } - } - ] - } - } - } - } - }, - "oneOf": [ - { - "properties": { - "electropherogram data cube": { - "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0003018", - "$asm.pattern": "datacube", - "type": "object", - "allOf": [ - { - "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/cube.schema#/$defs/tDatacube" - }, - { - "properties": { - "cube-structure": { - "properties": { - "dimensions": { - "minItems": 1, - "maxItems": 1, - "prefixItems": [ - { - "oneOf": [ - { - "properties": { - "concept": { - "const": "elapsed time" - }, - "unit": { - "const": "s" - }, - "@componentDatatype": { - "const": "double" - } - } - } - ] - } - ] - }, - "measures": { - "minItems": 1, - "maxItems": 1, - "contains": { - "oneOf": [ - { - "properties": { - "concept": { - "const": "absorbance" - }, - "unit": { - "const": "mAU" - }, - "@componentDatatype": { - "const": "double" - } - } - } - ] - } - } - } - } - } - } - ] - } - }, - "required": [ - "electropherogram data cube" - ] - }, - { - "properties": { - "absorption profile data cube": { - "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0002963", - "$asm.pattern": "datacube", - "type": "object", - "allOf": [ - { - "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/cube.schema#/$defs/tDatacube" - }, - { - "properties": { - "cube-structure": { - "properties": { - "dimensions": { - "minItems": 1, - "maxItems": 1, - "prefixItems": [ - { - "oneOf": [ - { - "properties": { - "concept": { - "const": "elapsed time" - }, - "unit": { - "const": "s" - }, - "@componentDatatype": { - "const": "double" - } - } - } - ] - } - ] - }, - "measures": { - "minItems": 1, - "maxItems": 1, - "contains": { - "oneOf": [ - { - "properties": { - "concept": { - "const": "absorbance" - }, - "unit": { - "const": "mAU" - }, - "@componentDatatype": { - "const": "double" - } - } - } - ] - } - } - } - } - } - } - ] - } - }, - "required": [ - "absorption profile data cube" - ] - }, - { - "properties": { - "chromatogram data cube": { - "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0002550", - "$asm.pattern": "datacube", - "type": "object", - "allOf": [ - { - "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/cube.schema#/$defs/tDatacube" - }, - { - "properties": { - "cube-structure": { - "properties": { - "dimensions": { - "minItems": 1, - "maxItems": 1, - "prefixItems": [ - { - "oneOf": [ - { - "properties": { - "concept": { - "const": "retention time" - }, - "unit": { - "const": "s" - }, - "@componentDatatype": { - "const": "double" - } - } - }, - { - "properties": { - "concept": { - "const": "retention volume" - }, - "unit": { - "const": "mL" - }, - "@componentDatatype": { - "const": "double" - } - } - } - ] - } - ] - }, - "measures": { - "minItems": 1, - "maxItems": 1, - "contains": { - "oneOf": [ - { - "properties": { - "concept": { - "const": "absorbance" - }, - "unit": { - "const": "mAU" - }, - "@componentDatatype": { - "const": "double" - } - } - } - ] - } - } - } - } - } - } - ] - } - }, - "required": [ - "chromatogram data cube" - ] - } - ] - } - } - }, - "http://purl.allotrope.org/json-schemas/adm/absorbance/REC/2024/09/absorbance-spectrum-detector.schema": { - "$id": "http://purl.allotrope.org/json-schemas/adm/absorbance/REC/2024/09/absorbance-spectrum-detector.schema", - "$defs": { - "measurementDocumentItems": { - "properties": { - "device control aggregate document": { - "properties": { - "device control document": { - "items": { - "allOf": [ - { - "properties": { - "detector wavelength setting": { - "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0002456", - "$asm.pattern": "quantity datum", - "allOf": [ - { - "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/core.schema#/$defs/tQuantityValue" - }, - { - "$ref": "http://purl.allotrope.org/json-schemas/qudt/REC/2024/09/units.schema#/$defs/nm" - } - ] - }, - "detector bandwidth setting": { - "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0002477", - "$asm.pattern": "quantity datum", - "allOf": [ - { - "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/core.schema#/$defs/tQuantityValue" - }, - { - "$ref": "http://purl.allotrope.org/json-schemas/qudt/REC/2024/09/units.schema#/$defs/nm" - } - ] - }, - "electronic absorbance wavelength setting": { - "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0001254", - "$asm.pattern": "quantity datum", - "allOf": [ - { - "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/core.schema#/$defs/tQuantityValue" - }, - { - "$ref": "http://purl.allotrope.org/json-schemas/qudt/REC/2024/09/units.schema#/$defs/nm" - } - ] - }, - "electronic absorbance bandwidth setting": { - "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0001253", - "$asm.pattern": "quantity datum", - "allOf": [ - { - "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/core.schema#/$defs/tQuantityValue" - }, - { - "$ref": "http://purl.allotrope.org/json-schemas/qudt/REC/2024/09/units.schema#/$defs/nm" - } - ] - }, - "electronic absorbance reference bandwidth setting": { - "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0001251", - "$asm.pattern": "quantity datum", - "allOf": [ - { - "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/core.schema#/$defs/tQuantityValue" - }, - { - "$ref": "http://purl.allotrope.org/json-schemas/qudt/REC/2024/09/units.schema#/$defs/nm" - } - ] - }, - "electronic absorbance reference wavelength setting": { - "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0001252", - "$asm.pattern": "quantity datum", - "allOf": [ - { - "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/core.schema#/$defs/tQuantityValue" - }, - { - "$ref": "http://purl.allotrope.org/json-schemas/qudt/REC/2024/09/units.schema#/$defs/nm" - } - ] - } - } - }, - { - "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/core.schema#/$defs/orderedItem" - } - ] - }, - "minItems": 1 - } - } - }, - "three-dimensional ultraviolet spectrum data cube": { - "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0002551", - "$asm.pattern": "datacube", - "type": "object", - "allOf": [ - { - "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/cube.schema#/$defs/tDatacube" - }, - { - "properties": { - "cube-structure": { - "properties": { - "dimensions": { - "minItems": 2, - "maxItems": 2, - "prefixItems": [ - { - "properties": { - "concept": { - "const": "retention time" - }, - "unit": { - "const": "s" - }, - "@componentDatatype": { - "const": "double" - } - } - }, - { - "properties": { - "concept": { - "const": "wavelength" - }, - "unit": { - "const": "nm" - }, - "@componentDatatype": { - "const": "double" - } - } - } - ] - }, - "measures": { - "minItems": 1, - "maxItems": 1, - "contains": { - "oneOf": [ - { - "properties": { - "concept": { - "const": "absorbance" - }, - "unit": { - "const": "mAU" - }, - "@componentDatatype": { - "const": "double" - } - } - } - ] - } - } - } - } - } - } - ] - }, - "processed data aggregate document": { - "properties": { - "processed data document": { - "items": { - "allOf": [ - { - "properties": { - "peak list": { - "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0000432", - "$asm.pattern": "aggregate datum", - "type": "object", - "properties": { - "peak": { - "$asm.array-ordered": true, - "$asm.array-mixed": false, - "$asm.pattern": "indexed datum", - "type": "array", - "items": { - "allOf": [ - { - "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0000413", - "$asm.pattern": "aggregate datum", - "type": "object", - "properties": { - "peak height": { - "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0000948", - "$asm.pattern": "quantity datum", - "allOf": [ - { - "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/core.schema#/$defs/tQuantityValue" - }, - { - "$ref": "http://purl.allotrope.org/json-schemas/qudt/REC/2024/09/units.schema#/$defs/mAU" - } - ] - }, - "peak area": { - "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0001073", - "$asm.pattern": "quantity datum", - "allOf": [ - { - "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/core.schema#/$defs/tQuantityValue" - }, - { - "oneOf": [ - { - "$ref": "http://purl.allotrope.org/json-schemas/qudt/REC/2024/09/units.schema#/$defs/mAU.s" - }, - { - "$ref": "http://purl.allotrope.org/json-schemas/qudt/REC/2024/09/units.schema#/$defs/mAU.mL" - } - ] - } - ] - } - } - }, - { - "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/core.schema#/$defs/orderedItem" - } - ] - }, - "minItems": 0 - } - } - } - } - } - ] - } - } - } - } - } - } - } - }, - "http://purl.allotrope.org/json-schemas/adm/fluorescence/REC/2024/09/fluorescence-cube-detector.schema": { - "$id": "http://purl.allotrope.org/json-schemas/adm/fluorescence/REC/2024/09/fluorescence-cube-detector.schema", - "$defs": { - "measurementDocumentItems": { - "properties": { - "device control aggregate document": { - "properties": { - "device control document": { - "items": { - "allOf": [ - { - "properties": { - "detector wavelength setting": { - "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0002456", - "$asm.pattern": "quantity datum", - "allOf": [ - { - "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/core.schema#/$defs/tQuantityValue" - }, - { - "$ref": "http://purl.allotrope.org/json-schemas/qudt/REC/2024/09/units.schema#/$defs/nm" - } - ] - }, - "detector bandwidth setting": { - "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0002477", - "$asm.pattern": "quantity datum", - "allOf": [ - { - "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/core.schema#/$defs/tQuantityValue" - }, - { - "$ref": "http://purl.allotrope.org/json-schemas/qudt/REC/2024/09/units.schema#/$defs/nm" - } - ] - }, - "excitation wavelength setting": { - "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0002479", - "$asm.pattern": "quantity datum", - "allOf": [ - { - "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/core.schema#/$defs/tQuantityValue" - }, - { - "$ref": "http://purl.allotrope.org/json-schemas/qudt/REC/2024/09/units.schema#/$defs/nm" - } - ] - }, - "excitation bandwidth setting": { - "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0002549", - "$asm.pattern": "quantity datum", - "allOf": [ - { - "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/core.schema#/$defs/tQuantityValue" - }, - { - "$ref": "http://purl.allotrope.org/json-schemas/qudt/REC/2024/09/units.schema#/$defs/nm" - } - ] - }, - "total measurement time setting": { - "$asm.property-class": "http://purl.allotrope.org/ontologies/result#0002455", - "$asm.pattern": "quantity datum", - "allOf": [ - { - "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/core.schema#/$defs/tQuantityValue" - }, - { - "$ref": "http://purl.allotrope.org/json-schemas/qudt/REC/2024/09/units.schema#/$defs/s" - } - ] - }, - "read interval setting": { - "$asm.property-class": "http://purl.allotrope.org/ontologies/result#0002454", - "$asm.pattern": "quantity datum", - "allOf": [ - { - "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/core.schema#/$defs/tQuantityValue" - }, - { - "$ref": "http://purl.allotrope.org/json-schemas/qudt/REC/2024/09/units.schema#/$defs/s" - } - ] - }, - "number of scans setting": { - "$asm.property-class": "http://purl.allotrope.org/ontologies/result#0003051", - "$asm.pattern": "quantity datum", - "allOf": [ - { - "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/core.schema#/$defs/tQuantityValue" - }, - { - "$ref": "http://purl.allotrope.org/json-schemas/qudt/REC/2024/09/units.schema#/$defs/%23" - } - ] - } - } - }, - { - "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/core.schema#/$defs/orderedItem" - } - ] - }, - "minItems": 1 - } - } - }, - "processed data document": { - "properties": { - "peak list": { - "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0000432", - "$asm.pattern": "aggregate datum", - "type": "object", - "properties": { - "peak": { - "$asm.array-ordered": true, - "$asm.array-mixed": false, - "$asm.pattern": "indexed datum", - "type": "array", - "items": { - "allOf": [ - { - "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0000413", - "$asm.pattern": "aggregate datum", - "type": "object", - "properties": { - "peak height": { - "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0000948", - "$asm.pattern": "quantity datum", - "allOf": [ - { - "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/core.schema#/$defs/tQuantityValue" - }, - { - "$ref": "http://purl.allotrope.org/json-schemas/qudt/REC/2024/09/units.schema#/$defs/RFU" - } - ] - }, - "peak area": { - "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0001073", - "$asm.pattern": "quantity datum", - "allOf": [ - { - "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/core.schema#/$defs/tQuantityValue" - }, - { - "oneOf": [ - { - "$ref": "http://purl.allotrope.org/json-schemas/qudt/REC/2024/09/units.schema#/$defs/RFU.s" - }, - { - "$ref": "http://purl.allotrope.org/json-schemas/qudt/REC/2024/09/units.schema#/$defs/RFU.mL" - } - ] - } - ] - } - } - }, - { - "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/core.schema#/$defs/orderedItem" - } - ] - }, - "minItems": 0 - } - } - }, - "derived electropherogram data cube": { - "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0003020", - "$asm.pattern": "datacube", - "type": "object", - "allOf": [ - { - "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/cube.schema#/$defs/tDatacube" - }, - { - "properties": { - "cube-structure": { - "properties": { - "measures": { - "minItems": 1, - "maxItems": 1, - "contains": { - "oneOf": [ - { - "properties": { - "concept": { - "const": "fluorescence" - }, - "unit": { - "const": "RFU" - }, - "@componentDatatype": { - "const": "double" - } - } - } - ] - } - } - } - } - } - } - ] - } - } - } - }, - "oneOf": [ - { - "properties": { - "electropherogram data cube": { - "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0003018", - "$asm.pattern": "datacube", - "type": "object", - "allOf": [ - { - "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/cube.schema#/$defs/tDatacube" - }, - { - "properties": { - "cube-structure": { - "properties": { - "dimensions": { - "minItems": 1, - "maxItems": 1, - "prefixItems": [ - { - "oneOf": [ - { - "properties": { - "concept": { - "const": "elapsed time" - }, - "unit": { - "const": "s" - }, - "@componentDatatype": { - "const": "double" - } - } - } - ] - } - ] - }, - "measures": { - "minItems": 1, - "maxItems": 1, - "contains": { - "oneOf": [ - { - "properties": { - "concept": { - "const": "fluorescence" - }, - "unit": { - "const": "RFU" - }, - "@componentDatatype": { - "const": "double" - } - } - } - ] - } - } - } - } - } - } - ] - } - } - }, - { - "properties": { - "fluorescence emission profile data cube": { - "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0002965", - "$asm.pattern": "datacube", - "type": "object", - "allOf": [ - { - "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/cube.schema#/$defs/tDatacube" - }, - { - "properties": { - "cube-structure": { - "properties": { - "dimensions": { - "minItems": 1, - "maxItems": 1, - "prefixItems": [ - { - "oneOf": [ - { - "properties": { - "concept": { - "const": "elapsed time" - }, - "unit": { - "const": "s" - }, - "@componentDatatype": { - "const": "double" - } - } - } - ] - } - ] - }, - "measures": { - "minItems": 1, - "maxItems": 1, - "contains": { - "oneOf": [ - { - "properties": { - "concept": { - "const": "fluorescence" - }, - "unit": { - "const": "RFU" - }, - "@componentDatatype": { - "const": "double" - } - } - } - ] - } - } - } - } - } - } - ] - } - }, - "required": [ - "fluorescence emission profile data cube" - ] - }, - { - "properties": { - "chromatogram data cube": { - "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0002550", - "$asm.pattern": "datacube", - "type": "object", - "allOf": [ - { - "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/cube.schema#/$defs/tDatacube" - }, - { - "properties": { - "cube-structure": { - "properties": { - "dimensions": { - "minItems": 1, - "maxItems": 1, - "prefixItems": [ - { - "oneOf": [ - { - "properties": { - "concept": { - "const": "elapsed time" - }, - "unit": { - "const": "s" - }, - "@componentDatatype": { - "const": "double" - } - } - } - ] - } - ] - }, - "measures": { - "minItems": 1, - "maxItems": 1, - "contains": { - "oneOf": [ - { - "properties": { - "concept": { - "const": "fluorescence" - }, - "unit": { - "const": "RFU" - }, - "@componentDatatype": { - "const": "double" - } - } - } - ] - } - } - } - } - } - } - ] - } - }, - "required": [ - "chromatogram data cube" - ] - } - ] - } - } - }, - "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/manifest.schema": { - "$id": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/manifest.schema", - "title": "Schema for manifests.", - "type": "object", - "properties": { - "@id": { - "type": "string", - "format": "uri", - "minItems": 1, - "maxItems": 1 - }, - "@type": { - "type": "string", - "format": "uri", - "minItems": 1, - "maxItems": 1 - }, - "vocabulary": { - "type": "array", - "items": { - "type": "string", - "format": "uri" - }, - "minItems": 1 - }, - "shapes": { - "type": "array", - "items": { - "type": "string", - "format": "uri" - }, - "minItems": 1 - }, - "json-schemas": { - "type": "array", - "items": { - "type": "string", - "format": "uri" - }, - "minItems": 1 - } - }, - "required": [ - "vocabulary", - "json-schemas" - ] - } - } -} \ No newline at end of file From 627ea086b609a9270914e5bba6e37f5b38fa83fa Mon Sep 17 00:00:00 2001 From: Alejandro Salgado Date: Thu, 10 Oct 2024 15:09:53 -0500 Subject: [PATCH 10/19] fix linter issues --- .../benchling/_2024/_09/electrophoresis.py | 3 --- .../benchling/_2024/_09/electrophoresis.py | 6 ++---- .../agilent_tapestation_analysis_structure.py | 20 +++++-------------- ...ent_tapestation_analysis_structure_test.py | 1 - 4 files changed, 7 insertions(+), 23 deletions(-) diff --git a/src/allotropy/allotrope/models/adm/electrophoresis/benchling/_2024/_09/electrophoresis.py b/src/allotropy/allotrope/models/adm/electrophoresis/benchling/_2024/_09/electrophoresis.py index 75f6d36ea..d1c474ebf 100644 --- a/src/allotropy/allotrope/models/adm/electrophoresis/benchling/_2024/_09/electrophoresis.py +++ b/src/allotropy/allotrope/models/adm/electrophoresis/benchling/_2024/_09/electrophoresis.py @@ -136,7 +136,6 @@ class ProcessedDataAggregateDocument: electronic_project_record: ElectronicProjectRecord | None = None - @dataclass(kw_only=True) class StatisticsDocumentItem: statistical_feature: TClass @@ -360,8 +359,6 @@ class PeakList: peak: list[PeakItem] | list[Peak] | None = None - - @dataclass(kw_only=True) class DataRegionDocumentItem: custom_information_aggregate_document: CustomInformationAggregateDocument | None = ( diff --git a/src/allotropy/allotrope/schema_mappers/adm/electrophoresis/benchling/_2024/_09/electrophoresis.py b/src/allotropy/allotrope/schema_mappers/adm/electrophoresis/benchling/_2024/_09/electrophoresis.py index 64a8f7ece..41a198a87 100644 --- a/src/allotropy/allotrope/schema_mappers/adm/electrophoresis/benchling/_2024/_09/electrophoresis.py +++ b/src/allotropy/allotrope/schema_mappers/adm/electrophoresis/benchling/_2024/_09/electrophoresis.py @@ -241,9 +241,7 @@ def _get_processed_data_aggregate_document( processed_data_document=[ ProcessedDataDocumentItem( peak_list=PeakList( - peak=[ - self._get_peak(peak) - for peak in data.peaks] + peak=[self._get_peak(peak) for peak in data.peaks] ), data_region_aggregate_document=DataRegionAggregateDocument( data_region_document=[ @@ -269,7 +267,7 @@ def _get_peak(self, peak: ProcessedDataFeature) -> Peak: else None ), peak_position=( - quantity_or_none_from_unit(peak.position_unit, peak.position) + quantity_or_none_from_unit(peak.position_unit, peak.position) # type: ignore[arg-type] if peak.position else None ), diff --git a/src/allotropy/parsers/agilent_tapestation_analysis/agilent_tapestation_analysis_structure.py b/src/allotropy/parsers/agilent_tapestation_analysis/agilent_tapestation_analysis_structure.py index 6aaa76974..1a9d7d27b 100644 --- a/src/allotropy/parsers/agilent_tapestation_analysis/agilent_tapestation_analysis_structure.py +++ b/src/allotropy/parsers/agilent_tapestation_analysis/agilent_tapestation_analysis_structure.py @@ -85,9 +85,7 @@ def create_metadata(root_element: ET.Element, file_name: str) -> Metadata: file_information, "FileName" ), # If any, only one of those should appear, so we arbitrarily take the first one - method_version=get_val_from_xml_or_none( - file_information, "RINeVersion" - ) + method_version=get_val_from_xml_or_none(file_information, "RINeVersion") or get_val_from_xml_or_none(file_information, "DINVersion"), software_version=get_val_from_xml_or_none(environment, "AnalysisVersion"), software_name=SOFTWARE_NAME, @@ -113,21 +111,15 @@ def _create_peak(peak_element: ET.Element, unit: str) -> ProcessedDataFeature: start_unit=unit, end=get_float_from_xml_or_none(peak_element, "ToMW"), end_unit=unit, - position=get_float_from_xml_or_none( - peak_element, "Size" - ), + position=get_float_from_xml_or_none(peak_element, "Size"), position_unit=unit, area=get_float_from_xml_or_none(peak_element, "Area"), relative_area=get_float_from_xml_or_none(peak_element, "PercentOfTotal"), relative_corrected_area=get_float_from_xml_or_none( peak_element, "PercentIntegratedArea" ), - name=get_val_from_xml_or_none( - peak_element, "Number" - ), - comment=_get_description( - peak_element - ), + name=get_val_from_xml_or_none(peak_element, "Number"), + comment=_get_description(peak_element), ) @@ -143,9 +135,7 @@ def _create_region( area=get_float_from_xml_or_none(region_element, "Area"), relative_area=get_float_from_xml_or_none(region_element, "PercentOfTotal"), name=region_name, - comment=get_val_from_xml_or_none( - region_element, "Comment" - ), + comment=get_val_from_xml_or_none(region_element, "Comment"), ) diff --git a/tests/parsers/agilent_tapestation_analysis/agilent_tapestation_analysis_structure_test.py b/tests/parsers/agilent_tapestation_analysis/agilent_tapestation_analysis_structure_test.py index aa1e68a82..8dfd5dfcd 100644 --- a/tests/parsers/agilent_tapestation_analysis/agilent_tapestation_analysis_structure_test.py +++ b/tests/parsers/agilent_tapestation_analysis/agilent_tapestation_analysis_structure_test.py @@ -3,7 +3,6 @@ import pytest -from allotropy.allotrope.models.shared.definitions.definitions import InvalidJsonFloat from allotropy.allotrope.schema_mappers.adm.electrophoresis.benchling._2024._09.electrophoresis import ( CalculatedDataItem, DataSource, From ca3b4f607bde26c052dcd9ab6dbd15987ad74cf7 Mon Sep 17 00:00:00 2001 From: Alejandro Salgado Date: Thu, 10 Oct 2024 15:12:11 -0500 Subject: [PATCH 11/19] update tapestation test with 09/24 schema --- ...ent_tapestation_analysis_structure_test.py | 2 + ...ilent_tapestation_analysis_example_01.json | 9963 ++++++++--------- ...ilent_tapestation_analysis_example_03.json | 3842 +++---- 3 files changed, 6539 insertions(+), 7268 deletions(-) diff --git a/tests/parsers/agilent_tapestation_analysis/agilent_tapestation_analysis_structure_test.py b/tests/parsers/agilent_tapestation_analysis/agilent_tapestation_analysis_structure_test.py index 8dfd5dfcd..43c3cb91c 100644 --- a/tests/parsers/agilent_tapestation_analysis/agilent_tapestation_analysis_structure_test.py +++ b/tests/parsers/agilent_tapestation_analysis/agilent_tapestation_analysis_structure_test.py @@ -25,6 +25,7 @@ PRODUCT_MANUFACTURER, SOFTWARE_NAME, ) +from allotropy.parsers.constants import NOT_APPLICABLE from allotropy.parsers.utils.values import assert_not_none from allotropy.testing.utils import mock_uuid_generation from tests.parsers.agilent_tapestation_analysis.agilent_tapestation_test_data import ( @@ -51,6 +52,7 @@ def test_create_metadata() -> None: product_manufacturer=PRODUCT_MANUFACTURER, device_type=DEVICE_TYPE, detection_type=DETECTION_TYPE, + unc_path=NOT_APPLICABLE, ) diff --git a/tests/parsers/agilent_tapestation_analysis/testdata/agilent_tapestation_analysis_example_01.json b/tests/parsers/agilent_tapestation_analysis/testdata/agilent_tapestation_analysis_example_01.json index 60b028f2d..f79beabef 100644 --- a/tests/parsers/agilent_tapestation_analysis/testdata/agilent_tapestation_analysis_example_01.json +++ b/tests/parsers/agilent_tapestation_analysis/testdata/agilent_tapestation_analysis_example_01.json @@ -1,25 +1,18 @@ { + "$asm.manifest": "http://purl.allotrope.org/manifests/electrophoresis/BENCHLING/2024/09/electrophoresis.manifest", "electrophoresis aggregate document": { - "data system document": { - "data system instance identifier": "TapeStation PC", - "file name": "agilent_tapestation_analysis_example_01.xml", - "software name": "TapeStation Analysis Software", - "software version": "2.1.17.8091", - "ASM converter name": "allotropy_agilent_tapestation_analysis", - "ASM converter version": "0.1.45" - }, "electrophoresis document": [ { + "analyst": "TapeStation User", "measurement aggregate document": { "measurement document": [ { - "measurement time": "2015-07-21T08:14:29-05:00", - "measurement identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_0", "device control aggregate document": { "device control document": [ { "device type": "electrophoresis device", - "detection type": "fluorescence" + "detection type": "fluorescence", + "device identifier": "32768" } ] }, @@ -28,22 +21,14 @@ "description": "Ladder Ladder", "location identifier": "L1" }, + "measurement identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_0", + "measurement time": "2015-07-21T08:14:29-05:00", "processed data aggregate document": { "processed data document": [ { "peak list": { "peak": [ { - "peak identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_2", - "peak name": "-", - "peak height": { - "value": 3730.08, - "unit": "RFU" - }, - "peak start": { - "value": 17.0, - "unit": "#" - }, "peak end": { "value": 38.0, "unit": "#" @@ -52,31 +37,23 @@ "value": 25.0, "unit": "#" }, + "peak name": "-", + "identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_2", + "peak height": { + "value": 3730.08, + "unit": "RFU" + }, "peak area": { "value": 1.0, "unit": "(unitless)" }, - "relative peak area": { - "value": "NaN", - "unit": "%" - }, - "relative corrected peak area": { - "value": "NaN", - "unit": "%" - }, - "comment": "Lower Marker" - }, - { - "peak identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_9", - "peak name": "1", - "peak height": { - "value": 1792.736, - "unit": "RFU" - }, + "comment": "Lower Marker", "peak start": { - "value": 141.0, + "value": 17.0, "unit": "#" - }, + } + }, + { "peak end": { "value": 268.0, "unit": "#" @@ -85,6 +62,12 @@ "value": 200.0, "unit": "#" }, + "peak name": "1", + "identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_9", + "peak height": { + "value": 1792.736, + "unit": "RFU" + }, "peak area": { "value": 0.197, "unit": "(unitless)" @@ -96,19 +79,13 @@ "relative corrected peak area": { "value": 10.77, "unit": "%" - } - }, - { - "peak identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_15", - "peak name": "2", - "peak height": { - "value": 3419.682, - "unit": "RFU" }, "peak start": { - "value": 350.0, + "value": 141.0, "unit": "#" - }, + } + }, + { "peak end": { "value": 646.0, "unit": "#" @@ -117,6 +94,12 @@ "value": 500.0, "unit": "#" }, + "peak name": "2", + "identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_15", + "peak height": { + "value": 3419.682, + "unit": "RFU" + }, "peak area": { "value": 0.401, "unit": "(unitless)" @@ -128,19 +111,13 @@ "relative corrected peak area": { "value": 21.98, "unit": "%" - } - }, - { - "peak identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_21", - "peak name": "3", - "peak height": { - "value": 3823.579, - "unit": "RFU" }, "peak start": { - "value": 819.0, + "value": 350.0, "unit": "#" - }, + } + }, + { "peak end": { "value": 1252.0, "unit": "#" @@ -149,6 +126,12 @@ "value": 1000.0, "unit": "#" }, + "peak name": "3", + "identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_21", + "peak height": { + "value": 3823.579, + "unit": "RFU" + }, "peak area": { "value": 0.333, "unit": "(unitless)" @@ -160,19 +143,13 @@ "relative corrected peak area": { "value": 18.24, "unit": "%" - } - }, - { - "peak identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_27", - "peak name": "4", - "peak height": { - "value": 3642.857, - "unit": "RFU" }, "peak start": { - "value": 1643.0, + "value": 819.0, "unit": "#" - }, + } + }, + { "peak end": { "value": 2607.0, "unit": "#" @@ -181,6 +158,12 @@ "value": 2000.0, "unit": "#" }, + "peak name": "4", + "identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_27", + "peak height": { + "value": 3642.857, + "unit": "RFU" + }, "peak area": { "value": 0.337, "unit": "(unitless)" @@ -192,19 +175,13 @@ "relative corrected peak area": { "value": 18.48, "unit": "%" - } - }, - { - "peak identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_33", - "peak name": "5", - "peak height": { - "value": 3698.553, - "unit": "RFU" }, "peak start": { - "value": 3504.0, + "value": 1643.0, "unit": "#" - }, + } + }, + { "peak end": { "value": 5219.0, "unit": "#" @@ -213,6 +190,12 @@ "value": 4000.0, "unit": "#" }, + "peak name": "5", + "identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_33", + "peak height": { + "value": 3698.553, + "unit": "RFU" + }, "peak area": { "value": 0.323, "unit": "(unitless)" @@ -224,19 +207,13 @@ "relative corrected peak area": { "value": 17.68, "unit": "%" - } - }, - { - "peak identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_39", - "peak name": "6", - "peak height": { - "value": 3024.454, - "unit": "RFU" }, "peak start": { - "value": 5219.0, + "value": 3504.0, "unit": "#" - }, + } + }, + { "peak end": { "value": 8341.0, "unit": "#" @@ -245,6 +222,12 @@ "value": 6000.0, "unit": "#" }, + "peak name": "6", + "identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_39", + "peak height": { + "value": 3024.454, + "unit": "RFU" + }, "peak area": { "value": 0.235, "unit": "(unitless)" @@ -256,6 +239,10 @@ "relative corrected peak area": { "value": 12.86, "unit": "%" + }, + "peak start": { + "value": 5219.0, + "unit": "#" } } ] @@ -268,24 +255,23 @@ "unit": "degC" } } - ] - }, - "analyst": "TapeStation User", - "analytical method identifier": "RNA", - "method version": "5.1.0.47235", - "experimental data identifier": "\\\\Mac\\Home\\Documents\\Agilent\\TapeStation Data\\Demo Files\\Eukaryotic RNA-Plate-64.RNA" + ], + "analytical method identifier": "RNA", + "method version": "5.1.0.47235", + "experimental data identifier": "\\\\Mac\\Home\\Documents\\Agilent\\TapeStation Data\\Demo Files\\Eukaryotic RNA-Plate-64.RNA" + } }, { + "analyst": "TapeStation User", "measurement aggregate document": { "measurement document": [ { - "measurement time": "2015-07-21T08:14:29-05:00", - "measurement identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_45", "device control aggregate document": { "device control document": [ { "device type": "electrophoresis device", - "detection type": "fluorescence" + "detection type": "fluorescence", + "device identifier": "32768" } ] }, @@ -294,22 +280,14 @@ "description": "Rat Kidney 400 ng/µl", "location identifier": "A1" }, + "measurement identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_45", + "measurement time": "2015-07-21T08:14:29-05:00", "processed data aggregate document": { "processed data document": [ { "peak list": { "peak": [ { - "peak identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_47", - "peak name": "-", - "peak height": { - "value": 25.0, - "unit": "RFU" - }, - "peak start": { - "value": 17.0, - "unit": "#" - }, "peak end": { "value": 38.0, "unit": "#" @@ -318,31 +296,23 @@ "value": 25.0, "unit": "#" }, + "peak name": "-", + "identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_47", + "peak height": { + "value": 25.0, + "unit": "RFU" + }, "peak area": { "value": 1.0, "unit": "(unitless)" }, - "relative peak area": { - "value": "NaN", - "unit": "%" - }, - "relative corrected peak area": { - "value": "NaN", - "unit": "%" - }, - "comment": "Lower Marker" - }, - { - "peak identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_54", - "peak name": "1", - "peak height": { - "value": 5194.973, - "unit": "RFU" - }, + "comment": "Lower Marker", "peak start": { - "value": 1558.0, + "value": 17.0, "unit": "#" - }, + } + }, + { "peak end": { "value": 2376.0, "unit": "#" @@ -351,6 +321,12 @@ "value": 1730.0, "unit": "#" }, + "peak name": "1", + "identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_54", + "peak height": { + "value": 5194.973, + "unit": "RFU" + }, "peak area": { "value": 1.682, "unit": "(unitless)" @@ -363,19 +339,13 @@ "value": 25.16, "unit": "%" }, - "comment": "18S" - }, - { - "peak identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_60", - "peak name": "2", - "peak height": { - "value": 10985.712, - "unit": "RFU" - }, + "comment": "18S", "peak start": { - "value": 3075.0, + "value": 1558.0, "unit": "#" - }, + } + }, + { "peak end": { "value": 8260.0, "unit": "#" @@ -384,6 +354,12 @@ "value": 4405.0, "unit": "#" }, + "peak name": "2", + "identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_60", + "peak height": { + "value": 10985.712, + "unit": "RFU" + }, "peak area": { "value": 5.004, "unit": "(unitless)" @@ -396,7 +372,11 @@ "value": 74.84, "unit": "%" }, - "comment": "28S" + "comment": "28S", + "peak start": { + "value": 3075.0, + "unit": "#" + } } ] } @@ -408,24 +388,23 @@ "unit": "degC" } } - ] - }, - "analyst": "TapeStation User", - "analytical method identifier": "RNA", - "method version": "5.1.0.47235", - "experimental data identifier": "\\\\Mac\\Home\\Documents\\Agilent\\TapeStation Data\\Demo Files\\Eukaryotic RNA-Plate-64.RNA" + ], + "analytical method identifier": "RNA", + "method version": "5.1.0.47235", + "experimental data identifier": "\\\\Mac\\Home\\Documents\\Agilent\\TapeStation Data\\Demo Files\\Eukaryotic RNA-Plate-64.RNA" + } }, { + "analyst": "TapeStation User", "measurement aggregate document": { "measurement document": [ { - "measurement time": "2015-07-21T08:14:29-05:00", - "measurement identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_66", "device control aggregate document": { "device control document": [ { "device type": "electrophoresis device", - "detection type": "fluorescence" + "detection type": "fluorescence", + "device identifier": "32768" } ] }, @@ -434,96 +413,86 @@ "description": "Rat Kidney 400 ng/µl", "location identifier": "B1" }, + "measurement identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_66", + "measurement time": "2015-07-21T08:14:29-05:00", "processed data aggregate document": { "processed data document": [ { "peak list": { "peak": [ { - "peak identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_68", + "peak end": { + "value": 38.0, + "unit": "#" + }, + "peak position": { + "value": 25.0, + "unit": "#" + }, "peak name": "-", + "identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_68", "peak height": { "value": 1537.717, "unit": "RFU" }, + "peak area": { + "value": 1.0, + "unit": "(unitless)" + }, + "comment": "Lower Marker", "peak start": { "value": 17.0, "unit": "#" - }, + } + }, + { "peak end": { - "value": 38.0, + "value": 2436.0, "unit": "#" }, "peak position": { - "value": 25.0, + "value": 1752.0, "unit": "#" }, + "peak name": "1", + "identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_75", + "peak height": { + "value": 5289.333, + "unit": "RFU" + }, "peak area": { - "value": 1.0, + "value": 1.726, "unit": "(unitless)" }, "relative peak area": { - "value": "NaN", + "value": 19.1, "unit": "%" }, "relative corrected peak area": { - "value": "NaN", + "value": 25.42, "unit": "%" }, - "comment": "Lower Marker" - }, - { - "peak identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_75", - "peak name": "1", - "peak height": { - "value": 5289.333, - "unit": "RFU" - }, + "comment": "18S", "peak start": { "value": 1564.0, "unit": "#" - }, + } + }, + { "peak end": { - "value": 2436.0, + "value": 8209.0, "unit": "#" }, "peak position": { - "value": 1752.0, + "value": 4547.0, "unit": "#" }, - "peak area": { - "value": 1.726, - "unit": "(unitless)" - }, - "relative peak area": { - "value": 19.1, - "unit": "%" - }, - "relative corrected peak area": { - "value": 25.42, - "unit": "%" - }, - "comment": "18S" - }, - { - "peak identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_81", "peak name": "2", + "identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_81", "peak height": { "value": 10676.371, "unit": "RFU" }, - "peak start": { - "value": 3057.0, - "unit": "#" - }, - "peak end": { - "value": 8209.0, - "unit": "#" - }, - "peak position": { - "value": 4547.0, - "unit": "#" - }, "peak area": { "value": 5.064, "unit": "(unitless)" @@ -536,7 +505,11 @@ "value": 74.58, "unit": "%" }, - "comment": "28S" + "comment": "28S", + "peak start": { + "value": 3057.0, + "unit": "#" + } } ] } @@ -548,24 +521,23 @@ "unit": "degC" } } - ] - }, - "analyst": "TapeStation User", - "analytical method identifier": "RNA", - "method version": "5.1.0.47235", - "experimental data identifier": "\\\\Mac\\Home\\Documents\\Agilent\\TapeStation Data\\Demo Files\\Eukaryotic RNA-Plate-64.RNA" + ], + "analytical method identifier": "RNA", + "method version": "5.1.0.47235", + "experimental data identifier": "\\\\Mac\\Home\\Documents\\Agilent\\TapeStation Data\\Demo Files\\Eukaryotic RNA-Plate-64.RNA" + } }, { + "analyst": "TapeStation User", "measurement aggregate document": { "measurement document": [ { - "measurement time": "2015-07-21T08:14:29-05:00", - "measurement identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_87", "device control aggregate document": { "device control document": [ { "device type": "electrophoresis device", - "detection type": "fluorescence" + "detection type": "fluorescence", + "device identifier": "32768" } ] }, @@ -574,22 +546,14 @@ "description": "Rat Kidney 200 ng/µl", "location identifier": "C1" }, + "measurement identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_87", + "measurement time": "2015-07-21T08:14:29-05:00", "processed data aggregate document": { "processed data document": [ { "peak list": { "peak": [ { - "peak identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_89", - "peak name": "-", - "peak height": { - "value": 2736.667, - "unit": "RFU" - }, - "peak start": { - "value": 17.0, - "unit": "#" - }, "peak end": { "value": 39.0, "unit": "#" @@ -598,31 +562,23 @@ "value": 25.0, "unit": "#" }, + "peak name": "-", + "identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_89", + "peak height": { + "value": 2736.667, + "unit": "RFU" + }, "peak area": { "value": 1.0, "unit": "(unitless)" }, - "relative peak area": { - "value": "NaN", - "unit": "%" - }, - "relative corrected peak area": { - "value": "NaN", - "unit": "%" - }, - "comment": "Lower Marker" - }, - { - "peak identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_96", - "peak name": "1", - "peak height": { - "value": 5922.603, - "unit": "RFU" - }, + "comment": "Lower Marker", "peak start": { - "value": 1534.0, + "value": 17.0, "unit": "#" - }, + } + }, + { "peak end": { "value": 2324.0, "unit": "#" @@ -631,6 +587,12 @@ "value": 1738.0, "unit": "#" }, + "peak name": "1", + "identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_96", + "peak height": { + "value": 5922.603, + "unit": "RFU" + }, "peak area": { "value": 0.883, "unit": "(unitless)" @@ -643,19 +605,13 @@ "value": 26.91, "unit": "%" }, - "comment": "18S" - }, - { - "peak identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_102", - "peak name": "2", - "peak height": { - "value": 10700.53, - "unit": "RFU" - }, + "comment": "18S", "peak start": { - "value": 3082.0, + "value": 1534.0, "unit": "#" - }, + } + }, + { "peak end": { "value": 7864.0, "unit": "#" @@ -664,6 +620,12 @@ "value": 4617.0, "unit": "#" }, + "peak name": "2", + "identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_102", + "peak height": { + "value": 10700.53, + "unit": "RFU" + }, "peak area": { "value": 2.399, "unit": "(unitless)" @@ -676,7 +638,11 @@ "value": 73.09, "unit": "%" }, - "comment": "28S" + "comment": "28S", + "peak start": { + "value": 3082.0, + "unit": "#" + } } ] } @@ -688,24 +654,23 @@ "unit": "degC" } } - ] - }, - "analyst": "TapeStation User", - "analytical method identifier": "RNA", - "method version": "5.1.0.47235", - "experimental data identifier": "\\\\Mac\\Home\\Documents\\Agilent\\TapeStation Data\\Demo Files\\Eukaryotic RNA-Plate-64.RNA" + ], + "analytical method identifier": "RNA", + "method version": "5.1.0.47235", + "experimental data identifier": "\\\\Mac\\Home\\Documents\\Agilent\\TapeStation Data\\Demo Files\\Eukaryotic RNA-Plate-64.RNA" + } }, { + "analyst": "TapeStation User", "measurement aggregate document": { "measurement document": [ { - "measurement time": "2015-07-21T08:14:29-05:00", - "measurement identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_108", "device control aggregate document": { "device control document": [ { "device type": "electrophoresis device", - "detection type": "fluorescence" + "detection type": "fluorescence", + "device identifier": "32768" } ] }, @@ -714,22 +679,14 @@ "description": "Rat Kidney 200 ng/µl", "location identifier": "D1" }, + "measurement identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_108", + "measurement time": "2015-07-21T08:14:29-05:00", "processed data aggregate document": { "processed data document": [ { "peak list": { "peak": [ { - "peak identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_110", - "peak name": "-", - "peak height": { - "value": 2270.698, - "unit": "RFU" - }, - "peak start": { - "value": 17.0, - "unit": "#" - }, "peak end": { "value": 39.0, "unit": "#" @@ -738,31 +695,23 @@ "value": 25.0, "unit": "#" }, + "peak name": "-", + "identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_110", + "peak height": { + "value": 2270.698, + "unit": "RFU" + }, "peak area": { "value": 1.0, "unit": "(unitless)" }, - "relative peak area": { - "value": "NaN", - "unit": "%" - }, - "relative corrected peak area": { - "value": "NaN", - "unit": "%" - }, - "comment": "Lower Marker" - }, - { - "peak identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_117", - "peak name": "1", - "peak height": { - "value": 5595.302, - "unit": "RFU" - }, + "comment": "Lower Marker", "peak start": { - "value": 1514.0, + "value": 17.0, "unit": "#" - }, + } + }, + { "peak end": { "value": 2220.0, "unit": "#" @@ -771,6 +720,12 @@ "value": 1715.0, "unit": "#" }, + "peak name": "1", + "identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_117", + "peak height": { + "value": 5595.302, + "unit": "RFU" + }, "peak area": { "value": 0.952, "unit": "(unitless)" @@ -783,19 +738,13 @@ "value": 26.02, "unit": "%" }, - "comment": "18S" - }, - { - "peak identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_123", - "peak name": "2", - "peak height": { - "value": 10247.441, - "unit": "RFU" - }, + "comment": "18S", "peak start": { - "value": 3036.0, + "value": 1514.0, "unit": "#" - }, + } + }, + { "peak end": { "value": 7514.0, "unit": "#" @@ -804,6 +753,12 @@ "value": 4530.0, "unit": "#" }, + "peak name": "2", + "identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_123", + "peak height": { + "value": 10247.441, + "unit": "RFU" + }, "peak area": { "value": 2.706, "unit": "(unitless)" @@ -816,7 +771,11 @@ "value": 73.98, "unit": "%" }, - "comment": "28S" + "comment": "28S", + "peak start": { + "value": 3036.0, + "unit": "#" + } } ] } @@ -828,24 +787,23 @@ "unit": "degC" } } - ] - }, - "analyst": "TapeStation User", - "analytical method identifier": "RNA", - "method version": "5.1.0.47235", - "experimental data identifier": "\\\\Mac\\Home\\Documents\\Agilent\\TapeStation Data\\Demo Files\\Eukaryotic RNA-Plate-64.RNA" + ], + "analytical method identifier": "RNA", + "method version": "5.1.0.47235", + "experimental data identifier": "\\\\Mac\\Home\\Documents\\Agilent\\TapeStation Data\\Demo Files\\Eukaryotic RNA-Plate-64.RNA" + } }, { + "analyst": "TapeStation User", "measurement aggregate document": { "measurement document": [ { - "measurement time": "2015-07-21T08:14:29-05:00", - "measurement identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_129", "device control aggregate document": { "device control document": [ { "device type": "electrophoresis device", - "detection type": "fluorescence" + "detection type": "fluorescence", + "device identifier": "32768" } ] }, @@ -854,22 +812,14 @@ "description": "Rat Kidney 100 ng/µl", "location identifier": "E1" }, + "measurement identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_129", + "measurement time": "2015-07-21T08:14:29-05:00", "processed data aggregate document": { "processed data document": [ { "peak list": { "peak": [ { - "peak identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_131", - "peak name": "-", - "peak height": { - "value": 4688.189, - "unit": "RFU" - }, - "peak start": { - "value": 17.0, - "unit": "#" - }, "peak end": { "value": 39.0, "unit": "#" @@ -878,31 +828,23 @@ "value": 25.0, "unit": "#" }, + "peak name": "-", + "identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_131", + "peak height": { + "value": 4688.189, + "unit": "RFU" + }, "peak area": { "value": 1.0, "unit": "(unitless)" }, - "relative peak area": { - "value": "NaN", - "unit": "%" - }, - "relative corrected peak area": { - "value": "NaN", - "unit": "%" - }, - "comment": "Lower Marker" - }, - { - "peak identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_138", - "peak name": "1", - "peak height": { - "value": 5578.792, - "unit": "RFU" - }, + "comment": "Lower Marker", "peak start": { - "value": 1292.0, + "value": 17.0, "unit": "#" - }, + } + }, + { "peak end": { "value": 2720.0, "unit": "#" @@ -911,6 +853,12 @@ "value": 1763.0, "unit": "#" }, + "peak name": "1", + "identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_138", + "peak height": { + "value": 5578.792, + "unit": "RFU" + }, "peak area": { "value": 0.55, "unit": "(unitless)" @@ -923,19 +871,13 @@ "value": 37.23, "unit": "%" }, - "comment": "18S" - }, - { - "peak identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_144", - "peak name": "2", - "peak height": { - "value": 7863.989, - "unit": "RFU" - }, + "comment": "18S", "peak start": { - "value": 3397.0, + "value": 1292.0, "unit": "#" - }, + } + }, + { "peak end": { "value": 8643.0, "unit": "#" @@ -944,6 +886,12 @@ "value": 5174.0, "unit": "#" }, + "peak name": "2", + "identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_144", + "peak height": { + "value": 7863.989, + "unit": "RFU" + }, "peak area": { "value": 0.927, "unit": "(unitless)" @@ -956,7 +904,11 @@ "value": 62.77, "unit": "%" }, - "comment": "28S" + "comment": "28S", + "peak start": { + "value": 3397.0, + "unit": "#" + } } ] } @@ -968,24 +920,23 @@ "unit": "degC" } } - ] - }, - "analyst": "TapeStation User", - "analytical method identifier": "RNA", - "method version": "5.1.0.47235", - "experimental data identifier": "\\\\Mac\\Home\\Documents\\Agilent\\TapeStation Data\\Demo Files\\Eukaryotic RNA-Plate-64.RNA" + ], + "analytical method identifier": "RNA", + "method version": "5.1.0.47235", + "experimental data identifier": "\\\\Mac\\Home\\Documents\\Agilent\\TapeStation Data\\Demo Files\\Eukaryotic RNA-Plate-64.RNA" + } }, { + "analyst": "TapeStation User", "measurement aggregate document": { "measurement document": [ { - "measurement time": "2015-07-21T08:14:29-05:00", - "measurement identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_150", "device control aggregate document": { "device control document": [ { "device type": "electrophoresis device", - "detection type": "fluorescence" + "detection type": "fluorescence", + "device identifier": "32768" } ] }, @@ -994,55 +945,39 @@ "description": "Rat Kidney 100 ng/µl", "location identifier": "F1" }, + "measurement identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_150", + "measurement time": "2015-07-21T08:14:29-05:00", "processed data aggregate document": { "processed data document": [ { "peak list": { "peak": [ { - "peak identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_152", - "peak name": "-", - "peak height": { - "value": 4353.073, - "unit": "RFU" - }, - "peak start": { - "value": 17.0, - "unit": "#" - }, - "peak end": { - "value": 39.0, - "unit": "#" + "peak end": { + "value": 39.0, + "unit": "#" }, "peak position": { "value": 25.0, "unit": "#" }, + "peak name": "-", + "identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_152", + "peak height": { + "value": 4353.073, + "unit": "RFU" + }, "peak area": { "value": 1.0, "unit": "(unitless)" }, - "relative peak area": { - "value": "NaN", - "unit": "%" - }, - "relative corrected peak area": { - "value": "NaN", - "unit": "%" - }, - "comment": "Lower Marker" - }, - { - "peak identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_159", - "peak name": "1", - "peak height": { - "value": 5467.56, - "unit": "RFU" - }, + "comment": "Lower Marker", "peak start": { - "value": 1274.0, + "value": 17.0, "unit": "#" - }, + } + }, + { "peak end": { "value": 2151.0, "unit": "#" @@ -1051,6 +986,12 @@ "value": 1748.0, "unit": "#" }, + "peak name": "1", + "identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_159", + "peak height": { + "value": 5467.56, + "unit": "RFU" + }, "peak area": { "value": 0.451, "unit": "(unitless)" @@ -1063,19 +1004,13 @@ "value": 30.43, "unit": "%" }, - "comment": "18S" - }, - { - "peak identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_165", - "peak name": "2", - "peak height": { - "value": 7752.346, - "unit": "RFU" - }, + "comment": "18S", "peak start": { - "value": 3232.0, + "value": 1274.0, "unit": "#" - }, + } + }, + { "peak end": { "value": 9247.0, "unit": "#" @@ -1084,6 +1019,12 @@ "value": 5091.0, "unit": "#" }, + "peak name": "2", + "identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_165", + "peak height": { + "value": 7752.346, + "unit": "RFU" + }, "peak area": { "value": 1.03, "unit": "(unitless)" @@ -1096,7 +1037,11 @@ "value": 69.57, "unit": "%" }, - "comment": "28S" + "comment": "28S", + "peak start": { + "value": 3232.0, + "unit": "#" + } } ] } @@ -1108,24 +1053,23 @@ "unit": "degC" } } - ] - }, - "analyst": "TapeStation User", - "analytical method identifier": "RNA", - "method version": "5.1.0.47235", - "experimental data identifier": "\\\\Mac\\Home\\Documents\\Agilent\\TapeStation Data\\Demo Files\\Eukaryotic RNA-Plate-64.RNA" + ], + "analytical method identifier": "RNA", + "method version": "5.1.0.47235", + "experimental data identifier": "\\\\Mac\\Home\\Documents\\Agilent\\TapeStation Data\\Demo Files\\Eukaryotic RNA-Plate-64.RNA" + } }, { + "analyst": "TapeStation User", "measurement aggregate document": { "measurement document": [ { - "measurement time": "2015-07-21T08:14:29-05:00", - "measurement identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_171", "device control aggregate document": { "device control document": [ { "device type": "electrophoresis device", - "detection type": "fluorescence" + "detection type": "fluorescence", + "device identifier": "32768" } ] }, @@ -1134,22 +1078,14 @@ "description": "Rat Kidney 50 ng/µl", "location identifier": "G1" }, + "measurement identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_171", + "measurement time": "2015-07-21T08:14:29-05:00", "processed data aggregate document": { "processed data document": [ { "peak list": { "peak": [ { - "peak identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_173", - "peak name": "-", - "peak height": { - "value": 5731.797, - "unit": "RFU" - }, - "peak start": { - "value": 16.0, - "unit": "#" - }, "peak end": { "value": 39.0, "unit": "#" @@ -1158,31 +1094,23 @@ "value": 25.0, "unit": "#" }, + "peak name": "-", + "identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_173", + "peak height": { + "value": 5731.797, + "unit": "RFU" + }, "peak area": { "value": 1.0, "unit": "(unitless)" }, - "relative peak area": { - "value": "NaN", - "unit": "%" - }, - "relative corrected peak area": { - "value": "NaN", - "unit": "%" - }, - "comment": "Lower Marker" - }, - { - "peak identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_180", - "peak name": "1", - "peak height": { - "value": 3884.52, - "unit": "RFU" - }, + "comment": "Lower Marker", "peak start": { - "value": 1231.0, + "value": 16.0, "unit": "#" - }, + } + }, + { "peak end": { "value": 2092.0, "unit": "#" @@ -1191,6 +1119,12 @@ "value": 1731.0, "unit": "#" }, + "peak name": "1", + "identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_180", + "peak height": { + "value": 3884.52, + "unit": "RFU" + }, "peak area": { "value": 0.235, "unit": "(unitless)" @@ -1203,19 +1137,13 @@ "value": 37.65, "unit": "%" }, - "comment": "18S" - }, - { - "peak identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_186", - "peak name": "2", - "peak height": { - "value": 4576.494, - "unit": "RFU" - }, + "comment": "18S", "peak start": { - "value": 3998.0, + "value": 1231.0, "unit": "#" - }, + } + }, + { "peak end": { "value": 9677.0, "unit": "#" @@ -1224,6 +1152,12 @@ "value": 5633.0, "unit": "#" }, + "peak name": "2", + "identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_186", + "peak height": { + "value": 4576.494, + "unit": "RFU" + }, "peak area": { "value": 0.39, "unit": "(unitless)" @@ -1236,7 +1170,11 @@ "value": 62.35, "unit": "%" }, - "comment": "28S" + "comment": "28S", + "peak start": { + "value": 3998.0, + "unit": "#" + } } ] } @@ -1248,24 +1186,23 @@ "unit": "degC" } } - ] - }, - "analyst": "TapeStation User", - "analytical method identifier": "RNA", - "method version": "5.1.0.47235", - "experimental data identifier": "\\\\Mac\\Home\\Documents\\Agilent\\TapeStation Data\\Demo Files\\Eukaryotic RNA-Plate-64.RNA" + ], + "analytical method identifier": "RNA", + "method version": "5.1.0.47235", + "experimental data identifier": "\\\\Mac\\Home\\Documents\\Agilent\\TapeStation Data\\Demo Files\\Eukaryotic RNA-Plate-64.RNA" + } }, { + "analyst": "TapeStation User", "measurement aggregate document": { "measurement document": [ { - "measurement time": "2015-07-21T08:14:29-05:00", - "measurement identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_192", "device control aggregate document": { "device control document": [ { "device type": "electrophoresis device", - "detection type": "fluorescence" + "detection type": "fluorescence", + "device identifier": "32768" } ] }, @@ -1274,22 +1211,14 @@ "description": "Rat Kidney 50 ng/µl", "location identifier": "H1" }, + "measurement identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_192", + "measurement time": "2015-07-21T08:14:29-05:00", "processed data aggregate document": { "processed data document": [ { "peak list": { "peak": [ { - "peak identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_194", - "peak name": "-", - "peak height": { - "value": 5812.798, - "unit": "RFU" - }, - "peak start": { - "value": 17.0, - "unit": "#" - }, "peak end": { "value": 38.0, "unit": "#" @@ -1298,31 +1227,23 @@ "value": 25.0, "unit": "#" }, + "peak name": "-", + "identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_194", + "peak height": { + "value": 5812.798, + "unit": "RFU" + }, "peak area": { "value": 1.0, "unit": "(unitless)" }, - "relative peak area": { - "value": "NaN", - "unit": "%" - }, - "relative corrected peak area": { - "value": "NaN", - "unit": "%" - }, - "comment": "Lower Marker" - }, - { - "peak identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_201", - "peak name": "1", - "peak height": { - "value": 3803.128, - "unit": "RFU" - }, + "comment": "Lower Marker", "peak start": { - "value": 1509.0, + "value": 17.0, "unit": "#" - }, + } + }, + { "peak end": { "value": 2342.0, "unit": "#" @@ -1331,6 +1252,12 @@ "value": 1842.0, "unit": "#" }, + "peak name": "1", + "identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_201", + "peak height": { + "value": 3803.128, + "unit": "RFU" + }, "peak area": { "value": 0.236, "unit": "(unitless)" @@ -1343,19 +1270,13 @@ "value": 36.77, "unit": "%" }, - "comment": "18S" - }, - { - "peak identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_207", - "peak name": "2", - "peak height": { - "value": 4642.904, - "unit": "RFU" - }, + "comment": "18S", "peak start": { - "value": 4268.0, + "value": 1509.0, "unit": "#" - }, + } + }, + { "peak end": { "value": 9569.0, "unit": "#" @@ -1364,6 +1285,12 @@ "value": 6032.0, "unit": "#" }, + "peak name": "2", + "identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_207", + "peak height": { + "value": 4642.904, + "unit": "RFU" + }, "peak area": { "value": 0.405, "unit": "(unitless)" @@ -1376,7 +1303,11 @@ "value": 63.23, "unit": "%" }, - "comment": "28S" + "comment": "28S", + "peak start": { + "value": 4268.0, + "unit": "#" + } } ] } @@ -1388,24 +1319,23 @@ "unit": "degC" } } - ] - }, - "analyst": "TapeStation User", - "analytical method identifier": "RNA", - "method version": "5.1.0.47235", - "experimental data identifier": "\\\\Mac\\Home\\Documents\\Agilent\\TapeStation Data\\Demo Files\\Eukaryotic RNA-Plate-64.RNA" + ], + "analytical method identifier": "RNA", + "method version": "5.1.0.47235", + "experimental data identifier": "\\\\Mac\\Home\\Documents\\Agilent\\TapeStation Data\\Demo Files\\Eukaryotic RNA-Plate-64.RNA" + } }, { + "analyst": "TapeStation User", "measurement aggregate document": { "measurement document": [ { - "measurement time": "2015-07-21T08:14:29-05:00", - "measurement identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_213", "device control aggregate document": { "device control document": [ { "device type": "electrophoresis device", - "detection type": "fluorescence" + "detection type": "fluorescence", + "device identifier": "32768" } ] }, @@ -1414,22 +1344,14 @@ "description": "Rat Kidney 400 ng/µl", "location identifier": "A2" }, + "measurement identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_213", + "measurement time": "2015-07-21T08:14:29-05:00", "processed data aggregate document": { "processed data document": [ { "peak list": { "peak": [ { - "peak identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_215", - "peak name": "-", - "peak height": { - "value": 1354.025, - "unit": "RFU" - }, - "peak start": { - "value": 17.0, - "unit": "#" - }, "peak end": { "value": 38.0, "unit": "#" @@ -1438,31 +1360,23 @@ "value": 25.0, "unit": "#" }, + "peak name": "-", + "identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_215", + "peak height": { + "value": 1354.025, + "unit": "RFU" + }, "peak area": { "value": 1.0, "unit": "(unitless)" }, - "relative peak area": { - "value": "NaN", - "unit": "%" - }, - "relative corrected peak area": { - "value": "NaN", - "unit": "%" - }, - "comment": "Lower Marker" - }, - { - "peak identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_222", - "peak name": "1", - "peak height": { - "value": 5083.332, - "unit": "RFU" - }, + "comment": "Lower Marker", "peak start": { - "value": 1666.0, + "value": 17.0, "unit": "#" - }, + } + }, + { "peak end": { "value": 2461.0, "unit": "#" @@ -1471,6 +1385,12 @@ "value": 1846.0, "unit": "#" }, + "peak name": "1", + "identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_222", + "peak height": { + "value": 5083.332, + "unit": "RFU" + }, "peak area": { "value": 1.658, "unit": "(unitless)" @@ -1483,19 +1403,13 @@ "value": 24.84, "unit": "%" }, - "comment": "18S" - }, - { - "peak identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_228", - "peak name": "2", - "peak height": { - "value": 10429.09, - "unit": "RFU" - }, + "comment": "18S", "peak start": { - "value": 3172.0, + "value": 1666.0, "unit": "#" - }, + } + }, + { "peak end": { "value": 7628.0, "unit": "#" @@ -1504,8 +1418,14 @@ "value": 4723.0, "unit": "#" }, - "peak area": { - "value": 5.015, + "peak name": "2", + "identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_228", + "peak height": { + "value": 10429.09, + "unit": "RFU" + }, + "peak area": { + "value": 5.015, "unit": "(unitless)" }, "relative peak area": { @@ -1516,7 +1436,11 @@ "value": 75.16, "unit": "%" }, - "comment": "28S" + "comment": "28S", + "peak start": { + "value": 3172.0, + "unit": "#" + } } ] } @@ -1528,24 +1452,23 @@ "unit": "degC" } } - ] - }, - "analyst": "TapeStation User", - "analytical method identifier": "RNA", - "method version": "5.1.0.47235", - "experimental data identifier": "\\\\Mac\\Home\\Documents\\Agilent\\TapeStation Data\\Demo Files\\Eukaryotic RNA-Plate-64.RNA" + ], + "analytical method identifier": "RNA", + "method version": "5.1.0.47235", + "experimental data identifier": "\\\\Mac\\Home\\Documents\\Agilent\\TapeStation Data\\Demo Files\\Eukaryotic RNA-Plate-64.RNA" + } }, { + "analyst": "TapeStation User", "measurement aggregate document": { "measurement document": [ { - "measurement time": "2015-07-21T08:14:29-05:00", - "measurement identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_234", "device control aggregate document": { "device control document": [ { "device type": "electrophoresis device", - "detection type": "fluorescence" + "detection type": "fluorescence", + "device identifier": "32768" } ] }, @@ -1554,22 +1477,14 @@ "description": "Rat Kidney 400 ng/µl", "location identifier": "B2" }, + "measurement identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_234", + "measurement time": "2015-07-21T08:14:29-05:00", "processed data aggregate document": { "processed data document": [ { "peak list": { "peak": [ { - "peak identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_236", - "peak name": "-", - "peak height": { - "value": 1622.033, - "unit": "RFU" - }, - "peak start": { - "value": 17.0, - "unit": "#" - }, "peak end": { "value": 39.0, "unit": "#" @@ -1578,31 +1493,23 @@ "value": 25.0, "unit": "#" }, + "peak name": "-", + "identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_236", + "peak height": { + "value": 1622.033, + "unit": "RFU" + }, "peak area": { "value": 1.0, "unit": "(unitless)" }, - "relative peak area": { - "value": "NaN", - "unit": "%" - }, - "relative corrected peak area": { - "value": "NaN", - "unit": "%" - }, - "comment": "Lower Marker" - }, - { - "peak identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_243", - "peak name": "1", - "peak height": { - "value": 5335.852, - "unit": "RFU" - }, + "comment": "Lower Marker", "peak start": { - "value": 1624.0, + "value": 17.0, "unit": "#" - }, + } + }, + { "peak end": { "value": 2486.0, "unit": "#" @@ -1611,6 +1518,12 @@ "value": 1786.0, "unit": "#" }, + "peak name": "1", + "identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_243", + "peak height": { + "value": 5335.852, + "unit": "RFU" + }, "peak area": { "value": 1.613, "unit": "(unitless)" @@ -1623,19 +1536,13 @@ "value": 25.47, "unit": "%" }, - "comment": "18S" - }, - { - "peak identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_249", - "peak name": "2", - "peak height": { - "value": 11481.279, - "unit": "RFU" - }, + "comment": "18S", "peak start": { - "value": 3121.0, + "value": 1624.0, "unit": "#" - }, + } + }, + { "peak end": { "value": 7698.0, "unit": "#" @@ -1644,6 +1551,12 @@ "value": 4547.0, "unit": "#" }, + "peak name": "2", + "identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_249", + "peak height": { + "value": 11481.279, + "unit": "RFU" + }, "peak area": { "value": 4.72, "unit": "(unitless)" @@ -1656,7 +1569,11 @@ "value": 74.53, "unit": "%" }, - "comment": "28S" + "comment": "28S", + "peak start": { + "value": 3121.0, + "unit": "#" + } } ] } @@ -1668,24 +1585,23 @@ "unit": "degC" } } - ] - }, - "analyst": "TapeStation User", - "analytical method identifier": "RNA", - "method version": "5.1.0.47235", - "experimental data identifier": "\\\\Mac\\Home\\Documents\\Agilent\\TapeStation Data\\Demo Files\\Eukaryotic RNA-Plate-64.RNA" + ], + "analytical method identifier": "RNA", + "method version": "5.1.0.47235", + "experimental data identifier": "\\\\Mac\\Home\\Documents\\Agilent\\TapeStation Data\\Demo Files\\Eukaryotic RNA-Plate-64.RNA" + } }, { + "analyst": "TapeStation User", "measurement aggregate document": { "measurement document": [ { - "measurement time": "2015-07-21T08:14:29-05:00", - "measurement identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_255", "device control aggregate document": { "device control document": [ { "device type": "electrophoresis device", - "detection type": "fluorescence" + "detection type": "fluorescence", + "device identifier": "32768" } ] }, @@ -1694,22 +1610,14 @@ "description": "Rat Kidney 200 ng/µl", "location identifier": "C2" }, + "measurement identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_255", + "measurement time": "2015-07-21T08:14:29-05:00", "processed data aggregate document": { "processed data document": [ { "peak list": { "peak": [ { - "peak identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_257", - "peak name": "-", - "peak height": { - "value": 2258.088, - "unit": "RFU" - }, - "peak start": { - "value": 16.0, - "unit": "#" - }, "peak end": { "value": 39.0, "unit": "#" @@ -1718,31 +1626,23 @@ "value": 25.0, "unit": "#" }, + "peak name": "-", + "identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_257", + "peak height": { + "value": 2258.088, + "unit": "RFU" + }, "peak area": { "value": 1.0, "unit": "(unitless)" }, - "relative peak area": { - "value": "NaN", - "unit": "%" - }, - "relative corrected peak area": { - "value": "NaN", - "unit": "%" - }, - "comment": "Lower Marker" - }, - { - "peak identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_264", - "peak name": "1", - "peak height": { - "value": 6424.09, - "unit": "RFU" - }, + "comment": "Lower Marker", "peak start": { - "value": 1553.0, + "value": 16.0, "unit": "#" - }, + } + }, + { "peak end": { "value": 2210.0, "unit": "#" @@ -1751,6 +1651,12 @@ "value": 1759.0, "unit": "#" }, + "peak name": "1", + "identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_264", + "peak height": { + "value": 6424.09, + "unit": "RFU" + }, "peak area": { "value": 0.899, "unit": "(unitless)" @@ -1763,19 +1669,13 @@ "value": 26.04, "unit": "%" }, - "comment": "18S" - }, - { - "peak identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_270", - "peak name": "2", - "peak height": { - "value": 11269.562, - "unit": "RFU" - }, + "comment": "18S", "peak start": { - "value": 3118.0, + "value": 1553.0, "unit": "#" - }, + } + }, + { "peak end": { "value": 7561.0, "unit": "#" @@ -1784,6 +1684,12 @@ "value": 4620.0, "unit": "#" }, + "peak name": "2", + "identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_270", + "peak height": { + "value": 11269.562, + "unit": "RFU" + }, "peak area": { "value": 2.554, "unit": "(unitless)" @@ -1796,7 +1702,11 @@ "value": 73.96, "unit": "%" }, - "comment": "28S" + "comment": "28S", + "peak start": { + "value": 3118.0, + "unit": "#" + } } ] } @@ -1808,24 +1718,23 @@ "unit": "degC" } } - ] - }, - "analyst": "TapeStation User", - "analytical method identifier": "RNA", - "method version": "5.1.0.47235", - "experimental data identifier": "\\\\Mac\\Home\\Documents\\Agilent\\TapeStation Data\\Demo Files\\Eukaryotic RNA-Plate-64.RNA" + ], + "analytical method identifier": "RNA", + "method version": "5.1.0.47235", + "experimental data identifier": "\\\\Mac\\Home\\Documents\\Agilent\\TapeStation Data\\Demo Files\\Eukaryotic RNA-Plate-64.RNA" + } }, { + "analyst": "TapeStation User", "measurement aggregate document": { "measurement document": [ { - "measurement time": "2015-07-21T08:14:29-05:00", - "measurement identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_276", "device control aggregate document": { "device control document": [ { "device type": "electrophoresis device", - "detection type": "fluorescence" + "detection type": "fluorescence", + "device identifier": "32768" } ] }, @@ -1834,22 +1743,14 @@ "description": "Rat Kidney 200 ng/µl", "location identifier": "D2" }, + "measurement identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_276", + "measurement time": "2015-07-21T08:14:29-05:00", "processed data aggregate document": { "processed data document": [ { "peak list": { "peak": [ { - "peak identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_278", - "peak name": "-", - "peak height": { - "value": 2261.706, - "unit": "RFU" - }, - "peak start": { - "value": 17.0, - "unit": "#" - }, "peak end": { "value": 38.0, "unit": "#" @@ -1858,31 +1759,23 @@ "value": 25.0, "unit": "#" }, + "peak name": "-", + "identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_278", + "peak height": { + "value": 2261.706, + "unit": "RFU" + }, "peak area": { "value": 1.0, "unit": "(unitless)" }, - "relative peak area": { - "value": "NaN", - "unit": "%" - }, - "relative corrected peak area": { - "value": "NaN", - "unit": "%" - }, - "comment": "Lower Marker" - }, - { - "peak identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_285", - "peak name": "1", - "peak height": { - "value": 6014.634, - "unit": "RFU" - }, + "comment": "Lower Marker", "peak start": { - "value": 1649.0, + "value": 17.0, "unit": "#" - }, + } + }, + { "peak end": { "value": 2340.0, "unit": "#" @@ -1891,6 +1784,12 @@ "value": 1845.0, "unit": "#" }, + "peak name": "1", + "identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_285", + "peak height": { + "value": 6014.634, + "unit": "RFU" + }, "peak area": { "value": 0.879, "unit": "(unitless)" @@ -1903,19 +1802,13 @@ "value": 26.8, "unit": "%" }, - "comment": "18S" - }, - { - "peak identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_291", - "peak name": "2", - "peak height": { - "value": 10074.528, - "unit": "RFU" - }, + "comment": "18S", "peak start": { - "value": 3379.0, + "value": 1649.0, "unit": "#" - }, + } + }, + { "peak end": { "value": 7880.0, "unit": "#" @@ -1924,6 +1817,12 @@ "value": 4992.0, "unit": "#" }, + "peak name": "2", + "identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_291", + "peak height": { + "value": 10074.528, + "unit": "RFU" + }, "peak area": { "value": 2.399, "unit": "(unitless)" @@ -1936,7 +1835,11 @@ "value": 73.2, "unit": "%" }, - "comment": "28S" + "comment": "28S", + "peak start": { + "value": 3379.0, + "unit": "#" + } } ] } @@ -1948,24 +1851,23 @@ "unit": "degC" } } - ] - }, - "analyst": "TapeStation User", - "analytical method identifier": "RNA", - "method version": "5.1.0.47235", - "experimental data identifier": "\\\\Mac\\Home\\Documents\\Agilent\\TapeStation Data\\Demo Files\\Eukaryotic RNA-Plate-64.RNA" + ], + "analytical method identifier": "RNA", + "method version": "5.1.0.47235", + "experimental data identifier": "\\\\Mac\\Home\\Documents\\Agilent\\TapeStation Data\\Demo Files\\Eukaryotic RNA-Plate-64.RNA" + } }, { + "analyst": "TapeStation User", "measurement aggregate document": { "measurement document": [ { - "measurement time": "2015-07-21T08:14:29-05:00", - "measurement identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_297", "device control aggregate document": { "device control document": [ { "device type": "electrophoresis device", - "detection type": "fluorescence" + "detection type": "fluorescence", + "device identifier": "32768" } ] }, @@ -1974,96 +1876,86 @@ "description": "Rat Kidney 100 ng/µl", "location identifier": "E2" }, + "measurement identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_297", + "measurement time": "2015-07-21T08:14:29-05:00", "processed data aggregate document": { "processed data document": [ { "peak list": { "peak": [ { - "peak identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_299", + "peak end": { + "value": 39.0, + "unit": "#" + }, + "peak position": { + "value": 25.0, + "unit": "#" + }, "peak name": "-", + "identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_299", "peak height": { "value": 4477.412, "unit": "RFU" }, + "peak area": { + "value": 1.0, + "unit": "(unitless)" + }, + "comment": "Lower Marker", "peak start": { "value": 17.0, "unit": "#" - }, + } + }, + { "peak end": { - "value": 39.0, + "value": 2238.0, "unit": "#" }, "peak position": { - "value": 25.0, + "value": 1778.0, "unit": "#" }, + "peak name": "1", + "identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_306", + "peak height": { + "value": 5855.116, + "unit": "RFU" + }, "peak area": { - "value": 1.0, + "value": 0.414, "unit": "(unitless)" }, "relative peak area": { - "value": "NaN", + "value": 19.69, "unit": "%" }, "relative corrected peak area": { - "value": "NaN", + "value": 32.96, "unit": "%" }, - "comment": "Lower Marker" + "comment": "18S", + "peak start": { + "value": 1524.0, + "unit": "#" + } }, { - "peak identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_306", - "peak name": "1", - "peak height": { - "value": 5855.116, - "unit": "RFU" - }, - "peak start": { - "value": 1524.0, - "unit": "#" - }, "peak end": { - "value": 2238.0, + "value": 8021.0, "unit": "#" }, "peak position": { - "value": 1778.0, + "value": 5222.0, "unit": "#" }, - "peak area": { - "value": 0.414, - "unit": "(unitless)" - }, - "relative peak area": { - "value": 19.69, - "unit": "%" - }, - "relative corrected peak area": { - "value": 32.96, - "unit": "%" - }, - "comment": "18S" - }, - { - "peak identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_312", "peak name": "2", + "identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_312", "peak height": { "value": 8104.585, "unit": "RFU" }, - "peak start": { - "value": 4026.0, - "unit": "#" - }, - "peak end": { - "value": 8021.0, - "unit": "#" - }, - "peak position": { - "value": 5222.0, - "unit": "#" - }, "peak area": { "value": 0.841, "unit": "(unitless)" @@ -2076,7 +1968,11 @@ "value": 67.04, "unit": "%" }, - "comment": "28S" + "comment": "28S", + "peak start": { + "value": 4026.0, + "unit": "#" + } } ] } @@ -2088,24 +1984,23 @@ "unit": "degC" } } - ] - }, - "analyst": "TapeStation User", - "analytical method identifier": "RNA", - "method version": "5.1.0.47235", - "experimental data identifier": "\\\\Mac\\Home\\Documents\\Agilent\\TapeStation Data\\Demo Files\\Eukaryotic RNA-Plate-64.RNA" + ], + "analytical method identifier": "RNA", + "method version": "5.1.0.47235", + "experimental data identifier": "\\\\Mac\\Home\\Documents\\Agilent\\TapeStation Data\\Demo Files\\Eukaryotic RNA-Plate-64.RNA" + } }, { + "analyst": "TapeStation User", "measurement aggregate document": { "measurement document": [ { - "measurement time": "2015-07-21T08:14:29-05:00", - "measurement identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_318", "device control aggregate document": { "device control document": [ { "device type": "electrophoresis device", - "detection type": "fluorescence" + "detection type": "fluorescence", + "device identifier": "32768" } ] }, @@ -2114,22 +2009,14 @@ "description": "Rat Kidney 100 ng/µl", "location identifier": "F2" }, + "measurement identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_318", + "measurement time": "2015-07-21T08:14:29-05:00", "processed data aggregate document": { "processed data document": [ { "peak list": { "peak": [ { - "peak identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_320", - "peak name": "-", - "peak height": { - "value": 4402.32, - "unit": "RFU" - }, - "peak start": { - "value": 17.0, - "unit": "#" - }, "peak end": { "value": 39.0, "unit": "#" @@ -2138,31 +2025,23 @@ "value": 25.0, "unit": "#" }, + "peak name": "-", + "identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_320", + "peak height": { + "value": 4402.32, + "unit": "RFU" + }, "peak area": { "value": 1.0, "unit": "(unitless)" }, - "relative peak area": { - "value": "NaN", - "unit": "%" - }, - "relative corrected peak area": { - "value": "NaN", - "unit": "%" - }, - "comment": "Lower Marker" - }, - { - "peak identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_327", - "peak name": "1", - "peak height": { - "value": 5552.969, - "unit": "RFU" - }, + "comment": "Lower Marker", "peak start": { - "value": 1294.0, + "value": 17.0, "unit": "#" - }, + } + }, + { "peak end": { "value": 2142.0, "unit": "#" @@ -2171,6 +2050,12 @@ "value": 1759.0, "unit": "#" }, + "peak name": "1", + "identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_327", + "peak height": { + "value": 5552.969, + "unit": "RFU" + }, "peak area": { "value": 0.425, "unit": "(unitless)" @@ -2183,19 +2068,13 @@ "value": 32.03, "unit": "%" }, - "comment": "18S" - }, - { - "peak identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_333", - "peak name": "2", - "peak height": { - "value": 7707.502, - "unit": "RFU" - }, + "comment": "18S", "peak start": { - "value": 3285.0, + "value": 1294.0, "unit": "#" - }, + } + }, + { "peak end": { "value": 7964.0, "unit": "#" @@ -2204,6 +2083,12 @@ "value": 5125.0, "unit": "#" }, + "peak name": "2", + "identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_333", + "peak height": { + "value": 7707.502, + "unit": "RFU" + }, "peak area": { "value": 0.902, "unit": "(unitless)" @@ -2216,7 +2101,11 @@ "value": 67.97, "unit": "%" }, - "comment": "28S" + "comment": "28S", + "peak start": { + "value": 3285.0, + "unit": "#" + } } ] } @@ -2228,24 +2117,23 @@ "unit": "degC" } } - ] - }, - "analyst": "TapeStation User", - "analytical method identifier": "RNA", - "method version": "5.1.0.47235", - "experimental data identifier": "\\\\Mac\\Home\\Documents\\Agilent\\TapeStation Data\\Demo Files\\Eukaryotic RNA-Plate-64.RNA" + ], + "analytical method identifier": "RNA", + "method version": "5.1.0.47235", + "experimental data identifier": "\\\\Mac\\Home\\Documents\\Agilent\\TapeStation Data\\Demo Files\\Eukaryotic RNA-Plate-64.RNA" + } }, { + "analyst": "TapeStation User", "measurement aggregate document": { "measurement document": [ { - "measurement time": "2015-07-21T08:14:29-05:00", - "measurement identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_339", "device control aggregate document": { "device control document": [ { "device type": "electrophoresis device", - "detection type": "fluorescence" + "detection type": "fluorescence", + "device identifier": "32768" } ] }, @@ -2254,22 +2142,14 @@ "description": "Rat Kidney 50 ng/µl", "location identifier": "G2" }, + "measurement identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_339", + "measurement time": "2015-07-21T08:14:29-05:00", "processed data aggregate document": { "processed data document": [ { "peak list": { "peak": [ { - "peak identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_341", - "peak name": "-", - "peak height": { - "value": 5660.071, - "unit": "RFU" - }, - "peak start": { - "value": 16.0, - "unit": "#" - }, "peak end": { "value": 39.0, "unit": "#" @@ -2278,31 +2158,23 @@ "value": 25.0, "unit": "#" }, + "peak name": "-", + "identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_341", + "peak height": { + "value": 5660.071, + "unit": "RFU" + }, "peak area": { "value": 1.0, "unit": "(unitless)" }, - "relative peak area": { - "value": "NaN", - "unit": "%" - }, - "relative corrected peak area": { - "value": "NaN", - "unit": "%" - }, - "comment": "Lower Marker" - }, - { - "peak identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_348", - "peak name": "1", - "peak height": { - "value": 3803.042, - "unit": "RFU" - }, + "comment": "Lower Marker", "peak start": { - "value": 1443.0, + "value": 16.0, "unit": "#" - }, + } + }, + { "peak end": { "value": 2096.0, "unit": "#" @@ -2311,6 +2183,12 @@ "value": 1753.0, "unit": "#" }, + "peak name": "1", + "identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_348", + "peak height": { + "value": 3803.042, + "unit": "RFU" + }, "peak area": { "value": 0.196, "unit": "(unitless)" @@ -2323,19 +2201,13 @@ "value": 34.12, "unit": "%" }, - "comment": "18S" - }, - { - "peak identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_354", - "peak name": "2", - "peak height": { - "value": 4624.571, - "unit": "RFU" - }, + "comment": "18S", "peak start": { - "value": 4001.0, + "value": 1443.0, "unit": "#" - }, + } + }, + { "peak end": { "value": 9295.0, "unit": "#" @@ -2344,6 +2216,12 @@ "value": 5710.0, "unit": "#" }, + "peak name": "2", + "identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_354", + "peak height": { + "value": 4624.571, + "unit": "RFU" + }, "peak area": { "value": 0.379, "unit": "(unitless)" @@ -2356,7 +2234,11 @@ "value": 65.88, "unit": "%" }, - "comment": "28S" + "comment": "28S", + "peak start": { + "value": 4001.0, + "unit": "#" + } } ] } @@ -2368,24 +2250,23 @@ "unit": "degC" } } - ] - }, - "analyst": "TapeStation User", - "analytical method identifier": "RNA", - "method version": "5.1.0.47235", - "experimental data identifier": "\\\\Mac\\Home\\Documents\\Agilent\\TapeStation Data\\Demo Files\\Eukaryotic RNA-Plate-64.RNA" + ], + "analytical method identifier": "RNA", + "method version": "5.1.0.47235", + "experimental data identifier": "\\\\Mac\\Home\\Documents\\Agilent\\TapeStation Data\\Demo Files\\Eukaryotic RNA-Plate-64.RNA" + } }, { + "analyst": "TapeStation User", "measurement aggregate document": { "measurement document": [ { - "measurement time": "2015-07-21T08:14:29-05:00", - "measurement identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_360", "device control aggregate document": { "device control document": [ { "device type": "electrophoresis device", - "detection type": "fluorescence" + "detection type": "fluorescence", + "device identifier": "32768" } ] }, @@ -2394,22 +2275,14 @@ "description": "Rat Kidney 50 ng/µl", "location identifier": "H2" }, + "measurement identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_360", + "measurement time": "2015-07-21T08:14:29-05:00", "processed data aggregate document": { "processed data document": [ { "peak list": { "peak": [ { - "peak identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_362", - "peak name": "-", - "peak height": { - "value": 4541.639, - "unit": "RFU" - }, - "peak start": { - "value": 17.0, - "unit": "#" - }, "peak end": { "value": 38.0, "unit": "#" @@ -2418,31 +2291,23 @@ "value": 25.0, "unit": "#" }, + "peak name": "-", + "identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_362", + "peak height": { + "value": 4541.639, + "unit": "RFU" + }, "peak area": { "value": 1.0, "unit": "(unitless)" }, - "relative peak area": { - "value": "NaN", - "unit": "%" - }, - "relative corrected peak area": { - "value": "NaN", - "unit": "%" - }, - "comment": "Lower Marker" - }, - { - "peak identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_369", - "peak name": "1", - "peak height": { - "value": 3162.066, - "unit": "RFU" - }, + "comment": "Lower Marker", "peak start": { - "value": 1271.0, + "value": 17.0, "unit": "#" - }, + } + }, + { "peak end": { "value": 2106.0, "unit": "#" @@ -2451,6 +2316,12 @@ "value": 1758.0, "unit": "#" }, + "peak name": "1", + "identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_369", + "peak height": { + "value": 3162.066, + "unit": "RFU" + }, "peak area": { "value": 0.257, "unit": "(unitless)" @@ -2463,19 +2334,13 @@ "value": 34.26, "unit": "%" }, - "comment": "18S" - }, - { - "peak identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_375", - "peak name": "2", - "peak height": { - "value": 3922.37, - "unit": "RFU" - }, + "comment": "18S", "peak start": { - "value": 4020.0, + "value": 1271.0, "unit": "#" - }, + } + }, + { "peak end": { "value": 9794.0, "unit": "#" @@ -2484,6 +2349,12 @@ "value": 5712.0, "unit": "#" }, + "peak name": "2", + "identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_375", + "peak height": { + "value": 3922.37, + "unit": "RFU" + }, "peak area": { "value": 0.493, "unit": "(unitless)" @@ -2496,7 +2367,11 @@ "value": 65.74, "unit": "%" }, - "comment": "28S" + "comment": "28S", + "peak start": { + "value": 4020.0, + "unit": "#" + } } ] } @@ -2508,24 +2383,23 @@ "unit": "degC" } } - ] - }, - "analyst": "TapeStation User", - "analytical method identifier": "RNA", - "method version": "5.1.0.47235", - "experimental data identifier": "\\\\Mac\\Home\\Documents\\Agilent\\TapeStation Data\\Demo Files\\Eukaryotic RNA-Plate-64.RNA" + ], + "analytical method identifier": "RNA", + "method version": "5.1.0.47235", + "experimental data identifier": "\\\\Mac\\Home\\Documents\\Agilent\\TapeStation Data\\Demo Files\\Eukaryotic RNA-Plate-64.RNA" + } }, { + "analyst": "TapeStation User", "measurement aggregate document": { "measurement document": [ { - "measurement time": "2015-07-21T08:14:29-05:00", - "measurement identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_381", "device control aggregate document": { "device control document": [ { "device type": "electrophoresis device", - "detection type": "fluorescence" + "detection type": "fluorescence", + "device identifier": "32768" } ] }, @@ -2534,22 +2408,14 @@ "description": "Rat Kidney 0 min at 94ºC", "location identifier": "A3" }, + "measurement identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_381", + "measurement time": "2015-07-21T08:14:29-05:00", "processed data aggregate document": { "processed data document": [ { "peak list": { "peak": [ { - "peak identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_383", - "peak name": "-", - "peak height": { - "value": 2487.42, - "unit": "RFU" - }, - "peak start": { - "value": 17.0, - "unit": "#" - }, "peak end": { "value": 38.0, "unit": "#" @@ -2558,31 +2424,23 @@ "value": 25.0, "unit": "#" }, + "peak name": "-", + "identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_383", + "peak height": { + "value": 2487.42, + "unit": "RFU" + }, "peak area": { "value": 1.0, "unit": "(unitless)" }, - "relative peak area": { - "value": "NaN", - "unit": "%" - }, - "relative corrected peak area": { - "value": "NaN", - "unit": "%" - }, - "comment": "Lower Marker" - }, - { - "peak identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_390", - "peak name": "1", - "peak height": { - "value": 6147.692, - "unit": "RFU" - }, + "comment": "Lower Marker", "peak start": { - "value": 1570.0, + "value": 17.0, "unit": "#" - }, + } + }, + { "peak end": { "value": 2192.0, "unit": "#" @@ -2591,6 +2449,12 @@ "value": 1773.0, "unit": "#" }, + "peak name": "1", + "identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_390", + "peak height": { + "value": 6147.692, + "unit": "RFU" + }, "peak area": { "value": 0.87, "unit": "(unitless)" @@ -2603,19 +2467,13 @@ "value": 24.97, "unit": "%" }, - "comment": "18S" - }, - { - "peak identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_396", - "peak name": "2", - "peak height": { - "value": 10470.189, - "unit": "RFU" - }, + "comment": "18S", "peak start": { - "value": 3190.0, + "value": 1570.0, "unit": "#" - }, + } + }, + { "peak end": { "value": 7871.0, "unit": "#" @@ -2624,6 +2482,12 @@ "value": 4578.0, "unit": "#" }, + "peak name": "2", + "identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_396", + "peak height": { + "value": 10470.189, + "unit": "RFU" + }, "peak area": { "value": 2.615, "unit": "(unitless)" @@ -2636,7 +2500,11 @@ "value": 75.03, "unit": "%" }, - "comment": "28S" + "comment": "28S", + "peak start": { + "value": 3190.0, + "unit": "#" + } } ] } @@ -2648,24 +2516,23 @@ "unit": "degC" } } - ] - }, - "analyst": "TapeStation User", - "analytical method identifier": "RNA", - "method version": "5.1.0.47235", - "experimental data identifier": "\\\\Mac\\Home\\Documents\\Agilent\\TapeStation Data\\Demo Files\\Eukaryotic RNA-Plate-64.RNA" + ], + "analytical method identifier": "RNA", + "method version": "5.1.0.47235", + "experimental data identifier": "\\\\Mac\\Home\\Documents\\Agilent\\TapeStation Data\\Demo Files\\Eukaryotic RNA-Plate-64.RNA" + } }, { + "analyst": "TapeStation User", "measurement aggregate document": { "measurement document": [ { - "measurement time": "2015-07-21T08:14:29-05:00", - "measurement identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_402", "device control aggregate document": { "device control document": [ { "device type": "electrophoresis device", - "detection type": "fluorescence" + "detection type": "fluorescence", + "device identifier": "32768" } ] }, @@ -2674,22 +2541,14 @@ "description": "Rat Kidney 2.5 min at 94ºC", "location identifier": "B3" }, + "measurement identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_402", + "measurement time": "2015-07-21T08:14:29-05:00", "processed data aggregate document": { "processed data document": [ { "peak list": { "peak": [ { - "peak identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_404", - "peak name": "-", - "peak height": { - "value": 2428.655, - "unit": "RFU" - }, - "peak start": { - "value": 17.0, - "unit": "#" - }, "peak end": { "value": 38.0, "unit": "#" @@ -2698,31 +2557,23 @@ "value": 25.0, "unit": "#" }, + "peak name": "-", + "identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_404", + "peak height": { + "value": 2428.655, + "unit": "RFU" + }, "peak area": { "value": 1.0, "unit": "(unitless)" }, - "relative peak area": { - "value": "NaN", - "unit": "%" - }, - "relative corrected peak area": { - "value": "NaN", - "unit": "%" - }, - "comment": "Lower Marker" - }, - { - "peak identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_411", - "peak name": "1", - "peak height": { - "value": 5646.978, - "unit": "RFU" - }, + "comment": "Lower Marker", "peak start": { - "value": 1286.0, + "value": 17.0, "unit": "#" - }, + } + }, + { "peak end": { "value": 2153.0, "unit": "#" @@ -2731,6 +2582,12 @@ "value": 1795.0, "unit": "#" }, + "peak name": "1", + "identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_411", + "peak height": { + "value": 5646.978, + "unit": "RFU" + }, "peak area": { "value": 1.223, "unit": "(unitless)" @@ -2743,19 +2600,13 @@ "value": 38.42, "unit": "%" }, - "comment": "18S" - }, - { - "peak identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_417", - "peak name": "2", - "peak height": { - "value": 5995.291, - "unit": "RFU" - }, + "comment": "18S", "peak start": { - "value": 2912.0, + "value": 1286.0, "unit": "#" - }, + } + }, + { "peak end": { "value": 7715.0, "unit": "#" @@ -2764,6 +2615,12 @@ "value": 4795.0, "unit": "#" }, + "peak name": "2", + "identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_417", + "peak height": { + "value": 5995.291, + "unit": "RFU" + }, "peak area": { "value": 1.96, "unit": "(unitless)" @@ -2776,7 +2633,11 @@ "value": 61.58, "unit": "%" }, - "comment": "28S" + "comment": "28S", + "peak start": { + "value": 2912.0, + "unit": "#" + } } ] } @@ -2788,24 +2649,23 @@ "unit": "degC" } } - ] - }, - "analyst": "TapeStation User", - "analytical method identifier": "RNA", - "method version": "5.1.0.47235", - "experimental data identifier": "\\\\Mac\\Home\\Documents\\Agilent\\TapeStation Data\\Demo Files\\Eukaryotic RNA-Plate-64.RNA" + ], + "analytical method identifier": "RNA", + "method version": "5.1.0.47235", + "experimental data identifier": "\\\\Mac\\Home\\Documents\\Agilent\\TapeStation Data\\Demo Files\\Eukaryotic RNA-Plate-64.RNA" + } }, { + "analyst": "TapeStation User", "measurement aggregate document": { "measurement document": [ { - "measurement time": "2015-07-21T08:14:29-05:00", - "measurement identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_423", "device control aggregate document": { "device control document": [ { "device type": "electrophoresis device", - "detection type": "fluorescence" + "detection type": "fluorescence", + "device identifier": "32768" } ] }, @@ -2814,22 +2674,14 @@ "description": "Rat Kidney 5 min at 94ºC", "location identifier": "C3" }, + "measurement identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_423", + "measurement time": "2015-07-21T08:14:29-05:00", "processed data aggregate document": { "processed data document": [ { "peak list": { "peak": [ { - "peak identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_425", - "peak name": "-", - "peak height": { - "value": 2784.816, - "unit": "RFU" - }, - "peak start": { - "value": 17.0, - "unit": "#" - }, "peak end": { "value": 38.0, "unit": "#" @@ -2838,31 +2690,23 @@ "value": 25.0, "unit": "#" }, + "peak name": "-", + "identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_425", + "peak height": { + "value": 2784.816, + "unit": "RFU" + }, "peak area": { "value": 1.0, "unit": "(unitless)" }, - "relative peak area": { - "value": "NaN", - "unit": "%" - }, - "relative corrected peak area": { - "value": "NaN", - "unit": "%" - }, - "comment": "Lower Marker" - }, - { - "peak identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_432", - "peak name": "1", - "peak height": { - "value": 5583.903, - "unit": "RFU" - }, + "comment": "Lower Marker", "peak start": { - "value": 1256.0, + "value": 17.0, "unit": "#" - }, + } + }, + { "peak end": { "value": 2113.0, "unit": "#" @@ -2871,6 +2715,12 @@ "value": 1728.0, "unit": "#" }, + "peak name": "1", + "identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_432", + "peak height": { + "value": 5583.903, + "unit": "RFU" + }, "peak area": { "value": 1.187, "unit": "(unitless)" @@ -2883,19 +2733,13 @@ "value": 43.84, "unit": "%" }, - "comment": "18S" - }, - { - "peak identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_438", - "peak name": "2", - "peak height": { - "value": 4221.034, - "unit": "RFU" - }, + "comment": "18S", "peak start": { - "value": 2645.0, + "value": 1256.0, "unit": "#" - }, + } + }, + { "peak end": { "value": 7211.0, "unit": "#" @@ -2904,6 +2748,12 @@ "value": 4685.0, "unit": "#" }, + "peak name": "2", + "identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_438", + "peak height": { + "value": 4221.034, + "unit": "RFU" + }, "peak area": { "value": 1.521, "unit": "(unitless)" @@ -2916,7 +2766,11 @@ "value": 56.16, "unit": "%" }, - "comment": "28S" + "comment": "28S", + "peak start": { + "value": 2645.0, + "unit": "#" + } } ] } @@ -2928,24 +2782,23 @@ "unit": "degC" } } - ] - }, - "analyst": "TapeStation User", - "analytical method identifier": "RNA", - "method version": "5.1.0.47235", - "experimental data identifier": "\\\\Mac\\Home\\Documents\\Agilent\\TapeStation Data\\Demo Files\\Eukaryotic RNA-Plate-64.RNA" + ], + "analytical method identifier": "RNA", + "method version": "5.1.0.47235", + "experimental data identifier": "\\\\Mac\\Home\\Documents\\Agilent\\TapeStation Data\\Demo Files\\Eukaryotic RNA-Plate-64.RNA" + } }, { + "analyst": "TapeStation User", "measurement aggregate document": { "measurement document": [ { - "measurement time": "2015-07-21T08:14:29-05:00", - "measurement identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_444", "device control aggregate document": { "device control document": [ { "device type": "electrophoresis device", - "detection type": "fluorescence" + "detection type": "fluorescence", + "device identifier": "32768" } ] }, @@ -2954,22 +2807,14 @@ "description": "Rat Kidney 10 min at 94ºC The upper ribosomal fragment has degraded", "location identifier": "D3" }, + "measurement identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_444", + "measurement time": "2015-07-21T08:14:29-05:00", "processed data aggregate document": { "processed data document": [ { "peak list": { "peak": [ { - "peak identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_446", - "peak name": "-", - "peak height": { - "value": 2878.372, - "unit": "RFU" - }, - "peak start": { - "value": 17.0, - "unit": "#" - }, "peak end": { "value": 38.0, "unit": "#" @@ -2978,31 +2823,23 @@ "value": 25.0, "unit": "#" }, + "peak name": "-", + "identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_446", + "peak height": { + "value": 2878.372, + "unit": "RFU" + }, "peak area": { "value": 1.0, "unit": "(unitless)" }, - "relative peak area": { - "value": "NaN", - "unit": "%" - }, - "relative corrected peak area": { - "value": "NaN", - "unit": "%" - }, - "comment": "Lower Marker" - }, - { - "peak identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_453", - "peak name": "1", - "peak height": { - "value": 4606.247, - "unit": "RFU" - }, + "comment": "Lower Marker", "peak start": { - "value": 1482.0, + "value": 17.0, "unit": "#" - }, + } + }, + { "peak end": { "value": 2976.0, "unit": "#" @@ -3011,6 +2848,12 @@ "value": 1706.0, "unit": "#" }, + "peak name": "1", + "identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_453", + "peak height": { + "value": 4606.247, + "unit": "RFU" + }, "peak area": { "value": 1.365, "unit": "(unitless)" @@ -3023,19 +2866,13 @@ "value": 79.61, "unit": "%" }, - "comment": "18S" - }, - { - "peak identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_459", - "peak name": "2", - "peak height": { - "value": 1860.827, - "unit": "RFU" - }, + "comment": "18S", "peak start": { - "value": 2976.0, + "value": 1482.0, "unit": "#" - }, + } + }, + { "peak end": { "value": 4316.0, "unit": "#" @@ -3044,8 +2881,14 @@ "value": 3069.0, "unit": "#" }, - "peak area": { - "value": 0.35, + "peak name": "2", + "identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_459", + "peak height": { + "value": 1860.827, + "unit": "RFU" + }, + "peak area": { + "value": 0.35, "unit": "(unitless)" }, "relative peak area": { @@ -3056,7 +2899,11 @@ "value": 20.39, "unit": "%" }, - "comment": "28S" + "comment": "28S", + "peak start": { + "value": 2976.0, + "unit": "#" + } } ] } @@ -3068,24 +2915,23 @@ "unit": "degC" } } - ] - }, - "analyst": "TapeStation User", - "analytical method identifier": "RNA", - "method version": "5.1.0.47235", - "experimental data identifier": "\\\\Mac\\Home\\Documents\\Agilent\\TapeStation Data\\Demo Files\\Eukaryotic RNA-Plate-64.RNA" + ], + "analytical method identifier": "RNA", + "method version": "5.1.0.47235", + "experimental data identifier": "\\\\Mac\\Home\\Documents\\Agilent\\TapeStation Data\\Demo Files\\Eukaryotic RNA-Plate-64.RNA" + } }, { + "analyst": "TapeStation User", "measurement aggregate document": { "measurement document": [ { - "measurement time": "2015-07-21T08:14:29-05:00", - "measurement identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_465", "device control aggregate document": { "device control document": [ { "device type": "electrophoresis device", - "detection type": "fluorescence" + "detection type": "fluorescence", + "device identifier": "32768" } ] }, @@ -3094,22 +2940,14 @@ "description": "Rat Kidney 15 min at 94ºC The upper ribosomal fragment has degraded", "location identifier": "E3" }, + "measurement identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_465", + "measurement time": "2015-07-21T08:14:29-05:00", "processed data aggregate document": { "processed data document": [ { "peak list": { "peak": [ { - "peak identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_467", - "peak name": "-", - "peak height": { - "value": 2408.204, - "unit": "RFU" - }, - "peak start": { - "value": 17.0, - "unit": "#" - }, "peak end": { "value": 38.0, "unit": "#" @@ -3118,31 +2956,23 @@ "value": 25.0, "unit": "#" }, + "peak name": "-", + "identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_467", + "peak height": { + "value": 2408.204, + "unit": "RFU" + }, "peak area": { "value": 1.0, "unit": "(unitless)" }, - "relative peak area": { - "value": "NaN", - "unit": "%" - }, - "relative corrected peak area": { - "value": "NaN", - "unit": "%" - }, - "comment": "Lower Marker" - }, - { - "peak identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_474", - "peak name": "1", - "peak height": { - "value": 2839.58, - "unit": "RFU" - }, + "comment": "Lower Marker", "peak start": { - "value": 1686.0, + "value": 17.0, "unit": "#" - }, + } + }, + { "peak end": { "value": 3675.0, "unit": "#" @@ -3151,6 +2981,12 @@ "value": 1799.0, "unit": "#" }, + "peak name": "1", + "identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_474", + "peak height": { + "value": 2839.58, + "unit": "RFU" + }, "peak area": { "value": 0.906, "unit": "(unitless)" @@ -3163,7 +2999,11 @@ "value": 100.0, "unit": "%" }, - "comment": "18S" + "comment": "18S", + "peak start": { + "value": 1686.0, + "unit": "#" + } } ] } @@ -3175,24 +3015,23 @@ "unit": "degC" } } - ] - }, - "analyst": "TapeStation User", - "analytical method identifier": "RNA", - "method version": "5.1.0.47235", - "experimental data identifier": "\\\\Mac\\Home\\Documents\\Agilent\\TapeStation Data\\Demo Files\\Eukaryotic RNA-Plate-64.RNA" + ], + "analytical method identifier": "RNA", + "method version": "5.1.0.47235", + "experimental data identifier": "\\\\Mac\\Home\\Documents\\Agilent\\TapeStation Data\\Demo Files\\Eukaryotic RNA-Plate-64.RNA" + } }, { + "analyst": "TapeStation User", "measurement aggregate document": { "measurement document": [ { - "measurement time": "2015-07-21T08:14:29-05:00", - "measurement identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_480", "device control aggregate document": { "device control document": [ { "device type": "electrophoresis device", - "detection type": "fluorescence" + "detection type": "fluorescence", + "device identifier": "32768" } ] }, @@ -3201,22 +3040,21 @@ "description": "Rat Kidney 20 min at 94ºC The lower ribosomal fragment is missing", "location identifier": "F3" }, + "error aggregate document": { + "error document": [ + { + "error": "!" + } + ] + }, + "measurement identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_480", + "measurement time": "2015-07-21T08:14:29-05:00", "processed data aggregate document": { "processed data document": [ { "peak list": { "peak": [ { - "peak identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_482", - "peak name": "-", - "peak height": { - "value": 2589.326, - "unit": "RFU" - }, - "peak start": { - "value": 17.0, - "unit": "#" - }, "peak end": { "value": 39.0, "unit": "#" @@ -3225,55 +3063,49 @@ "value": 25.0, "unit": "#" }, + "peak name": "-", + "identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_482", + "peak height": { + "value": 2589.326, + "unit": "RFU" + }, "peak area": { "value": 1.0, "unit": "(unitless)" }, - "relative peak area": { - "value": "NaN", - "unit": "%" - }, - "relative corrected peak area": { - "value": "NaN", - "unit": "%" - }, - "comment": "Lower Marker" + "comment": "Lower Marker", + "peak start": { + "value": 17.0, + "unit": "#" + } } ] } } ] }, - "error aggregate document": { - "error document": [ - { - "error": "!" - } - ] - }, "compartment temperature": { "value": 26.0, "unit": "degC" } } - ] - }, - "analyst": "TapeStation User", - "analytical method identifier": "RNA", - "method version": "5.1.0.47235", - "experimental data identifier": "\\\\Mac\\Home\\Documents\\Agilent\\TapeStation Data\\Demo Files\\Eukaryotic RNA-Plate-64.RNA" + ], + "analytical method identifier": "RNA", + "method version": "5.1.0.47235", + "experimental data identifier": "\\\\Mac\\Home\\Documents\\Agilent\\TapeStation Data\\Demo Files\\Eukaryotic RNA-Plate-64.RNA" + } }, { + "analyst": "TapeStation User", "measurement aggregate document": { "measurement document": [ { - "measurement time": "2015-07-21T08:14:29-05:00", - "measurement identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_489", "device control aggregate document": { "device control document": [ { "device type": "electrophoresis device", - "detection type": "fluorescence" + "detection type": "fluorescence", + "device identifier": "32768" } ] }, @@ -3282,22 +3114,21 @@ "description": "Rat Kidney 25 min at 94ºC The lower ribosomal fragment is missing", "location identifier": "G3" }, + "error aggregate document": { + "error document": [ + { + "error": "!" + } + ] + }, + "measurement identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_489", + "measurement time": "2015-07-21T08:14:29-05:00", "processed data aggregate document": { "processed data document": [ { "peak list": { "peak": [ { - "peak identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_491", - "peak name": "-", - "peak height": { - "value": 3139.65, - "unit": "RFU" - }, - "peak start": { - "value": 17.0, - "unit": "#" - }, "peak end": { "value": 39.0, "unit": "#" @@ -3306,55 +3137,49 @@ "value": 25.0, "unit": "#" }, + "peak name": "-", + "identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_491", + "peak height": { + "value": 3139.65, + "unit": "RFU" + }, "peak area": { "value": 1.0, "unit": "(unitless)" }, - "relative peak area": { - "value": "NaN", - "unit": "%" - }, - "relative corrected peak area": { - "value": "NaN", - "unit": "%" - }, - "comment": "Lower Marker" + "comment": "Lower Marker", + "peak start": { + "value": 17.0, + "unit": "#" + } } ] } } ] }, - "error aggregate document": { - "error document": [ - { - "error": "!" - } - ] - }, "compartment temperature": { "value": 26.0, "unit": "degC" } } - ] - }, - "analyst": "TapeStation User", - "analytical method identifier": "RNA", - "method version": "5.1.0.47235", - "experimental data identifier": "\\\\Mac\\Home\\Documents\\Agilent\\TapeStation Data\\Demo Files\\Eukaryotic RNA-Plate-64.RNA" + ], + "analytical method identifier": "RNA", + "method version": "5.1.0.47235", + "experimental data identifier": "\\\\Mac\\Home\\Documents\\Agilent\\TapeStation Data\\Demo Files\\Eukaryotic RNA-Plate-64.RNA" + } }, { + "analyst": "TapeStation User", "measurement aggregate document": { "measurement document": [ { - "measurement time": "2015-07-21T08:14:29-05:00", - "measurement identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_498", "device control aggregate document": { "device control document": [ { "device type": "electrophoresis device", - "detection type": "fluorescence" + "detection type": "fluorescence", + "device identifier": "32768" } ] }, @@ -3363,22 +3188,21 @@ "description": "Rat Kidney 30 min at 94ºC The lower ribosomal fragment is missing", "location identifier": "H3" }, + "error aggregate document": { + "error document": [ + { + "error": "!" + } + ] + }, + "measurement identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_498", + "measurement time": "2015-07-21T08:14:29-05:00", "processed data aggregate document": { "processed data document": [ { "peak list": { "peak": [ { - "peak identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_500", - "peak name": "-", - "peak height": { - "value": 2871.43, - "unit": "RFU" - }, - "peak start": { - "value": 17.0, - "unit": "#" - }, "peak end": { "value": 38.0, "unit": "#" @@ -3387,55 +3211,49 @@ "value": 25.0, "unit": "#" }, + "peak name": "-", + "identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_500", + "peak height": { + "value": 2871.43, + "unit": "RFU" + }, "peak area": { "value": 1.0, "unit": "(unitless)" }, - "relative peak area": { - "value": "NaN", - "unit": "%" - }, - "relative corrected peak area": { - "value": "NaN", - "unit": "%" - }, - "comment": "Lower Marker" + "comment": "Lower Marker", + "peak start": { + "value": 17.0, + "unit": "#" + } } ] } } ] }, - "error aggregate document": { - "error document": [ - { - "error": "!" - } - ] - }, "compartment temperature": { "value": 26.0, "unit": "degC" } } - ] - }, - "analyst": "TapeStation User", - "analytical method identifier": "RNA", - "method version": "5.1.0.47235", - "experimental data identifier": "\\\\Mac\\Home\\Documents\\Agilent\\TapeStation Data\\Demo Files\\Eukaryotic RNA-Plate-64.RNA" + ], + "analytical method identifier": "RNA", + "method version": "5.1.0.47235", + "experimental data identifier": "\\\\Mac\\Home\\Documents\\Agilent\\TapeStation Data\\Demo Files\\Eukaryotic RNA-Plate-64.RNA" + } }, { + "analyst": "TapeStation User", "measurement aggregate document": { "measurement document": [ { - "measurement time": "2015-07-21T08:14:29-05:00", - "measurement identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_507", "device control aggregate document": { "device control document": [ { "device type": "electrophoresis device", - "detection type": "fluorescence" + "detection type": "fluorescence", + "device identifier": "32768" } ] }, @@ -3444,22 +3262,14 @@ "description": "Rat Kidney 0 min at 94ºC", "location identifier": "A4" }, + "measurement identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_507", + "measurement time": "2015-07-21T08:14:29-05:00", "processed data aggregate document": { "processed data document": [ { "peak list": { "peak": [ { - "peak identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_509", - "peak name": "-", - "peak height": { - "value": 2232.99, - "unit": "RFU" - }, - "peak start": { - "value": 17.0, - "unit": "#" - }, "peak end": { "value": 37.0, "unit": "#" @@ -3468,31 +3278,23 @@ "value": 25.0, "unit": "#" }, + "peak name": "-", + "identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_509", + "peak height": { + "value": 2232.99, + "unit": "RFU" + }, "peak area": { "value": 1.0, "unit": "(unitless)" }, - "relative peak area": { - "value": "NaN", - "unit": "%" - }, - "relative corrected peak area": { - "value": "NaN", - "unit": "%" - }, - "comment": "Lower Marker" - }, - { - "peak identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_516", - "peak name": "1", - "peak height": { - "value": 5813.658, - "unit": "RFU" - }, + "comment": "Lower Marker", "peak start": { - "value": 1675.0, + "value": 17.0, "unit": "#" - }, + } + }, + { "peak end": { "value": 2414.0, "unit": "#" @@ -3501,6 +3303,12 @@ "value": 1888.0, "unit": "#" }, + "peak name": "1", + "identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_516", + "peak height": { + "value": 5813.658, + "unit": "RFU" + }, "peak area": { "value": 0.947, "unit": "(unitless)" @@ -3513,19 +3321,13 @@ "value": 26.78, "unit": "%" }, - "comment": "18S" - }, - { - "peak identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_522", - "peak name": "2", - "peak height": { - "value": 9685.28, - "unit": "RFU" - }, + "comment": "18S", "peak start": { - "value": 3463.0, + "value": 1675.0, "unit": "#" - }, + } + }, + { "peak end": { "value": 8004.0, "unit": "#" @@ -3534,6 +3336,12 @@ "value": 5046.0, "unit": "#" }, + "peak name": "2", + "identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_522", + "peak height": { + "value": 9685.28, + "unit": "RFU" + }, "peak area": { "value": 2.59, "unit": "(unitless)" @@ -3546,7 +3354,11 @@ "value": 73.22, "unit": "%" }, - "comment": "28S" + "comment": "28S", + "peak start": { + "value": 3463.0, + "unit": "#" + } } ] } @@ -3558,24 +3370,23 @@ "unit": "degC" } } - ] - }, - "analyst": "TapeStation User", - "analytical method identifier": "RNA", - "method version": "5.1.0.47235", - "experimental data identifier": "\\\\Mac\\Home\\Documents\\Agilent\\TapeStation Data\\Demo Files\\Eukaryotic RNA-Plate-64.RNA" + ], + "analytical method identifier": "RNA", + "method version": "5.1.0.47235", + "experimental data identifier": "\\\\Mac\\Home\\Documents\\Agilent\\TapeStation Data\\Demo Files\\Eukaryotic RNA-Plate-64.RNA" + } }, { + "analyst": "TapeStation User", "measurement aggregate document": { "measurement document": [ { - "measurement time": "2015-07-21T08:14:29-05:00", - "measurement identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_528", "device control aggregate document": { "device control document": [ { "device type": "electrophoresis device", - "detection type": "fluorescence" + "detection type": "fluorescence", + "device identifier": "32768" } ] }, @@ -3584,22 +3395,14 @@ "description": "Rat Kidney 2.5 min at 94ºC", "location identifier": "B4" }, + "measurement identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_528", + "measurement time": "2015-07-21T08:14:29-05:00", "processed data aggregate document": { "processed data document": [ { "peak list": { "peak": [ { - "peak identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_530", - "peak name": "-", - "peak height": { - "value": 2230.512, - "unit": "RFU" - }, - "peak start": { - "value": 17.0, - "unit": "#" - }, "peak end": { "value": 38.0, "unit": "#" @@ -3608,31 +3411,23 @@ "value": 25.0, "unit": "#" }, + "peak name": "-", + "identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_530", + "peak height": { + "value": 2230.512, + "unit": "RFU" + }, "peak area": { "value": 1.0, "unit": "(unitless)" }, - "relative peak area": { - "value": "NaN", - "unit": "%" - }, - "relative corrected peak area": { - "value": "NaN", - "unit": "%" - }, - "comment": "Lower Marker" - }, - { - "peak identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_537", - "peak name": "1", - "peak height": { - "value": 5365.884, - "unit": "RFU" - }, + "comment": "Lower Marker", "peak start": { - "value": 1377.0, + "value": 17.0, "unit": "#" - }, + } + }, + { "peak end": { "value": 2343.0, "unit": "#" @@ -3641,6 +3436,12 @@ "value": 1904.0, "unit": "#" }, + "peak name": "1", + "identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_537", + "peak height": { + "value": 5365.884, + "unit": "RFU" + }, "peak area": { "value": 1.263, "unit": "(unitless)" @@ -3653,19 +3454,13 @@ "value": 38.86, "unit": "%" }, - "comment": "18S" - }, - { - "peak identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_543", - "peak name": "2", - "peak height": { - "value": 5565.636, - "unit": "RFU" - }, + "comment": "18S", "peak start": { - "value": 3076.0, + "value": 1377.0, "unit": "#" - }, + } + }, + { "peak end": { "value": 8062.0, "unit": "#" @@ -3674,6 +3469,12 @@ "value": 5332.0, "unit": "#" }, + "peak name": "2", + "identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_543", + "peak height": { + "value": 5565.636, + "unit": "RFU" + }, "peak area": { "value": 1.987, "unit": "(unitless)" @@ -3686,7 +3487,11 @@ "value": 61.14, "unit": "%" }, - "comment": "28S" + "comment": "28S", + "peak start": { + "value": 3076.0, + "unit": "#" + } } ] } @@ -3698,24 +3503,23 @@ "unit": "degC" } } - ] - }, - "analyst": "TapeStation User", - "analytical method identifier": "RNA", - "method version": "5.1.0.47235", - "experimental data identifier": "\\\\Mac\\Home\\Documents\\Agilent\\TapeStation Data\\Demo Files\\Eukaryotic RNA-Plate-64.RNA" + ], + "analytical method identifier": "RNA", + "method version": "5.1.0.47235", + "experimental data identifier": "\\\\Mac\\Home\\Documents\\Agilent\\TapeStation Data\\Demo Files\\Eukaryotic RNA-Plate-64.RNA" + } }, { + "analyst": "TapeStation User", "measurement aggregate document": { "measurement document": [ { - "measurement time": "2015-07-21T08:14:29-05:00", - "measurement identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_549", "device control aggregate document": { "device control document": [ { "device type": "electrophoresis device", - "detection type": "fluorescence" + "detection type": "fluorescence", + "device identifier": "32768" } ] }, @@ -3724,22 +3528,14 @@ "description": "Rat Kidney 5 min at 94ºC", "location identifier": "C4" }, + "measurement identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_549", + "measurement time": "2015-07-21T08:14:29-05:00", "processed data aggregate document": { "processed data document": [ { "peak list": { "peak": [ { - "peak identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_551", - "peak name": "-", - "peak height": { - "value": 1088.998, - "unit": "RFU" - }, - "peak start": { - "value": 17.0, - "unit": "#" - }, "peak end": { "value": 38.0, "unit": "#" @@ -3748,31 +3544,23 @@ "value": 25.0, "unit": "#" }, + "peak name": "-", + "identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_551", + "peak height": { + "value": 1088.998, + "unit": "RFU" + }, "peak area": { "value": 1.0, "unit": "(unitless)" }, - "relative peak area": { - "value": "NaN", - "unit": "%" - }, - "relative corrected peak area": { - "value": "NaN", - "unit": "%" - }, - "comment": "Lower Marker" - }, - { - "peak identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_558", - "peak name": "1", - "peak height": { - "value": 2491.348, - "unit": "RFU" - }, + "comment": "Lower Marker", "peak start": { - "value": 1394.0, + "value": 17.0, "unit": "#" - }, + } + }, + { "peak end": { "value": 2469.0, "unit": "#" @@ -3781,6 +3569,12 @@ "value": 1980.0, "unit": "#" }, + "peak name": "1", + "identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_558", + "peak height": { + "value": 2491.348, + "unit": "RFU" + }, "peak area": { "value": 1.384, "unit": "(unitless)" @@ -3793,19 +3587,13 @@ "value": 45.58, "unit": "%" }, - "comment": "18S" - }, - { - "peak identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_564", - "peak name": "2", - "peak height": { - "value": 1892.084, - "unit": "RFU" - }, + "comment": "18S", "peak start": { - "value": 3080.0, + "value": 1394.0, "unit": "#" - }, + } + }, + { "peak end": { "value": 8579.0, "unit": "#" @@ -3814,6 +3602,12 @@ "value": 5750.0, "unit": "#" }, + "peak name": "2", + "identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_564", + "peak height": { + "value": 1892.084, + "unit": "RFU" + }, "peak area": { "value": 1.652, "unit": "(unitless)" @@ -3826,7 +3620,11 @@ "value": 54.42, "unit": "%" }, - "comment": "28S" + "comment": "28S", + "peak start": { + "value": 3080.0, + "unit": "#" + } } ] } @@ -3838,24 +3636,23 @@ "unit": "degC" } } - ] - }, - "analyst": "TapeStation User", - "analytical method identifier": "RNA", - "method version": "5.1.0.47235", - "experimental data identifier": "\\\\Mac\\Home\\Documents\\Agilent\\TapeStation Data\\Demo Files\\Eukaryotic RNA-Plate-64.RNA" + ], + "analytical method identifier": "RNA", + "method version": "5.1.0.47235", + "experimental data identifier": "\\\\Mac\\Home\\Documents\\Agilent\\TapeStation Data\\Demo Files\\Eukaryotic RNA-Plate-64.RNA" + } }, { + "analyst": "TapeStation User", "measurement aggregate document": { "measurement document": [ { - "measurement time": "2015-07-21T08:14:29-05:00", - "measurement identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_570", "device control aggregate document": { "device control document": [ { "device type": "electrophoresis device", - "detection type": "fluorescence" + "detection type": "fluorescence", + "device identifier": "32768" } ] }, @@ -3864,22 +3661,14 @@ "description": "Rat Kidney 10 min at 94ºC The upper ribosomal fragment has degraded", "location identifier": "D4" }, + "measurement identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_570", + "measurement time": "2015-07-21T08:14:29-05:00", "processed data aggregate document": { "processed data document": [ { "peak list": { "peak": [ { - "peak identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_572", - "peak name": "-", - "peak height": { - "value": 2504.653, - "unit": "RFU" - }, - "peak start": { - "value": 17.0, - "unit": "#" - }, "peak end": { "value": 39.0, "unit": "#" @@ -3888,31 +3677,23 @@ "value": 25.0, "unit": "#" }, + "peak name": "-", + "identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_572", + "peak height": { + "value": 2504.653, + "unit": "RFU" + }, "peak area": { "value": 1.0, "unit": "(unitless)" }, - "relative peak area": { - "value": "NaN", - "unit": "%" - }, - "relative corrected peak area": { - "value": "NaN", - "unit": "%" - }, - "comment": "Lower Marker" - }, - { - "peak identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_579", - "peak name": "1", - "peak height": { - "value": 3722.802, - "unit": "RFU" - }, + "comment": "Lower Marker", "peak start": { - "value": 1713.0, + "value": 17.0, "unit": "#" - }, + } + }, + { "peak end": { "value": 5019.0, "unit": "#" @@ -3921,31 +3702,31 @@ "value": 1918.0, "unit": "#" }, + "peak name": "1", + "identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_579", + "peak height": { + "value": 3722.802, + "unit": "RFU" + }, "peak area": { "value": 1.487, "unit": "(unitless)" }, "relative peak area": { "value": 34.31, - "unit": "%" - }, - "relative corrected peak area": { - "value": 91.6, - "unit": "%" - }, - "comment": "18S" - }, - { - "peak identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_585", - "peak name": "2", - "peak height": { - "value": 875.197, - "unit": "RFU" + "unit": "%" + }, + "relative corrected peak area": { + "value": 91.6, + "unit": "%" }, + "comment": "18S", "peak start": { - "value": 5214.0, + "value": 1713.0, "unit": "#" - }, + } + }, + { "peak end": { "value": 8349.0, "unit": "#" @@ -3954,6 +3735,12 @@ "value": 5417.0, "unit": "#" }, + "peak name": "2", + "identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_585", + "peak height": { + "value": 875.197, + "unit": "RFU" + }, "peak area": { "value": 0.136, "unit": "(unitless)" @@ -3966,7 +3753,11 @@ "value": 8.4, "unit": "%" }, - "comment": "28S" + "comment": "28S", + "peak start": { + "value": 5214.0, + "unit": "#" + } } ] } @@ -3978,24 +3769,23 @@ "unit": "degC" } } - ] - }, - "analyst": "TapeStation User", - "analytical method identifier": "RNA", - "method version": "5.1.0.47235", - "experimental data identifier": "\\\\Mac\\Home\\Documents\\Agilent\\TapeStation Data\\Demo Files\\Eukaryotic RNA-Plate-64.RNA" + ], + "analytical method identifier": "RNA", + "method version": "5.1.0.47235", + "experimental data identifier": "\\\\Mac\\Home\\Documents\\Agilent\\TapeStation Data\\Demo Files\\Eukaryotic RNA-Plate-64.RNA" + } }, { + "analyst": "TapeStation User", "measurement aggregate document": { "measurement document": [ { - "measurement time": "2015-07-21T08:14:29-05:00", - "measurement identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_591", "device control aggregate document": { "device control document": [ { "device type": "electrophoresis device", - "detection type": "fluorescence" + "detection type": "fluorescence", + "device identifier": "32768" } ] }, @@ -4004,22 +3794,14 @@ "description": "Rat Kidney 15 min at 94ºC The upper ribosomal fragment has degraded; RINe edited", "location identifier": "E4" }, + "measurement identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_591", + "measurement time": "2015-07-21T08:14:29-05:00", "processed data aggregate document": { "processed data document": [ { "peak list": { "peak": [ { - "peak identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_593", - "peak name": "-", - "peak height": { - "value": 2530.402, - "unit": "RFU" - }, - "peak start": { - "value": 17.0, - "unit": "#" - }, "peak end": { "value": 38.0, "unit": "#" @@ -4028,31 +3810,23 @@ "value": 25.0, "unit": "#" }, + "peak name": "-", + "identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_593", + "peak height": { + "value": 2530.402, + "unit": "RFU" + }, "peak area": { "value": 1.0, "unit": "(unitless)" }, - "relative peak area": { - "value": "NaN", - "unit": "%" - }, - "relative corrected peak area": { - "value": "NaN", - "unit": "%" - }, - "comment": "Lower Marker" - }, - { - "peak identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_600", - "peak name": "1", - "peak height": { - "value": 2585.937, - "unit": "RFU" - }, + "comment": "Lower Marker", "peak start": { - "value": 1602.0, + "value": 17.0, "unit": "#" - }, + } + }, + { "peak end": { "value": 2726.0, "unit": "#" @@ -4061,6 +3835,12 @@ "value": 1843.0, "unit": "#" }, + "peak name": "1", + "identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_600", + "peak height": { + "value": 2585.937, + "unit": "RFU" + }, "peak area": { "value": 0.736, "unit": "(unitless)" @@ -4073,7 +3853,11 @@ "value": 100.0, "unit": "%" }, - "comment": "18S edited" + "comment": "18S edited", + "peak start": { + "value": 1602.0, + "unit": "#" + } } ] } @@ -4085,24 +3869,23 @@ "unit": "degC" } } - ] - }, - "analyst": "TapeStation User", - "analytical method identifier": "RNA", - "method version": "5.1.0.47235", - "experimental data identifier": "\\\\Mac\\Home\\Documents\\Agilent\\TapeStation Data\\Demo Files\\Eukaryotic RNA-Plate-64.RNA" + ], + "analytical method identifier": "RNA", + "method version": "5.1.0.47235", + "experimental data identifier": "\\\\Mac\\Home\\Documents\\Agilent\\TapeStation Data\\Demo Files\\Eukaryotic RNA-Plate-64.RNA" + } }, { + "analyst": "TapeStation User", "measurement aggregate document": { "measurement document": [ { - "measurement time": "2015-07-21T08:14:29-05:00", - "measurement identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_606", "device control aggregate document": { "device control document": [ { "device type": "electrophoresis device", - "detection type": "fluorescence" + "detection type": "fluorescence", + "device identifier": "32768" } ] }, @@ -4111,22 +3894,14 @@ "description": "Rat Kidney 20 min at 94ºC The upper ribosomal fragment has degraded", "location identifier": "F4" }, + "measurement identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_606", + "measurement time": "2015-07-21T08:14:29-05:00", "processed data aggregate document": { "processed data document": [ { "peak list": { "peak": [ { - "peak identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_608", - "peak name": "-", - "peak height": { - "value": 2511.444, - "unit": "RFU" - }, - "peak start": { - "value": 17.0, - "unit": "#" - }, "peak end": { "value": 39.0, "unit": "#" @@ -4135,31 +3910,23 @@ "value": 25.0, "unit": "#" }, + "peak name": "-", + "identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_608", + "peak height": { + "value": 2511.444, + "unit": "RFU" + }, "peak area": { "value": 1.0, "unit": "(unitless)" }, - "relative peak area": { - "value": "NaN", - "unit": "%" - }, - "relative corrected peak area": { - "value": "NaN", - "unit": "%" - }, - "comment": "Lower Marker" - }, - { - "peak identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_615", - "peak name": "1", - "peak height": { - "value": 1483.661, - "unit": "RFU" - }, + "comment": "Lower Marker", "peak start": { - "value": 1815.0, + "value": 17.0, "unit": "#" - }, + } + }, + { "peak end": { "value": 3437.0, "unit": "#" @@ -4168,6 +3935,12 @@ "value": 1867.0, "unit": "#" }, + "peak name": "1", + "identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_615", + "peak height": { + "value": 1483.661, + "unit": "RFU" + }, "peak area": { "value": 0.354, "unit": "(unitless)" @@ -4180,7 +3953,11 @@ "value": 100.0, "unit": "%" }, - "comment": "18S" + "comment": "18S", + "peak start": { + "value": 1815.0, + "unit": "#" + } } ] } @@ -4192,24 +3969,23 @@ "unit": "degC" } } - ] - }, - "analyst": "TapeStation User", - "analytical method identifier": "RNA", - "method version": "5.1.0.47235", - "experimental data identifier": "\\\\Mac\\Home\\Documents\\Agilent\\TapeStation Data\\Demo Files\\Eukaryotic RNA-Plate-64.RNA" + ], + "analytical method identifier": "RNA", + "method version": "5.1.0.47235", + "experimental data identifier": "\\\\Mac\\Home\\Documents\\Agilent\\TapeStation Data\\Demo Files\\Eukaryotic RNA-Plate-64.RNA" + } }, { + "analyst": "TapeStation User", "measurement aggregate document": { "measurement document": [ { - "measurement time": "2015-07-21T08:14:29-05:00", - "measurement identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_621", "device control aggregate document": { "device control document": [ { "device type": "electrophoresis device", - "detection type": "fluorescence" + "detection type": "fluorescence", + "device identifier": "32768" } ] }, @@ -4218,22 +3994,21 @@ "description": "Rat Kidney 25 min at 94ºC The lower ribosomal fragment is missing", "location identifier": "G4" }, + "error aggregate document": { + "error document": [ + { + "error": "!" + } + ] + }, + "measurement identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_621", + "measurement time": "2015-07-21T08:14:29-05:00", "processed data aggregate document": { "processed data document": [ { "peak list": { "peak": [ { - "peak identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_623", - "peak name": "-", - "peak height": { - "value": 2694.141, - "unit": "RFU" - }, - "peak start": { - "value": 17.0, - "unit": "#" - }, "peak end": { "value": 39.0, "unit": "#" @@ -4242,55 +4017,49 @@ "value": 25.0, "unit": "#" }, + "peak name": "-", + "identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_623", + "peak height": { + "value": 2694.141, + "unit": "RFU" + }, "peak area": { "value": 1.0, "unit": "(unitless)" }, - "relative peak area": { - "value": "NaN", - "unit": "%" - }, - "relative corrected peak area": { - "value": "NaN", - "unit": "%" - }, - "comment": "Lower Marker" + "comment": "Lower Marker", + "peak start": { + "value": 17.0, + "unit": "#" + } } ] } } ] }, - "error aggregate document": { - "error document": [ - { - "error": "!" - } - ] - }, "compartment temperature": { "value": 26.0, "unit": "degC" } } - ] - }, - "analyst": "TapeStation User", - "analytical method identifier": "RNA", - "method version": "5.1.0.47235", - "experimental data identifier": "\\\\Mac\\Home\\Documents\\Agilent\\TapeStation Data\\Demo Files\\Eukaryotic RNA-Plate-64.RNA" + ], + "analytical method identifier": "RNA", + "method version": "5.1.0.47235", + "experimental data identifier": "\\\\Mac\\Home\\Documents\\Agilent\\TapeStation Data\\Demo Files\\Eukaryotic RNA-Plate-64.RNA" + } }, { + "analyst": "TapeStation User", "measurement aggregate document": { "measurement document": [ { - "measurement time": "2015-07-21T08:14:29-05:00", - "measurement identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_630", "device control aggregate document": { "device control document": [ { "device type": "electrophoresis device", - "detection type": "fluorescence" + "detection type": "fluorescence", + "device identifier": "32768" } ] }, @@ -4299,22 +4068,21 @@ "description": "Rat Kidney 30 min at 94ºC The lower ribosomal fragment is missing", "location identifier": "H4" }, + "error aggregate document": { + "error document": [ + { + "error": "!" + } + ] + }, + "measurement identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_630", + "measurement time": "2015-07-21T08:14:29-05:00", "processed data aggregate document": { "processed data document": [ { "peak list": { "peak": [ { - "peak identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_632", - "peak name": "-", - "peak height": { - "value": 2036.913, - "unit": "RFU" - }, - "peak start": { - "value": 17.0, - "unit": "#" - }, "peak end": { "value": 38.0, "unit": "#" @@ -4323,55 +4091,49 @@ "value": 25.0, "unit": "#" }, + "peak name": "-", + "identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_632", + "peak height": { + "value": 2036.913, + "unit": "RFU" + }, "peak area": { "value": 1.0, "unit": "(unitless)" }, - "relative peak area": { - "value": "NaN", - "unit": "%" - }, - "relative corrected peak area": { - "value": "NaN", - "unit": "%" - }, - "comment": "Lower Marker" + "comment": "Lower Marker", + "peak start": { + "value": 17.0, + "unit": "#" + } } ] } } ] }, - "error aggregate document": { - "error document": [ - { - "error": "!" - } - ] - }, "compartment temperature": { "value": 26.3, "unit": "degC" } } - ] - }, - "analyst": "TapeStation User", - "analytical method identifier": "RNA", - "method version": "5.1.0.47235", - "experimental data identifier": "\\\\Mac\\Home\\Documents\\Agilent\\TapeStation Data\\Demo Files\\Eukaryotic RNA-Plate-64.RNA" + ], + "analytical method identifier": "RNA", + "method version": "5.1.0.47235", + "experimental data identifier": "\\\\Mac\\Home\\Documents\\Agilent\\TapeStation Data\\Demo Files\\Eukaryotic RNA-Plate-64.RNA" + } }, { + "analyst": "TapeStation User", "measurement aggregate document": { "measurement document": [ { - "measurement time": "2015-07-21T08:14:29-05:00", - "measurement identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_639", "device control aggregate document": { "device control document": [ { "device type": "electrophoresis device", - "detection type": "fluorescence" + "detection type": "fluorescence", + "device identifier": "32768" } ] }, @@ -4380,22 +4142,14 @@ "description": "Human Universal Reference RNA 0 min at 94ºC", "location identifier": "A5" }, + "measurement identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_639", + "measurement time": "2015-07-21T08:14:29-05:00", "processed data aggregate document": { "processed data document": [ { "peak list": { "peak": [ { - "peak identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_641", - "peak name": "-", - "peak height": { - "value": 1737.651, - "unit": "RFU" - }, - "peak start": { - "value": 17.0, - "unit": "#" - }, "peak end": { "value": 38.0, "unit": "#" @@ -4404,31 +4158,23 @@ "value": 25.0, "unit": "#" }, + "peak name": "-", + "identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_641", + "peak height": { + "value": 1737.651, + "unit": "RFU" + }, "peak area": { "value": 1.0, "unit": "(unitless)" }, - "relative peak area": { - "value": "NaN", - "unit": "%" - }, - "relative corrected peak area": { - "value": "NaN", - "unit": "%" - }, - "comment": "Lower Marker" - }, - { - "peak identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_648", - "peak name": "1", - "peak height": { - "value": 5104.082, - "unit": "RFU" - }, + "comment": "Lower Marker", "peak start": { - "value": 1162.0, + "value": 17.0, "unit": "#" - }, + } + }, + { "peak end": { "value": 2349.0, "unit": "#" @@ -4437,6 +4183,12 @@ "value": 1802.0, "unit": "#" }, + "peak name": "1", + "identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_648", + "peak height": { + "value": 5104.082, + "unit": "RFU" + }, "peak area": { "value": 1.561, "unit": "(unitless)" @@ -4449,19 +4201,13 @@ "value": 31.87, "unit": "%" }, - "comment": "18S" - }, - { - "peak identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_654", - "peak name": "2", - "peak height": { - "value": 9447.354, - "unit": "RFU" - }, + "comment": "18S", "peak start": { - "value": 3527.0, + "value": 1162.0, "unit": "#" - }, + } + }, + { "peak end": { "value": 8179.0, "unit": "#" @@ -4470,6 +4216,12 @@ "value": 4811.0, "unit": "#" }, + "peak name": "2", + "identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_654", + "peak height": { + "value": 9447.354, + "unit": "RFU" + }, "peak area": { "value": 3.337, "unit": "(unitless)" @@ -4482,7 +4234,11 @@ "value": 68.13, "unit": "%" }, - "comment": "28S" + "comment": "28S", + "peak start": { + "value": 3527.0, + "unit": "#" + } } ] } @@ -4494,24 +4250,23 @@ "unit": "degC" } } - ] - }, - "analyst": "TapeStation User", - "analytical method identifier": "RNA", - "method version": "5.1.0.47235", - "experimental data identifier": "\\\\Mac\\Home\\Documents\\Agilent\\TapeStation Data\\Demo Files\\Eukaryotic RNA-Plate-64.RNA" + ], + "analytical method identifier": "RNA", + "method version": "5.1.0.47235", + "experimental data identifier": "\\\\Mac\\Home\\Documents\\Agilent\\TapeStation Data\\Demo Files\\Eukaryotic RNA-Plate-64.RNA" + } }, { + "analyst": "TapeStation User", "measurement aggregate document": { "measurement document": [ { - "measurement time": "2015-07-21T08:14:29-05:00", - "measurement identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_660", "device control aggregate document": { "device control document": [ { "device type": "electrophoresis device", - "detection type": "fluorescence" + "detection type": "fluorescence", + "device identifier": "32768" } ] }, @@ -4520,22 +4275,14 @@ "description": "Human Universal Reference RNA 0 min at 94ºC", "location identifier": "B5" }, + "measurement identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_660", + "measurement time": "2015-07-21T08:14:29-05:00", "processed data aggregate document": { "processed data document": [ { "peak list": { "peak": [ { - "peak identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_662", - "peak name": "-", - "peak height": { - "value": 1719.34, - "unit": "RFU" - }, - "peak start": { - "value": 17.0, - "unit": "#" - }, "peak end": { "value": 38.0, "unit": "#" @@ -4544,31 +4291,23 @@ "value": 25.0, "unit": "#" }, + "peak name": "-", + "identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_662", + "peak height": { + "value": 1719.34, + "unit": "RFU" + }, "peak area": { "value": 1.0, "unit": "(unitless)" }, - "relative peak area": { - "value": "NaN", - "unit": "%" - }, - "relative corrected peak area": { - "value": "NaN", - "unit": "%" - }, - "comment": "Lower Marker" - }, - { - "peak identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_669", - "peak name": "1", - "peak height": { - "value": 5150.995, - "unit": "RFU" - }, + "comment": "Lower Marker", "peak start": { - "value": 1195.0, + "value": 17.0, "unit": "#" - }, + } + }, + { "peak end": { "value": 2315.0, "unit": "#" @@ -4577,6 +4316,12 @@ "value": 1781.0, "unit": "#" }, + "peak name": "1", + "identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_669", + "peak height": { + "value": 5150.995, + "unit": "RFU" + }, "peak area": { "value": 1.537, "unit": "(unitless)" @@ -4589,19 +4334,13 @@ "value": 32.02, "unit": "%" }, - "comment": "18S" - }, - { - "peak identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_675", - "peak name": "2", - "peak height": { - "value": 9527.392, - "unit": "RFU" - }, + "comment": "18S", "peak start": { - "value": 3574.0, + "value": 1195.0, "unit": "#" - }, + } + }, + { "peak end": { "value": 8066.0, "unit": "#" @@ -4610,6 +4349,12 @@ "value": 4760.0, "unit": "#" }, + "peak name": "2", + "identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_675", + "peak height": { + "value": 9527.392, + "unit": "RFU" + }, "peak area": { "value": 3.263, "unit": "(unitless)" @@ -4622,7 +4367,11 @@ "value": 67.98, "unit": "%" }, - "comment": "28S" + "comment": "28S", + "peak start": { + "value": 3574.0, + "unit": "#" + } } ] } @@ -4634,24 +4383,23 @@ "unit": "degC" } } - ] - }, - "analyst": "TapeStation User", - "analytical method identifier": "RNA", - "method version": "5.1.0.47235", - "experimental data identifier": "\\\\Mac\\Home\\Documents\\Agilent\\TapeStation Data\\Demo Files\\Eukaryotic RNA-Plate-64.RNA" + ], + "analytical method identifier": "RNA", + "method version": "5.1.0.47235", + "experimental data identifier": "\\\\Mac\\Home\\Documents\\Agilent\\TapeStation Data\\Demo Files\\Eukaryotic RNA-Plate-64.RNA" + } }, { + "analyst": "TapeStation User", "measurement aggregate document": { "measurement document": [ { - "measurement time": "2015-07-21T08:14:29-05:00", - "measurement identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_681", "device control aggregate document": { "device control document": [ { "device type": "electrophoresis device", - "detection type": "fluorescence" + "detection type": "fluorescence", + "device identifier": "32768" } ] }, @@ -4660,22 +4408,14 @@ "description": "Human Universal Reference RNA 5 min at 94ºC", "location identifier": "C5" }, + "measurement identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_681", + "measurement time": "2015-07-21T08:14:29-05:00", "processed data aggregate document": { "processed data document": [ { "peak list": { "peak": [ { - "peak identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_683", - "peak name": "-", - "peak height": { - "value": 1872.433, - "unit": "RFU" - }, - "peak start": { - "value": 17.0, - "unit": "#" - }, "peak end": { "value": 38.0, "unit": "#" @@ -4684,31 +4424,23 @@ "value": 25.0, "unit": "#" }, + "peak name": "-", + "identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_683", + "peak height": { + "value": 1872.433, + "unit": "RFU" + }, "peak area": { "value": 1.0, "unit": "(unitless)" }, - "relative peak area": { - "value": "NaN", - "unit": "%" - }, - "relative corrected peak area": { - "value": "NaN", - "unit": "%" - }, - "comment": "Lower Marker" - }, - { - "peak identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_690", - "peak name": "1", - "peak height": { - "value": 4681.205, - "unit": "RFU" - }, + "comment": "Lower Marker", "peak start": { - "value": 920.0, + "value": 17.0, "unit": "#" - }, + } + }, + { "peak end": { "value": 2223.0, "unit": "#" @@ -4717,6 +4449,12 @@ "value": 1781.0, "unit": "#" }, + "peak name": "1", + "identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_690", + "peak height": { + "value": 4681.205, + "unit": "RFU" + }, "peak area": { "value": 2.367, "unit": "(unitless)" @@ -4729,19 +4467,13 @@ "value": 71.56, "unit": "%" }, - "comment": "18S" - }, - { - "peak identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_696", - "peak name": "2", - "peak height": { - "value": 3021.872, - "unit": "RFU" - }, + "comment": "18S", "peak start": { - "value": 3954.0, + "value": 920.0, "unit": "#" - }, + } + }, + { "peak end": { "value": 8168.0, "unit": "#" @@ -4750,6 +4482,12 @@ "value": 4881.0, "unit": "#" }, + "peak name": "2", + "identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_696", + "peak height": { + "value": 3021.872, + "unit": "RFU" + }, "peak area": { "value": 0.941, "unit": "(unitless)" @@ -4762,7 +4500,11 @@ "value": 28.44, "unit": "%" }, - "comment": "28S" + "comment": "28S", + "peak start": { + "value": 3954.0, + "unit": "#" + } } ] } @@ -4774,24 +4516,23 @@ "unit": "degC" } } - ] - }, - "analyst": "TapeStation User", - "analytical method identifier": "RNA", - "method version": "5.1.0.47235", - "experimental data identifier": "\\\\Mac\\Home\\Documents\\Agilent\\TapeStation Data\\Demo Files\\Eukaryotic RNA-Plate-64.RNA" + ], + "analytical method identifier": "RNA", + "method version": "5.1.0.47235", + "experimental data identifier": "\\\\Mac\\Home\\Documents\\Agilent\\TapeStation Data\\Demo Files\\Eukaryotic RNA-Plate-64.RNA" + } }, { + "analyst": "TapeStation User", "measurement aggregate document": { "measurement document": [ { - "measurement time": "2015-07-21T08:14:29-05:00", - "measurement identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_702", "device control aggregate document": { "device control document": [ { "device type": "electrophoresis device", - "detection type": "fluorescence" + "detection type": "fluorescence", + "device identifier": "32768" } ] }, @@ -4800,22 +4541,14 @@ "description": "Human Universal Reference RNA 5 min at 94ºC", "location identifier": "D5" }, + "measurement identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_702", + "measurement time": "2015-07-21T08:14:29-05:00", "processed data aggregate document": { "processed data document": [ { "peak list": { "peak": [ { - "peak identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_704", - "peak name": "-", - "peak height": { - "value": 1962.631, - "unit": "RFU" - }, - "peak start": { - "value": 17.0, - "unit": "#" - }, "peak end": { "value": 38.0, "unit": "#" @@ -4824,31 +4557,23 @@ "value": 25.0, "unit": "#" }, + "peak name": "-", + "identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_704", + "peak height": { + "value": 1962.631, + "unit": "RFU" + }, "peak area": { "value": 1.0, "unit": "(unitless)" }, - "relative peak area": { - "value": "NaN", - "unit": "%" - }, - "relative corrected peak area": { - "value": "NaN", - "unit": "%" - }, - "comment": "Lower Marker" - }, - { - "peak identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_711", - "peak name": "1", - "peak height": { - "value": 5109.415, - "unit": "RFU" - }, + "comment": "Lower Marker", "peak start": { - "value": 880.0, + "value": 17.0, "unit": "#" - }, + } + }, + { "peak end": { "value": 2061.0, "unit": "#" @@ -4857,6 +4582,12 @@ "value": 1720.0, "unit": "#" }, + "peak name": "1", + "identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_711", + "peak height": { + "value": 5109.415, + "unit": "RFU" + }, "peak area": { "value": 2.332, "unit": "(unitless)" @@ -4869,19 +4600,13 @@ "value": 69.0, "unit": "%" }, - "comment": "18S" - }, - { - "peak identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_717", - "peak name": "2", - "peak height": { - "value": 3394.46, - "unit": "RFU" - }, + "comment": "18S", "peak start": { - "value": 3697.0, + "value": 880.0, "unit": "#" - }, + } + }, + { "peak end": { "value": 7886.0, "unit": "#" @@ -4890,6 +4615,12 @@ "value": 4619.0, "unit": "#" }, + "peak name": "2", + "identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_717", + "peak height": { + "value": 3394.46, + "unit": "RFU" + }, "peak area": { "value": 1.048, "unit": "(unitless)" @@ -4902,7 +4633,11 @@ "value": 31.0, "unit": "%" }, - "comment": "28S" + "comment": "28S", + "peak start": { + "value": 3697.0, + "unit": "#" + } } ] } @@ -4914,24 +4649,23 @@ "unit": "degC" } } - ] - }, - "analyst": "TapeStation User", - "analytical method identifier": "RNA", - "method version": "5.1.0.47235", - "experimental data identifier": "\\\\Mac\\Home\\Documents\\Agilent\\TapeStation Data\\Demo Files\\Eukaryotic RNA-Plate-64.RNA" + ], + "analytical method identifier": "RNA", + "method version": "5.1.0.47235", + "experimental data identifier": "\\\\Mac\\Home\\Documents\\Agilent\\TapeStation Data\\Demo Files\\Eukaryotic RNA-Plate-64.RNA" + } }, { + "analyst": "TapeStation User", "measurement aggregate document": { "measurement document": [ { - "measurement time": "2015-07-21T08:14:29-05:00", - "measurement identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_723", "device control aggregate document": { "device control document": [ { "device type": "electrophoresis device", - "detection type": "fluorescence" + "detection type": "fluorescence", + "device identifier": "32768" } ] }, @@ -4940,55 +4674,39 @@ "description": "Human Universal Reference RNA 15 min at 94ºC The upper ribosomal fragment has degraded", "location identifier": "E5" }, + "measurement identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_723", + "measurement time": "2015-07-21T08:14:29-05:00", "processed data aggregate document": { "processed data document": [ { "peak list": { "peak": [ { - "peak identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_725", - "peak name": "-", - "peak height": { - "value": 2044.191, - "unit": "RFU" - }, - "peak start": { - "value": 17.0, - "unit": "#" - }, "peak end": { "value": 38.0, "unit": "#" }, - "peak position": { - "value": 25.0, - "unit": "#" - }, - "peak area": { - "value": 1.0, - "unit": "(unitless)" - }, - "relative peak area": { - "value": "NaN", - "unit": "%" - }, - "relative corrected peak area": { - "value": "NaN", - "unit": "%" + "peak position": { + "value": 25.0, + "unit": "#" }, - "comment": "Lower Marker" - }, - { - "peak identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_732", - "peak name": "1", + "peak name": "-", + "identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_725", "peak height": { - "value": 4434.451, + "value": 2044.191, "unit": "RFU" }, + "peak area": { + "value": 1.0, + "unit": "(unitless)" + }, + "comment": "Lower Marker", "peak start": { - "value": 673.0, + "value": 17.0, "unit": "#" - }, + } + }, + { "peak end": { "value": 4561.0, "unit": "#" @@ -4997,6 +4715,12 @@ "value": 1752.0, "unit": "#" }, + "peak name": "1", + "identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_732", + "peak height": { + "value": 4434.451, + "unit": "RFU" + }, "peak area": { "value": 4.463, "unit": "(unitless)" @@ -5009,7 +4733,11 @@ "value": 100.0, "unit": "%" }, - "comment": "18S" + "comment": "18S", + "peak start": { + "value": 673.0, + "unit": "#" + } } ] } @@ -5021,24 +4749,23 @@ "unit": "degC" } } - ] - }, - "analyst": "TapeStation User", - "analytical method identifier": "RNA", - "method version": "5.1.0.47235", - "experimental data identifier": "\\\\Mac\\Home\\Documents\\Agilent\\TapeStation Data\\Demo Files\\Eukaryotic RNA-Plate-64.RNA" + ], + "analytical method identifier": "RNA", + "method version": "5.1.0.47235", + "experimental data identifier": "\\\\Mac\\Home\\Documents\\Agilent\\TapeStation Data\\Demo Files\\Eukaryotic RNA-Plate-64.RNA" + } }, { + "analyst": "TapeStation User", "measurement aggregate document": { "measurement document": [ { - "measurement time": "2015-07-21T08:14:29-05:00", - "measurement identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_738", "device control aggregate document": { "device control document": [ { "device type": "electrophoresis device", - "detection type": "fluorescence" + "detection type": "fluorescence", + "device identifier": "32768" } ] }, @@ -5047,22 +4774,14 @@ "description": "Human Universal Reference RNA 15 min at 94ºC The upper ribosomal fragment has degraded", "location identifier": "F5" }, + "measurement identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_738", + "measurement time": "2015-07-21T08:14:29-05:00", "processed data aggregate document": { "processed data document": [ { "peak list": { "peak": [ { - "peak identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_740", - "peak name": "-", - "peak height": { - "value": 1898.095, - "unit": "RFU" - }, - "peak start": { - "value": 17.0, - "unit": "#" - }, "peak end": { "value": 38.0, "unit": "#" @@ -5071,31 +4790,23 @@ "value": 25.0, "unit": "#" }, + "peak name": "-", + "identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_740", + "peak height": { + "value": 1898.095, + "unit": "RFU" + }, "peak area": { "value": 1.0, "unit": "(unitless)" }, - "relative peak area": { - "value": "NaN", - "unit": "%" - }, - "relative corrected peak area": { - "value": "NaN", - "unit": "%" - }, - "comment": "Lower Marker" - }, - { - "peak identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_747", - "peak name": "1", - "peak height": { - "value": 4314.033, - "unit": "RFU" - }, + "comment": "Lower Marker", "peak start": { - "value": 884.0, + "value": 17.0, "unit": "#" - }, + } + }, + { "peak end": { "value": 4371.0, "unit": "#" @@ -5104,6 +4815,12 @@ "value": 1771.0, "unit": "#" }, + "peak name": "1", + "identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_747", + "peak height": { + "value": 4314.033, + "unit": "RFU" + }, "peak area": { "value": 3.897, "unit": "(unitless)" @@ -5116,7 +4833,11 @@ "value": 100.0, "unit": "%" }, - "comment": "18S" + "comment": "18S", + "peak start": { + "value": 884.0, + "unit": "#" + } } ] } @@ -5128,24 +4849,23 @@ "unit": "degC" } } - ] - }, - "analyst": "TapeStation User", - "analytical method identifier": "RNA", - "method version": "5.1.0.47235", - "experimental data identifier": "\\\\Mac\\Home\\Documents\\Agilent\\TapeStation Data\\Demo Files\\Eukaryotic RNA-Plate-64.RNA" + ], + "analytical method identifier": "RNA", + "method version": "5.1.0.47235", + "experimental data identifier": "\\\\Mac\\Home\\Documents\\Agilent\\TapeStation Data\\Demo Files\\Eukaryotic RNA-Plate-64.RNA" + } }, { + "analyst": "TapeStation User", "measurement aggregate document": { "measurement document": [ { - "measurement time": "2015-07-21T08:14:29-05:00", - "measurement identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_753", "device control aggregate document": { "device control document": [ { "device type": "electrophoresis device", - "detection type": "fluorescence" + "detection type": "fluorescence", + "device identifier": "32768" } ] }, @@ -5154,22 +4874,14 @@ "description": "Human Universal Reference RNA 25 min at 94ºC The upper ribosomal fragment has degraded", "location identifier": "G5" }, + "measurement identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_753", + "measurement time": "2015-07-21T08:14:29-05:00", "processed data aggregate document": { "processed data document": [ { "peak list": { "peak": [ { - "peak identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_755", - "peak name": "-", - "peak height": { - "value": 1916.554, - "unit": "RFU" - }, - "peak start": { - "value": 17.0, - "unit": "#" - }, "peak end": { "value": 39.0, "unit": "#" @@ -5178,31 +4890,23 @@ "value": 25.0, "unit": "#" }, + "peak name": "-", + "identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_755", + "peak height": { + "value": 1916.554, + "unit": "RFU" + }, "peak area": { "value": 1.0, "unit": "(unitless)" }, - "relative peak area": { - "value": "NaN", - "unit": "%" - }, - "relative corrected peak area": { - "value": "NaN", - "unit": "%" - }, - "comment": "Lower Marker" - }, - { - "peak identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_762", - "peak name": "1", - "peak height": { - "value": 3455.514, - "unit": "RFU" - }, + "comment": "Lower Marker", "peak start": { - "value": 1631.0, + "value": 17.0, "unit": "#" - }, + } + }, + { "peak end": { "value": 4257.0, "unit": "#" @@ -5211,6 +4915,12 @@ "value": 1778.0, "unit": "#" }, + "peak name": "1", + "identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_762", + "peak height": { + "value": 3455.514, + "unit": "RFU" + }, "peak area": { "value": 1.545, "unit": "(unitless)" @@ -5223,7 +4933,11 @@ "value": 100.0, "unit": "%" }, - "comment": "18S" + "comment": "18S", + "peak start": { + "value": 1631.0, + "unit": "#" + } } ] } @@ -5235,24 +4949,23 @@ "unit": "degC" } } - ] - }, - "analyst": "TapeStation User", - "analytical method identifier": "RNA", - "method version": "5.1.0.47235", - "experimental data identifier": "\\\\Mac\\Home\\Documents\\Agilent\\TapeStation Data\\Demo Files\\Eukaryotic RNA-Plate-64.RNA" + ], + "analytical method identifier": "RNA", + "method version": "5.1.0.47235", + "experimental data identifier": "\\\\Mac\\Home\\Documents\\Agilent\\TapeStation Data\\Demo Files\\Eukaryotic RNA-Plate-64.RNA" + } }, { + "analyst": "TapeStation User", "measurement aggregate document": { "measurement document": [ { - "measurement time": "2015-07-21T08:14:29-05:00", - "measurement identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_768", "device control aggregate document": { "device control document": [ { "device type": "electrophoresis device", - "detection type": "fluorescence" + "detection type": "fluorescence", + "device identifier": "32768" } ] }, @@ -5261,22 +4974,14 @@ "description": "Human Universal Reference RNA 25 min at 94ºC The upper ribosomal fragment has degraded", "location identifier": "H5" }, + "measurement identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_768", + "measurement time": "2015-07-21T08:14:29-05:00", "processed data aggregate document": { "processed data document": [ { "peak list": { "peak": [ { - "peak identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_770", - "peak name": "-", - "peak height": { - "value": 2015.483, - "unit": "RFU" - }, - "peak start": { - "value": 17.0, - "unit": "#" - }, "peak end": { "value": 38.0, "unit": "#" @@ -5285,31 +4990,23 @@ "value": 25.0, "unit": "#" }, + "peak name": "-", + "identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_770", + "peak height": { + "value": 2015.483, + "unit": "RFU" + }, "peak area": { "value": 1.0, "unit": "(unitless)" }, - "relative peak area": { - "value": "NaN", - "unit": "%" - }, - "relative corrected peak area": { - "value": "NaN", - "unit": "%" - }, - "comment": "Lower Marker" - }, - { - "peak identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_777", - "peak name": "1", - "peak height": { - "value": 3487.25, - "unit": "RFU" - }, + "comment": "Lower Marker", "peak start": { - "value": 1713.0, + "value": 17.0, "unit": "#" - }, + } + }, + { "peak end": { "value": 4533.0, "unit": "#" @@ -5318,6 +5015,12 @@ "value": 1882.0, "unit": "#" }, + "peak name": "1", + "identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_777", + "peak height": { + "value": 3487.25, + "unit": "RFU" + }, "peak area": { "value": 1.678, "unit": "(unitless)" @@ -5330,7 +5033,11 @@ "value": 100.0, "unit": "%" }, - "comment": "18S" + "comment": "18S", + "peak start": { + "value": 1713.0, + "unit": "#" + } } ] } @@ -5342,24 +5049,23 @@ "unit": "degC" } } - ] - }, - "analyst": "TapeStation User", - "analytical method identifier": "RNA", - "method version": "5.1.0.47235", - "experimental data identifier": "\\\\Mac\\Home\\Documents\\Agilent\\TapeStation Data\\Demo Files\\Eukaryotic RNA-Plate-64.RNA" + ], + "analytical method identifier": "RNA", + "method version": "5.1.0.47235", + "experimental data identifier": "\\\\Mac\\Home\\Documents\\Agilent\\TapeStation Data\\Demo Files\\Eukaryotic RNA-Plate-64.RNA" + } }, { + "analyst": "TapeStation User", "measurement aggregate document": { "measurement document": [ { - "measurement time": "2015-07-21T08:14:29-05:00", - "measurement identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_783", "device control aggregate document": { "device control document": [ { "device type": "electrophoresis device", - "detection type": "fluorescence" + "detection type": "fluorescence", + "device identifier": "32768" } ] }, @@ -5368,22 +5074,14 @@ "description": "Human Universal Reference RNA 0 min at 94ºC", "location identifier": "A6" }, + "measurement identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_783", + "measurement time": "2015-07-21T08:14:29-05:00", "processed data aggregate document": { "processed data document": [ { "peak list": { "peak": [ { - "peak identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_785", - "peak name": "-", - "peak height": { - "value": 1852.378, - "unit": "RFU" - }, - "peak start": { - "value": 17.0, - "unit": "#" - }, "peak end": { "value": 38.0, "unit": "#" @@ -5392,31 +5090,23 @@ "value": 25.0, "unit": "#" }, + "peak name": "-", + "identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_785", + "peak height": { + "value": 1852.378, + "unit": "RFU" + }, "peak area": { "value": 1.0, "unit": "(unitless)" }, - "relative peak area": { - "value": "NaN", - "unit": "%" - }, - "relative corrected peak area": { - "value": "NaN", - "unit": "%" - }, - "comment": "Lower Marker" - }, - { - "peak identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_792", - "peak name": "1", - "peak height": { - "value": 5868.617, - "unit": "RFU" - }, + "comment": "Lower Marker", "peak start": { - "value": 1195.0, + "value": 17.0, "unit": "#" - }, + } + }, + { "peak end": { "value": 2247.0, "unit": "#" @@ -5425,6 +5115,12 @@ "value": 1826.0, "unit": "#" }, + "peak name": "1", + "identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_792", + "peak height": { + "value": 5868.617, + "unit": "RFU" + }, "peak area": { "value": 1.482, "unit": "(unitless)" @@ -5437,19 +5133,13 @@ "value": 29.59, "unit": "%" }, - "comment": "18S" - }, - { - "peak identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_798", - "peak name": "2", - "peak height": { - "value": 10483.297, - "unit": "RFU" - }, + "comment": "18S", "peak start": { - "value": 3318.0, + "value": 1195.0, "unit": "#" - }, + } + }, + { "peak end": { "value": 8791.0, "unit": "#" @@ -5458,6 +5148,12 @@ "value": 4828.0, "unit": "#" }, + "peak name": "2", + "identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_798", + "peak height": { + "value": 10483.297, + "unit": "RFU" + }, "peak area": { "value": 3.526, "unit": "(unitless)" @@ -5470,7 +5166,11 @@ "value": 70.41, "unit": "%" }, - "comment": "28S" + "comment": "28S", + "peak start": { + "value": 3318.0, + "unit": "#" + } } ] } @@ -5482,24 +5182,23 @@ "unit": "degC" } } - ] - }, - "analyst": "TapeStation User", - "analytical method identifier": "RNA", - "method version": "5.1.0.47235", - "experimental data identifier": "\\\\Mac\\Home\\Documents\\Agilent\\TapeStation Data\\Demo Files\\Eukaryotic RNA-Plate-64.RNA" + ], + "analytical method identifier": "RNA", + "method version": "5.1.0.47235", + "experimental data identifier": "\\\\Mac\\Home\\Documents\\Agilent\\TapeStation Data\\Demo Files\\Eukaryotic RNA-Plate-64.RNA" + } }, { + "analyst": "TapeStation User", "measurement aggregate document": { "measurement document": [ { - "measurement time": "2015-07-21T08:14:29-05:00", - "measurement identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_804", "device control aggregate document": { "device control document": [ { "device type": "electrophoresis device", - "detection type": "fluorescence" + "detection type": "fluorescence", + "device identifier": "32768" } ] }, @@ -5508,22 +5207,14 @@ "description": "Human Universal Reference RNA 0 min at 94ºC", "location identifier": "B6" }, + "measurement identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_804", + "measurement time": "2015-07-21T08:14:29-05:00", "processed data aggregate document": { "processed data document": [ { "peak list": { "peak": [ { - "peak identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_806", - "peak name": "-", - "peak height": { - "value": 1629.762, - "unit": "RFU" - }, - "peak start": { - "value": 17.0, - "unit": "#" - }, "peak end": { "value": 38.0, "unit": "#" @@ -5532,31 +5223,23 @@ "value": 25.0, "unit": "#" }, + "peak name": "-", + "identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_806", + "peak height": { + "value": 1629.762, + "unit": "RFU" + }, "peak area": { "value": 1.0, "unit": "(unitless)" }, - "relative peak area": { - "value": "NaN", - "unit": "%" - }, - "relative corrected peak area": { - "value": "NaN", - "unit": "%" - }, - "comment": "Lower Marker" - }, - { - "peak identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_813", - "peak name": "1", - "peak height": { - "value": 5328.079, - "unit": "RFU" - }, + "comment": "Lower Marker", "peak start": { - "value": 1274.0, + "value": 17.0, "unit": "#" - }, + } + }, + { "peak end": { "value": 2424.0, "unit": "#" @@ -5565,6 +5248,12 @@ "value": 1912.0, "unit": "#" }, + "peak name": "1", + "identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_813", + "peak height": { + "value": 5328.079, + "unit": "RFU" + }, "peak area": { "value": 1.566, "unit": "(unitless)" @@ -5577,19 +5266,13 @@ "value": 32.23, "unit": "%" }, - "comment": "18S" - }, - { - "peak identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_819", - "peak name": "2", - "peak height": { - "value": 9443.407, - "unit": "RFU" - }, + "comment": "18S", "peak start": { - "value": 3885.0, + "value": 1274.0, "unit": "#" - }, + } + }, + { "peak end": { "value": 8468.0, "unit": "#" @@ -5598,6 +5281,12 @@ "value": 5270.0, "unit": "#" }, + "peak name": "2", + "identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_819", + "peak height": { + "value": 9443.407, + "unit": "RFU" + }, "peak area": { "value": 3.293, "unit": "(unitless)" @@ -5610,7 +5299,11 @@ "value": 67.77, "unit": "%" }, - "comment": "28S" + "comment": "28S", + "peak start": { + "value": 3885.0, + "unit": "#" + } } ] } @@ -5622,24 +5315,23 @@ "unit": "degC" } } - ] - }, - "analyst": "TapeStation User", - "analytical method identifier": "RNA", - "method version": "5.1.0.47235", - "experimental data identifier": "\\\\Mac\\Home\\Documents\\Agilent\\TapeStation Data\\Demo Files\\Eukaryotic RNA-Plate-64.RNA" + ], + "analytical method identifier": "RNA", + "method version": "5.1.0.47235", + "experimental data identifier": "\\\\Mac\\Home\\Documents\\Agilent\\TapeStation Data\\Demo Files\\Eukaryotic RNA-Plate-64.RNA" + } }, { + "analyst": "TapeStation User", "measurement aggregate document": { "measurement document": [ { - "measurement time": "2015-07-21T08:14:29-05:00", - "measurement identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_825", "device control aggregate document": { "device control document": [ { "device type": "electrophoresis device", - "detection type": "fluorescence" + "detection type": "fluorescence", + "device identifier": "32768" } ] }, @@ -5648,22 +5340,14 @@ "description": "Human Universal Reference RNA 5 min at 94ºC", "location identifier": "C6" }, + "measurement identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_825", + "measurement time": "2015-07-21T08:14:29-05:00", "processed data aggregate document": { "processed data document": [ { "peak list": { "peak": [ { - "peak identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_827", - "peak name": "-", - "peak height": { - "value": 1660.648, - "unit": "RFU" - }, - "peak start": { - "value": 17.0, - "unit": "#" - }, "peak end": { "value": 38.0, "unit": "#" @@ -5672,31 +5356,23 @@ "value": 25.0, "unit": "#" }, + "peak name": "-", + "identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_827", + "peak height": { + "value": 1660.648, + "unit": "RFU" + }, "peak area": { "value": 1.0, "unit": "(unitless)" }, - "relative peak area": { - "value": "NaN", - "unit": "%" - }, - "relative corrected peak area": { - "value": "NaN", - "unit": "%" - }, - "comment": "Lower Marker" - }, - { - "peak identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_834", - "peak name": "1", - "peak height": { - "value": 4734.503, - "unit": "RFU" - }, + "comment": "Lower Marker", "peak start": { - "value": 994.0, + "value": 17.0, "unit": "#" - }, + } + }, + { "peak end": { "value": 2407.0, "unit": "#" @@ -5705,6 +5381,12 @@ "value": 1949.0, "unit": "#" }, + "peak name": "1", + "identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_834", + "peak height": { + "value": 4734.503, + "unit": "RFU" + }, "peak area": { "value": 2.526, "unit": "(unitless)" @@ -5717,19 +5399,13 @@ "value": 68.41, "unit": "%" }, - "comment": "18S" - }, - { - "peak identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_840", - "peak name": "2", - "peak height": { - "value": 3117.767, - "unit": "RFU" - }, + "comment": "18S", "peak start": { - "value": 4265.0, + "value": 994.0, "unit": "#" - }, + } + }, + { "peak end": { "value": 8551.0, "unit": "#" @@ -5738,6 +5414,12 @@ "value": 5633.0, "unit": "#" }, + "peak name": "2", + "identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_840", + "peak height": { + "value": 3117.767, + "unit": "RFU" + }, "peak area": { "value": 1.167, "unit": "(unitless)" @@ -5750,7 +5432,11 @@ "value": 31.59, "unit": "%" }, - "comment": "28S" + "comment": "28S", + "peak start": { + "value": 4265.0, + "unit": "#" + } } ] } @@ -5762,24 +5448,23 @@ "unit": "degC" } } - ] - }, - "analyst": "TapeStation User", - "analytical method identifier": "RNA", - "method version": "5.1.0.47235", - "experimental data identifier": "\\\\Mac\\Home\\Documents\\Agilent\\TapeStation Data\\Demo Files\\Eukaryotic RNA-Plate-64.RNA" + ], + "analytical method identifier": "RNA", + "method version": "5.1.0.47235", + "experimental data identifier": "\\\\Mac\\Home\\Documents\\Agilent\\TapeStation Data\\Demo Files\\Eukaryotic RNA-Plate-64.RNA" + } }, { + "analyst": "TapeStation User", "measurement aggregate document": { "measurement document": [ { - "measurement time": "2015-07-21T08:14:29-05:00", - "measurement identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_846", "device control aggregate document": { "device control document": [ { "device type": "electrophoresis device", - "detection type": "fluorescence" + "detection type": "fluorescence", + "device identifier": "32768" } ] }, @@ -5788,22 +5473,14 @@ "description": "Human Universal Reference RNA 5 min at 94ºC", "location identifier": "D6" }, + "measurement identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_846", + "measurement time": "2015-07-21T08:14:29-05:00", "processed data aggregate document": { "processed data document": [ { "peak list": { "peak": [ { - "peak identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_848", - "peak name": "-", - "peak height": { - "value": 1744.405, - "unit": "RFU" - }, - "peak start": { - "value": 17.0, - "unit": "#" - }, "peak end": { "value": 38.0, "unit": "#" @@ -5812,31 +5489,23 @@ "value": 25.0, "unit": "#" }, + "peak name": "-", + "identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_848", + "peak height": { + "value": 1744.405, + "unit": "RFU" + }, "peak area": { "value": 1.0, "unit": "(unitless)" }, - "relative peak area": { - "value": "NaN", - "unit": "%" - }, - "relative corrected peak area": { - "value": "NaN", - "unit": "%" - }, - "comment": "Lower Marker" - }, - { - "peak identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_855", - "peak name": "1", - "peak height": { - "value": 4874.333, - "unit": "RFU" - }, + "comment": "Lower Marker", "peak start": { - "value": 985.0, + "value": 17.0, "unit": "#" - }, + } + }, + { "peak end": { "value": 2330.0, "unit": "#" @@ -5845,6 +5514,12 @@ "value": 1910.0, "unit": "#" }, + "peak name": "1", + "identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_855", + "peak height": { + "value": 4874.333, + "unit": "RFU" + }, "peak area": { "value": 2.447, "unit": "(unitless)" @@ -5857,19 +5532,13 @@ "value": 70.51, "unit": "%" }, - "comment": "18S" - }, - { - "peak identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_861", - "peak name": "2", - "peak height": { - "value": 3086.386, - "unit": "RFU" - }, + "comment": "18S", "peak start": { - "value": 4298.0, + "value": 985.0, "unit": "#" - }, + } + }, + { "peak end": { "value": 8384.0, "unit": "#" @@ -5878,6 +5547,12 @@ "value": 5461.0, "unit": "#" }, + "peak name": "2", + "identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_861", + "peak height": { + "value": 3086.386, + "unit": "RFU" + }, "peak area": { "value": 1.023, "unit": "(unitless)" @@ -5890,7 +5565,11 @@ "value": 29.49, "unit": "%" }, - "comment": "28S" + "comment": "28S", + "peak start": { + "value": 4298.0, + "unit": "#" + } } ] } @@ -5902,24 +5581,23 @@ "unit": "degC" } } - ] - }, - "analyst": "TapeStation User", - "analytical method identifier": "RNA", - "method version": "5.1.0.47235", - "experimental data identifier": "\\\\Mac\\Home\\Documents\\Agilent\\TapeStation Data\\Demo Files\\Eukaryotic RNA-Plate-64.RNA" + ], + "analytical method identifier": "RNA", + "method version": "5.1.0.47235", + "experimental data identifier": "\\\\Mac\\Home\\Documents\\Agilent\\TapeStation Data\\Demo Files\\Eukaryotic RNA-Plate-64.RNA" + } }, { + "analyst": "TapeStation User", "measurement aggregate document": { "measurement document": [ { - "measurement time": "2015-07-21T08:14:29-05:00", - "measurement identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_867", "device control aggregate document": { "device control document": [ { "device type": "electrophoresis device", - "detection type": "fluorescence" + "detection type": "fluorescence", + "device identifier": "32768" } ] }, @@ -5928,22 +5606,14 @@ "description": "Human Universal Reference RNA 15 min at 94ºC The upper ribosomal fragment has degraded", "location identifier": "E6" }, + "measurement identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_867", + "measurement time": "2015-07-21T08:14:29-05:00", "processed data aggregate document": { "processed data document": [ { "peak list": { "peak": [ { - "peak identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_869", - "peak name": "-", - "peak height": { - "value": 1759.663, - "unit": "RFU" - }, - "peak start": { - "value": 17.0, - "unit": "#" - }, "peak end": { "value": 39.0, "unit": "#" @@ -5952,31 +5622,23 @@ "value": 25.0, "unit": "#" }, + "peak name": "-", + "identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_869", + "peak height": { + "value": 1759.663, + "unit": "RFU" + }, "peak area": { "value": 1.0, "unit": "(unitless)" }, - "relative peak area": { - "value": "NaN", - "unit": "%" - }, - "relative corrected peak area": { - "value": "NaN", - "unit": "%" - }, - "comment": "Lower Marker" - }, - { - "peak identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_876", - "peak name": "1", - "peak height": { - "value": 3932.058, - "unit": "RFU" - }, + "comment": "Lower Marker", "peak start": { - "value": 1573.0, + "value": 17.0, "unit": "#" - }, + } + }, + { "peak end": { "value": 4805.0, "unit": "#" @@ -5985,6 +5647,12 @@ "value": 1933.0, "unit": "#" }, + "peak name": "1", + "identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_876", + "peak height": { + "value": 3932.058, + "unit": "RFU" + }, "peak area": { "value": 2.488, "unit": "(unitless)" @@ -5997,19 +5665,13 @@ "value": 92.92, "unit": "%" }, - "comment": "18S" - }, - { - "peak identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_882", - "peak name": "2", - "peak height": { - "value": 880.729, - "unit": "RFU" - }, + "comment": "18S", "peak start": { - "value": 5318.0, + "value": 1573.0, "unit": "#" - }, + } + }, + { "peak end": { "value": 8722.0, "unit": "#" @@ -6018,6 +5680,12 @@ "value": 5525.0, "unit": "#" }, + "peak name": "2", + "identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_882", + "peak height": { + "value": 880.729, + "unit": "RFU" + }, "peak area": { "value": 0.19, "unit": "(unitless)" @@ -6030,7 +5698,11 @@ "value": 7.08, "unit": "%" }, - "comment": "28S" + "comment": "28S", + "peak start": { + "value": 5318.0, + "unit": "#" + } } ] } @@ -6042,24 +5714,23 @@ "unit": "degC" } } - ] - }, - "analyst": "TapeStation User", - "analytical method identifier": "RNA", - "method version": "5.1.0.47235", - "experimental data identifier": "\\\\Mac\\Home\\Documents\\Agilent\\TapeStation Data\\Demo Files\\Eukaryotic RNA-Plate-64.RNA" + ], + "analytical method identifier": "RNA", + "method version": "5.1.0.47235", + "experimental data identifier": "\\\\Mac\\Home\\Documents\\Agilent\\TapeStation Data\\Demo Files\\Eukaryotic RNA-Plate-64.RNA" + } }, { + "analyst": "TapeStation User", "measurement aggregate document": { "measurement document": [ { - "measurement time": "2015-07-21T08:14:29-05:00", - "measurement identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_888", "device control aggregate document": { "device control document": [ { "device type": "electrophoresis device", - "detection type": "fluorescence" + "detection type": "fluorescence", + "device identifier": "32768" } ] }, @@ -6068,22 +5739,14 @@ "description": "Human Universal Reference RNA 15 min at 94ºC The upper ribosomal fragment has degraded", "location identifier": "F6" }, + "measurement identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_888", + "measurement time": "2015-07-21T08:14:29-05:00", "processed data aggregate document": { "processed data document": [ { "peak list": { "peak": [ { - "peak identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_890", - "peak name": "-", - "peak height": { - "value": 1765.919, - "unit": "RFU" - }, - "peak start": { - "value": 17.0, - "unit": "#" - }, "peak end": { "value": 39.0, "unit": "#" @@ -6092,31 +5755,23 @@ "value": 25.0, "unit": "#" }, + "peak name": "-", + "identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_890", + "peak height": { + "value": 1765.919, + "unit": "RFU" + }, "peak area": { "value": 1.0, "unit": "(unitless)" }, - "relative peak area": { - "value": "NaN", - "unit": "%" - }, - "relative corrected peak area": { - "value": "NaN", - "unit": "%" - }, - "comment": "Lower Marker" - }, - { - "peak identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_897", - "peak name": "1", - "peak height": { - "value": 3991.586, - "unit": "RFU" - }, + "comment": "Lower Marker", "peak start": { - "value": 959.0, + "value": 17.0, "unit": "#" - }, + } + }, + { "peak end": { "value": 4834.0, "unit": "#" @@ -6125,6 +5780,12 @@ "value": 1959.0, "unit": "#" }, + "peak name": "1", + "identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_897", + "peak height": { + "value": 3991.586, + "unit": "RFU" + }, "peak area": { "value": 3.779, "unit": "(unitless)" @@ -6137,7 +5798,11 @@ "value": 100.0, "unit": "%" }, - "comment": "18S" + "comment": "18S", + "peak start": { + "value": 959.0, + "unit": "#" + } } ] } @@ -6149,24 +5814,23 @@ "unit": "degC" } } - ] - }, - "analyst": "TapeStation User", - "analytical method identifier": "RNA", - "method version": "5.1.0.47235", - "experimental data identifier": "\\\\Mac\\Home\\Documents\\Agilent\\TapeStation Data\\Demo Files\\Eukaryotic RNA-Plate-64.RNA" + ], + "analytical method identifier": "RNA", + "method version": "5.1.0.47235", + "experimental data identifier": "\\\\Mac\\Home\\Documents\\Agilent\\TapeStation Data\\Demo Files\\Eukaryotic RNA-Plate-64.RNA" + } }, { + "analyst": "TapeStation User", "measurement aggregate document": { "measurement document": [ { - "measurement time": "2015-07-21T08:14:29-05:00", - "measurement identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_903", "device control aggregate document": { "device control document": [ { "device type": "electrophoresis device", - "detection type": "fluorescence" + "detection type": "fluorescence", + "device identifier": "32768" } ] }, @@ -6175,22 +5839,14 @@ "description": "Human Universal Reference RNA 25 min at 94ºC The upper ribosomal fragment has degraded", "location identifier": "G6" }, + "measurement identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_903", + "measurement time": "2015-07-21T08:14:29-05:00", "processed data aggregate document": { "processed data document": [ { "peak list": { "peak": [ { - "peak identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_905", - "peak name": "-", - "peak height": { - "value": 1761.818, - "unit": "RFU" - }, - "peak start": { - "value": 17.0, - "unit": "#" - }, "peak end": { "value": 39.0, "unit": "#" @@ -6199,31 +5855,23 @@ "value": 25.0, "unit": "#" }, + "peak name": "-", + "identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_905", + "peak height": { + "value": 1761.818, + "unit": "RFU" + }, "peak area": { "value": 1.0, "unit": "(unitless)" }, - "relative peak area": { - "value": "NaN", - "unit": "%" - }, - "relative corrected peak area": { - "value": "NaN", - "unit": "%" - }, - "comment": "Lower Marker" - }, - { - "peak identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_912", - "peak name": "1", - "peak height": { - "value": 3350.863, - "unit": "RFU" - }, + "comment": "Lower Marker", "peak start": { - "value": 1784.0, + "value": 17.0, "unit": "#" - }, + } + }, + { "peak end": { "value": 4810.0, "unit": "#" @@ -6232,6 +5880,12 @@ "value": 1944.0, "unit": "#" }, + "peak name": "1", + "identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_912", + "peak height": { + "value": 3350.863, + "unit": "RFU" + }, "peak area": { "value": 1.644, "unit": "(unitless)" @@ -6244,7 +5898,11 @@ "value": 100.0, "unit": "%" }, - "comment": "18S" + "comment": "18S", + "peak start": { + "value": 1784.0, + "unit": "#" + } } ] } @@ -6256,24 +5914,23 @@ "unit": "degC" } } - ] - }, - "analyst": "TapeStation User", - "analytical method identifier": "RNA", - "method version": "5.1.0.47235", - "experimental data identifier": "\\\\Mac\\Home\\Documents\\Agilent\\TapeStation Data\\Demo Files\\Eukaryotic RNA-Plate-64.RNA" + ], + "analytical method identifier": "RNA", + "method version": "5.1.0.47235", + "experimental data identifier": "\\\\Mac\\Home\\Documents\\Agilent\\TapeStation Data\\Demo Files\\Eukaryotic RNA-Plate-64.RNA" + } }, { + "analyst": "TapeStation User", "measurement aggregate document": { "measurement document": [ { - "measurement time": "2015-07-21T08:14:29-05:00", - "measurement identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_918", "device control aggregate document": { "device control document": [ { "device type": "electrophoresis device", - "detection type": "fluorescence" + "detection type": "fluorescence", + "device identifier": "32768" } ] }, @@ -6282,22 +5939,14 @@ "description": "Human Universal Reference RNA 25 min at 94ºC The upper ribosomal fragment has degraded", "location identifier": "H6" }, + "measurement identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_918", + "measurement time": "2015-07-21T08:14:29-05:00", "processed data aggregate document": { "processed data document": [ { "peak list": { "peak": [ { - "peak identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_920", - "peak name": "-", - "peak height": { - "value": 1909.349, - "unit": "RFU" - }, - "peak start": { - "value": 17.0, - "unit": "#" - }, "peak end": { "value": 38.0, "unit": "#" @@ -6306,31 +5955,23 @@ "value": 25.0, "unit": "#" }, + "peak name": "-", + "identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_920", + "peak height": { + "value": 1909.349, + "unit": "RFU" + }, "peak area": { "value": 1.0, "unit": "(unitless)" }, - "relative peak area": { - "value": "NaN", - "unit": "%" - }, - "relative corrected peak area": { - "value": "NaN", - "unit": "%" - }, - "comment": "Lower Marker" - }, - { - "peak identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_927", - "peak name": "1", - "peak height": { - "value": 3407.431, - "unit": "RFU" - }, + "comment": "Lower Marker", "peak start": { - "value": 1794.0, + "value": 17.0, "unit": "#" - }, + } + }, + { "peak end": { "value": 4685.0, "unit": "#" @@ -6339,6 +5980,12 @@ "value": 1952.0, "unit": "#" }, + "peak name": "1", + "identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_927", + "peak height": { + "value": 3407.431, + "unit": "RFU" + }, "peak area": { "value": 1.693, "unit": "(unitless)" @@ -6351,7 +5998,11 @@ "value": 100.0, "unit": "%" }, - "comment": "18S" + "comment": "18S", + "peak start": { + "value": 1794.0, + "unit": "#" + } } ] } @@ -6363,24 +6014,23 @@ "unit": "degC" } } - ] - }, - "analyst": "TapeStation User", - "analytical method identifier": "RNA", - "method version": "5.1.0.47235", - "experimental data identifier": "\\\\Mac\\Home\\Documents\\Agilent\\TapeStation Data\\Demo Files\\Eukaryotic RNA-Plate-64.RNA" + ], + "analytical method identifier": "RNA", + "method version": "5.1.0.47235", + "experimental data identifier": "\\\\Mac\\Home\\Documents\\Agilent\\TapeStation Data\\Demo Files\\Eukaryotic RNA-Plate-64.RNA" + } }, { + "analyst": "TapeStation User", "measurement aggregate document": { "measurement document": [ { - "measurement time": "2015-07-21T08:14:29-05:00", - "measurement identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_933", "device control aggregate document": { "device control document": [ { "device type": "electrophoresis device", - "detection type": "fluorescence" + "detection type": "fluorescence", + "device identifier": "32768" } ] }, @@ -6389,22 +6039,14 @@ "description": "Human Cerebellum", "location identifier": "A7" }, + "measurement identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_933", + "measurement time": "2015-07-21T08:14:29-05:00", "processed data aggregate document": { "processed data document": [ { "peak list": { "peak": [ { - "peak identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_935", - "peak name": "-", - "peak height": { - "value": 2356.466, - "unit": "RFU" - }, - "peak start": { - "value": 17.0, - "unit": "#" - }, "peak end": { "value": 38.0, "unit": "#" @@ -6413,31 +6055,23 @@ "value": 25.0, "unit": "#" }, + "peak name": "-", + "identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_935", + "peak height": { + "value": 2356.466, + "unit": "RFU" + }, "peak area": { "value": 1.0, "unit": "(unitless)" }, - "relative peak area": { - "value": "NaN", - "unit": "%" - }, - "relative corrected peak area": { - "value": "NaN", - "unit": "%" - }, - "comment": "Lower Marker" - }, - { - "peak identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_942", - "peak name": "1", - "peak height": { - "value": 3770.48, - "unit": "RFU" - }, + "comment": "Lower Marker", "peak start": { - "value": 1221.0, + "value": 17.0, "unit": "#" - }, + } + }, + { "peak end": { "value": 2356.0, "unit": "#" @@ -6446,6 +6080,12 @@ "value": 1934.0, "unit": "#" }, + "peak name": "1", + "identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_942", + "peak height": { + "value": 3770.48, + "unit": "RFU" + }, "peak area": { "value": 0.946, "unit": "(unitless)" @@ -6458,19 +6098,13 @@ "value": 41.83, "unit": "%" }, - "comment": "18S" - }, - { - "peak identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_948", - "peak name": "2", - "peak height": { - "value": 5358.301, - "unit": "RFU" - }, + "comment": "18S", "peak start": { - "value": 4110.0, + "value": 1221.0, "unit": "#" - }, + } + }, + { "peak end": { "value": 9007.0, "unit": "#" @@ -6479,6 +6113,12 @@ "value": 5753.0, "unit": "#" }, + "peak name": "2", + "identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_948", + "peak height": { + "value": 5358.301, + "unit": "RFU" + }, "peak area": { "value": 1.316, "unit": "(unitless)" @@ -6491,7 +6131,11 @@ "value": 58.17, "unit": "%" }, - "comment": "28S" + "comment": "28S", + "peak start": { + "value": 4110.0, + "unit": "#" + } } ] } @@ -6503,24 +6147,23 @@ "unit": "degC" } } - ] - }, - "analyst": "TapeStation User", - "analytical method identifier": "RNA", - "method version": "5.1.0.47235", - "experimental data identifier": "\\\\Mac\\Home\\Documents\\Agilent\\TapeStation Data\\Demo Files\\Eukaryotic RNA-Plate-64.RNA" + ], + "analytical method identifier": "RNA", + "method version": "5.1.0.47235", + "experimental data identifier": "\\\\Mac\\Home\\Documents\\Agilent\\TapeStation Data\\Demo Files\\Eukaryotic RNA-Plate-64.RNA" + } }, { + "analyst": "TapeStation User", "measurement aggregate document": { "measurement document": [ { - "measurement time": "2015-07-21T08:14:29-05:00", - "measurement identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_954", "device control aggregate document": { "device control document": [ { "device type": "electrophoresis device", - "detection type": "fluorescence" + "detection type": "fluorescence", + "device identifier": "32768" } ] }, @@ -6529,55 +6172,39 @@ "description": "Human Adrenal Gland", "location identifier": "B7" }, + "measurement identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_954", + "measurement time": "2015-07-21T08:14:29-05:00", "processed data aggregate document": { "processed data document": [ { "peak list": { "peak": [ { - "peak identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_956", - "peak name": "-", - "peak height": { - "value": 165.037, - "unit": "RFU" - }, - "peak start": { - "value": 20.0, - "unit": "#" - }, "peak end": { - "value": 32.0, - "unit": "#" - }, - "peak position": { - "value": 25.0, - "unit": "#" - }, - "peak area": { - "value": 1.0, - "unit": "(unitless)" - }, - "relative peak area": { - "value": "NaN", - "unit": "%" + "value": 32.0, + "unit": "#" }, - "relative corrected peak area": { - "value": "NaN", - "unit": "%" + "peak position": { + "value": 25.0, + "unit": "#" }, - "comment": "Lower Marker" - }, - { - "peak identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_963", - "peak name": "1", + "peak name": "-", + "identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_956", "peak height": { - "value": 334.019, + "value": 165.037, "unit": "RFU" }, + "peak area": { + "value": 1.0, + "unit": "(unitless)" + }, + "comment": "Lower Marker", "peak start": { - "value": 1433.0, + "value": 20.0, "unit": "#" - }, + } + }, + { "peak end": { "value": 2598.0, "unit": "#" @@ -6586,6 +6213,12 @@ "value": 2074.0, "unit": "#" }, + "peak name": "1", + "identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_963", + "peak height": { + "value": 334.019, + "unit": "RFU" + }, "peak area": { "value": 1.263, "unit": "(unitless)" @@ -6598,19 +6231,13 @@ "value": 50.34, "unit": "%" }, - "comment": "18S" - }, - { - "peak identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_969", - "peak name": "2", - "peak height": { - "value": 327.571, - "unit": "RFU" - }, + "comment": "18S", "peak start": { - "value": 4420.0, + "value": 1433.0, "unit": "#" - }, + } + }, + { "peak end": { "value": 8898.0, "unit": "#" @@ -6619,6 +6246,12 @@ "value": 6392.0, "unit": "#" }, + "peak name": "2", + "identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_969", + "peak height": { + "value": 327.571, + "unit": "RFU" + }, "peak area": { "value": 1.246, "unit": "(unitless)" @@ -6631,7 +6264,11 @@ "value": 49.66, "unit": "%" }, - "comment": "28S" + "comment": "28S", + "peak start": { + "value": 4420.0, + "unit": "#" + } } ] } @@ -6643,24 +6280,23 @@ "unit": "degC" } } - ] - }, - "analyst": "TapeStation User", - "analytical method identifier": "RNA", - "method version": "5.1.0.47235", - "experimental data identifier": "\\\\Mac\\Home\\Documents\\Agilent\\TapeStation Data\\Demo Files\\Eukaryotic RNA-Plate-64.RNA" + ], + "analytical method identifier": "RNA", + "method version": "5.1.0.47235", + "experimental data identifier": "\\\\Mac\\Home\\Documents\\Agilent\\TapeStation Data\\Demo Files\\Eukaryotic RNA-Plate-64.RNA" + } }, { + "analyst": "TapeStation User", "measurement aggregate document": { "measurement document": [ { - "measurement time": "2015-07-21T08:14:29-05:00", - "measurement identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_975", "device control aggregate document": { "device control document": [ { "device type": "electrophoresis device", - "detection type": "fluorescence" + "detection type": "fluorescence", + "device identifier": "32768" } ] }, @@ -6669,22 +6305,14 @@ "description": "Human Foetal Brain", "location identifier": "C7" }, + "measurement identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_975", + "measurement time": "2015-07-21T08:14:29-05:00", "processed data aggregate document": { "processed data document": [ { "peak list": { "peak": [ { - "peak identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_977", - "peak name": "-", - "peak height": { - "value": 2627.326, - "unit": "RFU" - }, - "peak start": { - "value": 17.0, - "unit": "#" - }, "peak end": { "value": 39.0, "unit": "#" @@ -6693,31 +6321,23 @@ "value": 25.0, "unit": "#" }, + "peak name": "-", + "identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_977", + "peak height": { + "value": 2627.326, + "unit": "RFU" + }, "peak area": { "value": 1.0, "unit": "(unitless)" }, - "relative peak area": { - "value": "NaN", - "unit": "%" - }, - "relative corrected peak area": { - "value": "NaN", - "unit": "%" - }, - "comment": "Lower Marker" - }, - { - "peak identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_984", - "peak name": "1", - "peak height": { - "value": 4567.336, - "unit": "RFU" - }, + "comment": "Lower Marker", "peak start": { - "value": 1554.0, + "value": 17.0, "unit": "#" - }, + } + }, + { "peak end": { "value": 2275.0, "unit": "#" @@ -6726,6 +6346,12 @@ "value": 1844.0, "unit": "#" }, + "peak name": "1", + "identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_984", + "peak height": { + "value": 4567.336, + "unit": "RFU" + }, "peak area": { "value": 0.659, "unit": "(unitless)" @@ -6738,19 +6364,13 @@ "value": 32.56, "unit": "%" }, - "comment": "18S" - }, - { - "peak identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_990", - "peak name": "2", - "peak height": { - "value": 7112.527, - "unit": "RFU" - }, + "comment": "18S", "peak start": { - "value": 3855.0, + "value": 1554.0, "unit": "#" - }, + } + }, + { "peak end": { "value": 7650.0, "unit": "#" @@ -6759,6 +6379,12 @@ "value": 5338.0, "unit": "#" }, + "peak name": "2", + "identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_990", + "peak height": { + "value": 7112.527, + "unit": "RFU" + }, "peak area": { "value": 1.365, "unit": "(unitless)" @@ -6771,7 +6397,11 @@ "value": 67.44, "unit": "%" }, - "comment": "28S" + "comment": "28S", + "peak start": { + "value": 3855.0, + "unit": "#" + } } ] } @@ -6783,24 +6413,23 @@ "unit": "degC" } } - ] - }, - "analyst": "TapeStation User", - "analytical method identifier": "RNA", - "method version": "5.1.0.47235", - "experimental data identifier": "\\\\Mac\\Home\\Documents\\Agilent\\TapeStation Data\\Demo Files\\Eukaryotic RNA-Plate-64.RNA" + ], + "analytical method identifier": "RNA", + "method version": "5.1.0.47235", + "experimental data identifier": "\\\\Mac\\Home\\Documents\\Agilent\\TapeStation Data\\Demo Files\\Eukaryotic RNA-Plate-64.RNA" + } }, { + "analyst": "TapeStation User", "measurement aggregate document": { "measurement document": [ { - "measurement time": "2015-07-21T08:14:29-05:00", - "measurement identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_996", "device control aggregate document": { "device control document": [ { "device type": "electrophoresis device", - "detection type": "fluorescence" + "detection type": "fluorescence", + "device identifier": "32768" } ] }, @@ -6809,22 +6438,14 @@ "description": "Human Brain", "location identifier": "D7" }, + "measurement identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_996", + "measurement time": "2015-07-21T08:14:29-05:00", "processed data aggregate document": { "processed data document": [ { "peak list": { "peak": [ { - "peak identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_998", - "peak name": "-", - "peak height": { - "value": 2765.93, - "unit": "RFU" - }, - "peak start": { - "value": 17.0, - "unit": "#" - }, "peak end": { "value": 39.0, "unit": "#" @@ -6833,31 +6454,23 @@ "value": 25.0, "unit": "#" }, + "peak name": "-", + "identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_998", + "peak height": { + "value": 2765.93, + "unit": "RFU" + }, "peak area": { "value": 1.0, "unit": "(unitless)" }, - "relative peak area": { - "value": "NaN", - "unit": "%" - }, - "relative corrected peak area": { - "value": "NaN", - "unit": "%" - }, - "comment": "Lower Marker" - }, - { - "peak identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1005", - "peak name": "1", - "peak height": { - "value": 3538.899, - "unit": "RFU" - }, + "comment": "Lower Marker", "peak start": { - "value": 1543.0, + "value": 17.0, "unit": "#" - }, + } + }, + { "peak end": { "value": 2219.0, "unit": "#" @@ -6866,6 +6479,12 @@ "value": 1825.0, "unit": "#" }, + "peak name": "1", + "identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1005", + "peak height": { + "value": 3538.899, + "unit": "RFU" + }, "peak area": { "value": 0.48, "unit": "(unitless)" @@ -6878,19 +6497,13 @@ "value": 41.1, "unit": "%" }, - "comment": "18S" - }, - { - "peak identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1011", - "peak name": "2", - "peak height": { - "value": 3787.622, - "unit": "RFU" - }, + "comment": "18S", "peak start": { - "value": 4055.0, + "value": 1543.0, "unit": "#" - }, + } + }, + { "peak end": { "value": 8443.0, "unit": "#" @@ -6899,6 +6512,12 @@ "value": 5563.0, "unit": "#" }, + "peak name": "2", + "identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1011", + "peak height": { + "value": 3787.622, + "unit": "RFU" + }, "peak area": { "value": 0.687, "unit": "(unitless)" @@ -6911,7 +6530,11 @@ "value": 58.9, "unit": "%" }, - "comment": "28S" + "comment": "28S", + "peak start": { + "value": 4055.0, + "unit": "#" + } } ] } @@ -6923,24 +6546,23 @@ "unit": "degC" } } - ] - }, - "analyst": "TapeStation User", - "analytical method identifier": "RNA", - "method version": "5.1.0.47235", - "experimental data identifier": "\\\\Mac\\Home\\Documents\\Agilent\\TapeStation Data\\Demo Files\\Eukaryotic RNA-Plate-64.RNA" + ], + "analytical method identifier": "RNA", + "method version": "5.1.0.47235", + "experimental data identifier": "\\\\Mac\\Home\\Documents\\Agilent\\TapeStation Data\\Demo Files\\Eukaryotic RNA-Plate-64.RNA" + } }, { + "analyst": "TapeStation User", "measurement aggregate document": { "measurement document": [ { - "measurement time": "2015-07-21T08:14:29-05:00", - "measurement identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1017", "device control aggregate document": { "device control document": [ { "device type": "electrophoresis device", - "detection type": "fluorescence" + "detection type": "fluorescence", + "device identifier": "32768" } ] }, @@ -6949,22 +6571,14 @@ "description": "Human Foetal Liver", "location identifier": "E7" }, + "measurement identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1017", + "measurement time": "2015-07-21T08:14:29-05:00", "processed data aggregate document": { "processed data document": [ { "peak list": { "peak": [ { - "peak identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1019", - "peak name": "-", - "peak height": { - "value": 2673.075, - "unit": "RFU" - }, - "peak start": { - "value": 17.0, - "unit": "#" - }, "peak end": { "value": 39.0, "unit": "#" @@ -6973,31 +6587,23 @@ "value": 25.0, "unit": "#" }, + "peak name": "-", + "identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1019", + "peak height": { + "value": 2673.075, + "unit": "RFU" + }, "peak area": { "value": 1.0, "unit": "(unitless)" }, - "relative peak area": { - "value": "NaN", - "unit": "%" - }, - "relative corrected peak area": { - "value": "NaN", - "unit": "%" - }, - "comment": "Lower Marker" - }, - { - "peak identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1026", - "peak name": "1", - "peak height": { - "value": 4749.358, - "unit": "RFU" - }, + "comment": "Lower Marker", "peak start": { - "value": 1540.0, + "value": 17.0, "unit": "#" - }, + } + }, + { "peak end": { "value": 2197.0, "unit": "#" @@ -7006,6 +6612,12 @@ "value": 1790.0, "unit": "#" }, + "peak name": "1", + "identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1026", + "peak height": { + "value": 4749.358, + "unit": "RFU" + }, "peak area": { "value": 0.625, "unit": "(unitless)" @@ -7018,19 +6630,13 @@ "value": 41.8, "unit": "%" }, - "comment": "18S" - }, - { - "peak identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1032", - "peak name": "2", - "peak height": { - "value": 5104.06, - "unit": "RFU" - }, + "comment": "18S", "peak start": { - "value": 3777.0, + "value": 1540.0, "unit": "#" - }, + } + }, + { "peak end": { "value": 7212.0, "unit": "#" @@ -7039,6 +6645,12 @@ "value": 5249.0, "unit": "#" }, + "peak name": "2", + "identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1032", + "peak height": { + "value": 5104.06, + "unit": "RFU" + }, "peak area": { "value": 0.87, "unit": "(unitless)" @@ -7051,7 +6663,11 @@ "value": 58.2, "unit": "%" }, - "comment": "28S" + "comment": "28S", + "peak start": { + "value": 3777.0, + "unit": "#" + } } ] } @@ -7063,24 +6679,23 @@ "unit": "degC" } } - ] - }, - "analyst": "TapeStation User", - "analytical method identifier": "RNA", - "method version": "5.1.0.47235", - "experimental data identifier": "\\\\Mac\\Home\\Documents\\Agilent\\TapeStation Data\\Demo Files\\Eukaryotic RNA-Plate-64.RNA" + ], + "analytical method identifier": "RNA", + "method version": "5.1.0.47235", + "experimental data identifier": "\\\\Mac\\Home\\Documents\\Agilent\\TapeStation Data\\Demo Files\\Eukaryotic RNA-Plate-64.RNA" + } }, { + "analyst": "TapeStation User", "measurement aggregate document": { "measurement document": [ { - "measurement time": "2015-07-21T08:14:29-05:00", - "measurement identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1038", "device control aggregate document": { "device control document": [ { "device type": "electrophoresis device", - "detection type": "fluorescence" + "detection type": "fluorescence", + "device identifier": "32768" } ] }, @@ -7089,22 +6704,14 @@ "description": "Human Heart", "location identifier": "F7" }, + "measurement identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1038", + "measurement time": "2015-07-21T08:14:29-05:00", "processed data aggregate document": { "processed data document": [ { "peak list": { "peak": [ { - "peak identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1040", - "peak name": "-", - "peak height": { - "value": 2304.72, - "unit": "RFU" - }, - "peak start": { - "value": 17.0, - "unit": "#" - }, "peak end": { "value": 39.0, "unit": "#" @@ -7113,31 +6720,23 @@ "value": 25.0, "unit": "#" }, + "peak name": "-", + "identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1040", + "peak height": { + "value": 2304.72, + "unit": "RFU" + }, "peak area": { "value": 1.0, "unit": "(unitless)" }, - "relative peak area": { - "value": "NaN", - "unit": "%" - }, - "relative corrected peak area": { - "value": "NaN", - "unit": "%" - }, - "comment": "Lower Marker" - }, - { - "peak identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1047", - "peak name": "1", - "peak height": { - "value": 5208.949, - "unit": "RFU" - }, + "comment": "Lower Marker", "peak start": { - "value": 1155.0, + "value": 17.0, "unit": "#" - }, + } + }, + { "peak end": { "value": 2166.0, "unit": "#" @@ -7146,6 +6745,12 @@ "value": 1787.0, "unit": "#" }, + "peak name": "1", + "identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1047", + "peak height": { + "value": 5208.949, + "unit": "RFU" + }, "peak area": { "value": 1.124, "unit": "(unitless)" @@ -7158,19 +6763,13 @@ "value": 46.85, "unit": "%" }, - "comment": "18S" - }, - { - "peak identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1053", - "peak name": "2", - "peak height": { - "value": 5803.442, - "unit": "RFU" - }, + "comment": "18S", "peak start": { - "value": 3739.0, + "value": 1155.0, "unit": "#" - }, + } + }, + { "peak end": { "value": 8430.0, "unit": "#" @@ -7179,6 +6778,12 @@ "value": 5099.0, "unit": "#" }, + "peak name": "2", + "identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1053", + "peak height": { + "value": 5803.442, + "unit": "RFU" + }, "peak area": { "value": 1.275, "unit": "(unitless)" @@ -7191,7 +6796,11 @@ "value": 53.15, "unit": "%" }, - "comment": "28S" + "comment": "28S", + "peak start": { + "value": 3739.0, + "unit": "#" + } } ] } @@ -7203,24 +6812,23 @@ "unit": "degC" } } - ] - }, - "analyst": "TapeStation User", - "analytical method identifier": "RNA", - "method version": "5.1.0.47235", - "experimental data identifier": "\\\\Mac\\Home\\Documents\\Agilent\\TapeStation Data\\Demo Files\\Eukaryotic RNA-Plate-64.RNA" + ], + "analytical method identifier": "RNA", + "method version": "5.1.0.47235", + "experimental data identifier": "\\\\Mac\\Home\\Documents\\Agilent\\TapeStation Data\\Demo Files\\Eukaryotic RNA-Plate-64.RNA" + } }, { + "analyst": "TapeStation User", "measurement aggregate document": { "measurement document": [ { - "measurement time": "2015-07-21T08:14:29-05:00", - "measurement identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1059", "device control aggregate document": { "device control document": [ { "device type": "electrophoresis device", - "detection type": "fluorescence" + "detection type": "fluorescence", + "device identifier": "32768" } ] }, @@ -7229,22 +6837,14 @@ "description": "Human Salivary Gland", "location identifier": "G7" }, + "measurement identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1059", + "measurement time": "2015-07-21T08:14:29-05:00", "processed data aggregate document": { "processed data document": [ { "peak list": { "peak": [ { - "peak identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1061", - "peak name": "-", - "peak height": { - "value": 2650.185, - "unit": "RFU" - }, - "peak start": { - "value": 17.0, - "unit": "#" - }, "peak end": { "value": 39.0, "unit": "#" @@ -7253,31 +6853,23 @@ "value": 25.0, "unit": "#" }, + "peak name": "-", + "identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1061", + "peak height": { + "value": 2650.185, + "unit": "RFU" + }, "peak area": { "value": 1.0, "unit": "(unitless)" }, - "relative peak area": { - "value": "NaN", - "unit": "%" - }, - "relative corrected peak area": { - "value": "NaN", - "unit": "%" - }, - "comment": "Lower Marker" - }, - { - "peak identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1068", - "peak name": "1", - "peak height": { - "value": 5132.335, - "unit": "RFU" - }, + "comment": "Lower Marker", "peak start": { - "value": 1459.0, + "value": 17.0, "unit": "#" - }, + } + }, + { "peak end": { "value": 2007.0, "unit": "#" @@ -7286,6 +6878,12 @@ "value": 1719.0, "unit": "#" }, + "peak name": "1", + "identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1068", + "peak height": { + "value": 5132.335, + "unit": "RFU" + }, "peak area": { "value": 0.679, "unit": "(unitless)" @@ -7298,19 +6896,13 @@ "value": 43.49, "unit": "%" }, - "comment": "18S" - }, - { - "peak identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1074", - "peak name": "2", - "peak height": { - "value": 4647.263, - "unit": "RFU" - }, + "comment": "18S", "peak start": { - "value": 3652.0, + "value": 1459.0, "unit": "#" - }, + } + }, + { "peak end": { "value": 7923.0, "unit": "#" @@ -7319,6 +6911,12 @@ "value": 4952.0, "unit": "#" }, + "peak name": "2", + "identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1074", + "peak height": { + "value": 4647.263, + "unit": "RFU" + }, "peak area": { "value": 0.882, "unit": "(unitless)" @@ -7331,7 +6929,11 @@ "value": 56.51, "unit": "%" }, - "comment": "28S" + "comment": "28S", + "peak start": { + "value": 3652.0, + "unit": "#" + } } ] } @@ -7343,24 +6945,23 @@ "unit": "degC" } } - ] - }, - "analyst": "TapeStation User", - "analytical method identifier": "RNA", - "method version": "5.1.0.47235", - "experimental data identifier": "\\\\Mac\\Home\\Documents\\Agilent\\TapeStation Data\\Demo Files\\Eukaryotic RNA-Plate-64.RNA" + ], + "analytical method identifier": "RNA", + "method version": "5.1.0.47235", + "experimental data identifier": "\\\\Mac\\Home\\Documents\\Agilent\\TapeStation Data\\Demo Files\\Eukaryotic RNA-Plate-64.RNA" + } }, { + "analyst": "TapeStation User", "measurement aggregate document": { "measurement document": [ { - "measurement time": "2015-07-21T08:14:29-05:00", - "measurement identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1080", "device control aggregate document": { "device control document": [ { "device type": "electrophoresis device", - "detection type": "fluorescence" + "detection type": "fluorescence", + "device identifier": "32768" } ] }, @@ -7369,22 +6970,14 @@ "description": "Human Placenta", "location identifier": "H7" }, + "measurement identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1080", + "measurement time": "2015-07-21T08:14:29-05:00", "processed data aggregate document": { "processed data document": [ { "peak list": { "peak": [ { - "peak identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1082", - "peak name": "-", - "peak height": { - "value": 1787.828, - "unit": "RFU" - }, - "peak start": { - "value": 17.0, - "unit": "#" - }, "peak end": { "value": 38.0, "unit": "#" @@ -7393,31 +6986,23 @@ "value": 25.0, "unit": "#" }, + "peak name": "-", + "identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1082", + "peak height": { + "value": 1787.828, + "unit": "RFU" + }, "peak area": { "value": 1.0, "unit": "(unitless)" }, - "relative peak area": { - "value": "NaN", - "unit": "%" - }, - "relative corrected peak area": { - "value": "NaN", - "unit": "%" - }, - "comment": "Lower Marker" - }, - { - "peak identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1089", - "peak name": "1", - "peak height": { - "value": 5741.198, - "unit": "RFU" - }, + "comment": "Lower Marker", "peak start": { - "value": 1589.0, + "value": 17.0, "unit": "#" - }, + } + }, + { "peak end": { "value": 2298.0, "unit": "#" @@ -7426,6 +7011,12 @@ "value": 1847.0, "unit": "#" }, + "peak name": "1", + "identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1089", + "peak height": { + "value": 5741.198, + "unit": "RFU" + }, "peak area": { "value": 1.37, "unit": "(unitless)" @@ -7438,19 +7029,13 @@ "value": 34.43, "unit": "%" }, - "comment": "18S" - }, - { - "peak identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1095", - "peak name": "2", - "peak height": { - "value": 8629.987, - "unit": "RFU" - }, + "comment": "18S", "peak start": { - "value": 3794.0, + "value": 1589.0, "unit": "#" - }, + } + }, + { "peak end": { "value": 8037.0, "unit": "#" @@ -7459,6 +7044,12 @@ "value": 5019.0, "unit": "#" }, + "peak name": "2", + "identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1095", + "peak height": { + "value": 8629.987, + "unit": "RFU" + }, "peak area": { "value": 2.609, "unit": "(unitless)" @@ -7471,7 +7062,11 @@ "value": 65.57, "unit": "%" }, - "comment": "28S" + "comment": "28S", + "peak start": { + "value": 3794.0, + "unit": "#" + } } ] } @@ -7483,24 +7078,23 @@ "unit": "degC" } } - ] - }, - "analyst": "TapeStation User", - "analytical method identifier": "RNA", - "method version": "5.1.0.47235", - "experimental data identifier": "\\\\Mac\\Home\\Documents\\Agilent\\TapeStation Data\\Demo Files\\Eukaryotic RNA-Plate-64.RNA" + ], + "analytical method identifier": "RNA", + "method version": "5.1.0.47235", + "experimental data identifier": "\\\\Mac\\Home\\Documents\\Agilent\\TapeStation Data\\Demo Files\\Eukaryotic RNA-Plate-64.RNA" + } }, { + "analyst": "TapeStation User", "measurement aggregate document": { "measurement document": [ { - "measurement time": "2015-07-21T08:14:29-05:00", - "measurement identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1101", "device control aggregate document": { "device control document": [ { "device type": "electrophoresis device", - "detection type": "fluorescence" + "detection type": "fluorescence", + "device identifier": "32768" } ] }, @@ -7509,22 +7103,14 @@ "description": "Human Skeletal Muscle", "location identifier": "A8" }, + "measurement identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1101", + "measurement time": "2015-07-21T08:14:29-05:00", "processed data aggregate document": { "processed data document": [ { "peak list": { "peak": [ { - "peak identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1103", - "peak name": "-", - "peak height": { - "value": 2687.465, - "unit": "RFU" - }, - "peak start": { - "value": 17.0, - "unit": "#" - }, "peak end": { "value": 38.0, "unit": "#" @@ -7533,31 +7119,23 @@ "value": 25.0, "unit": "#" }, + "peak name": "-", + "identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1103", + "peak height": { + "value": 2687.465, + "unit": "RFU" + }, "peak area": { "value": 1.0, "unit": "(unitless)" }, - "relative peak area": { - "value": "NaN", - "unit": "%" - }, - "relative corrected peak area": { - "value": "NaN", - "unit": "%" - }, - "comment": "Lower Marker" - }, - { - "peak identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1110", - "peak name": "1", - "peak height": { - "value": 4695.71, - "unit": "RFU" - }, + "comment": "Lower Marker", "peak start": { - "value": 1244.0, + "value": 17.0, "unit": "#" - }, + } + }, + { "peak end": { "value": 2383.0, "unit": "#" @@ -7566,6 +7144,12 @@ "value": 1967.0, "unit": "#" }, + "peak name": "1", + "identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1110", + "peak height": { + "value": 4695.71, + "unit": "RFU" + }, "peak area": { "value": 0.968, "unit": "(unitless)" @@ -7576,21 +7160,15 @@ }, "relative corrected peak area": { "value": 48.63, - "unit": "%" - }, - "comment": "18S" - }, - { - "peak identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1116", - "peak name": "2", - "peak height": { - "value": 5029.667, - "unit": "RFU" + "unit": "%" }, + "comment": "18S", "peak start": { - "value": 4320.0, + "value": 1244.0, "unit": "#" - }, + } + }, + { "peak end": { "value": 9461.0, "unit": "#" @@ -7599,6 +7177,12 @@ "value": 6001.0, "unit": "#" }, + "peak name": "2", + "identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1116", + "peak height": { + "value": 5029.667, + "unit": "RFU" + }, "peak area": { "value": 1.023, "unit": "(unitless)" @@ -7611,7 +7195,11 @@ "value": 51.37, "unit": "%" }, - "comment": "28S" + "comment": "28S", + "peak start": { + "value": 4320.0, + "unit": "#" + } } ] } @@ -7623,24 +7211,23 @@ "unit": "degC" } } - ] - }, - "analyst": "TapeStation User", - "analytical method identifier": "RNA", - "method version": "5.1.0.47235", - "experimental data identifier": "\\\\Mac\\Home\\Documents\\Agilent\\TapeStation Data\\Demo Files\\Eukaryotic RNA-Plate-64.RNA" + ], + "analytical method identifier": "RNA", + "method version": "5.1.0.47235", + "experimental data identifier": "\\\\Mac\\Home\\Documents\\Agilent\\TapeStation Data\\Demo Files\\Eukaryotic RNA-Plate-64.RNA" + } }, { + "analyst": "TapeStation User", "measurement aggregate document": { "measurement document": [ { - "measurement time": "2015-07-21T08:14:29-05:00", - "measurement identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1122", "device control aggregate document": { "device control document": [ { "device type": "electrophoresis device", - "detection type": "fluorescence" + "detection type": "fluorescence", + "device identifier": "32768" } ] }, @@ -7649,22 +7236,14 @@ "description": "Human Spleen", "location identifier": "B8" }, + "measurement identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1122", + "measurement time": "2015-07-21T08:14:29-05:00", "processed data aggregate document": { "processed data document": [ { "peak list": { "peak": [ { - "peak identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1124", - "peak name": "-", - "peak height": { - "value": 2960.208, - "unit": "RFU" - }, - "peak start": { - "value": 17.0, - "unit": "#" - }, "peak end": { "value": 38.0, "unit": "#" @@ -7673,31 +7252,23 @@ "value": 25.0, "unit": "#" }, + "peak name": "-", + "identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1124", + "peak height": { + "value": 2960.208, + "unit": "RFU" + }, "peak area": { "value": 1.0, "unit": "(unitless)" }, - "relative peak area": { - "value": "NaN", - "unit": "%" - }, - "relative corrected peak area": { - "value": "NaN", - "unit": "%" - }, - "comment": "Lower Marker" - }, - { - "peak identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1131", - "peak name": "1", - "peak height": { - "value": 5040.825, - "unit": "RFU" - }, + "comment": "Lower Marker", "peak start": { - "value": 1621.0, + "value": 17.0, "unit": "#" - }, + } + }, + { "peak end": { "value": 2303.0, "unit": "#" @@ -7706,6 +7277,12 @@ "value": 1867.0, "unit": "#" }, + "peak name": "1", + "identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1131", + "peak height": { + "value": 5040.825, + "unit": "RFU" + }, "peak area": { "value": 0.611, "unit": "(unitless)" @@ -7718,19 +7295,13 @@ "value": 41.17, "unit": "%" }, - "comment": "18S" - }, - { - "peak identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1137", - "peak name": "2", - "peak height": { - "value": 5305.345, - "unit": "RFU" - }, + "comment": "18S", "peak start": { - "value": 4063.0, + "value": 1621.0, "unit": "#" - }, + } + }, + { "peak end": { "value": 8627.0, "unit": "#" @@ -7739,6 +7310,12 @@ "value": 5590.0, "unit": "#" }, + "peak name": "2", + "identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1137", + "peak height": { + "value": 5305.345, + "unit": "RFU" + }, "peak area": { "value": 0.874, "unit": "(unitless)" @@ -7751,7 +7328,11 @@ "value": 58.83, "unit": "%" }, - "comment": "28S" + "comment": "28S", + "peak start": { + "value": 4063.0, + "unit": "#" + } } ] } @@ -7763,24 +7344,23 @@ "unit": "degC" } } - ] - }, - "analyst": "TapeStation User", - "analytical method identifier": "RNA", - "method version": "5.1.0.47235", - "experimental data identifier": "\\\\Mac\\Home\\Documents\\Agilent\\TapeStation Data\\Demo Files\\Eukaryotic RNA-Plate-64.RNA" + ], + "analytical method identifier": "RNA", + "method version": "5.1.0.47235", + "experimental data identifier": "\\\\Mac\\Home\\Documents\\Agilent\\TapeStation Data\\Demo Files\\Eukaryotic RNA-Plate-64.RNA" + } }, { + "analyst": "TapeStation User", "measurement aggregate document": { "measurement document": [ { - "measurement time": "2015-07-21T08:14:29-05:00", - "measurement identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1143", "device control aggregate document": { "device control document": [ { "device type": "electrophoresis device", - "detection type": "fluorescence" + "detection type": "fluorescence", + "device identifier": "32768" } ] }, @@ -7789,22 +7369,14 @@ "description": "Human Thymus", "location identifier": "C8" }, + "measurement identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1143", + "measurement time": "2015-07-21T08:14:29-05:00", "processed data aggregate document": { "processed data document": [ { "peak list": { "peak": [ { - "peak identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1145", - "peak name": "-", - "peak height": { - "value": 2594.633, - "unit": "RFU" - }, - "peak start": { - "value": 17.0, - "unit": "#" - }, "peak end": { "value": 38.0, "unit": "#" @@ -7813,31 +7385,23 @@ "value": 25.0, "unit": "#" }, + "peak name": "-", + "identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1145", + "peak height": { + "value": 2594.633, + "unit": "RFU" + }, "peak area": { "value": 1.0, "unit": "(unitless)" }, - "relative peak area": { - "value": "NaN", - "unit": "%" - }, - "relative corrected peak area": { - "value": "NaN", - "unit": "%" - }, - "comment": "Lower Marker" - }, - { - "peak identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1152", - "peak name": "1", - "peak height": { - "value": 5391.907, - "unit": "RFU" - }, + "comment": "Lower Marker", "peak start": { - "value": 1176.0, + "value": 17.0, "unit": "#" - }, + } + }, + { "peak end": { "value": 2219.0, "unit": "#" @@ -7846,6 +7410,12 @@ "value": 1838.0, "unit": "#" }, + "peak name": "1", + "identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1152", + "peak height": { + "value": 5391.907, + "unit": "RFU" + }, "peak area": { "value": 0.991, "unit": "(unitless)" @@ -7858,19 +7428,13 @@ "value": 37.99, "unit": "%" }, - "comment": "18S" - }, - { - "peak identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1158", - "peak name": "2", - "peak height": { - "value": 6841.327, - "unit": "RFU" - }, + "comment": "18S", "peak start": { - "value": 3253.0, + "value": 1176.0, "unit": "#" - }, + } + }, + { "peak end": { "value": 8753.0, "unit": "#" @@ -7879,6 +7443,12 @@ "value": 5305.0, "unit": "#" }, + "peak name": "2", + "identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1158", + "peak height": { + "value": 6841.327, + "unit": "RFU" + }, "peak area": { "value": 1.618, "unit": "(unitless)" @@ -7891,7 +7461,11 @@ "value": 62.01, "unit": "%" }, - "comment": "28S" + "comment": "28S", + "peak start": { + "value": 3253.0, + "unit": "#" + } } ] } @@ -7903,24 +7477,23 @@ "unit": "degC" } } - ] - }, - "analyst": "TapeStation User", - "analytical method identifier": "RNA", - "method version": "5.1.0.47235", - "experimental data identifier": "\\\\Mac\\Home\\Documents\\Agilent\\TapeStation Data\\Demo Files\\Eukaryotic RNA-Plate-64.RNA" + ], + "analytical method identifier": "RNA", + "method version": "5.1.0.47235", + "experimental data identifier": "\\\\Mac\\Home\\Documents\\Agilent\\TapeStation Data\\Demo Files\\Eukaryotic RNA-Plate-64.RNA" + } }, { + "analyst": "TapeStation User", "measurement aggregate document": { "measurement document": [ { - "measurement time": "2015-07-21T08:14:29-05:00", - "measurement identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1164", "device control aggregate document": { "device control document": [ { "device type": "electrophoresis device", - "detection type": "fluorescence" + "detection type": "fluorescence", + "device identifier": "32768" } ] }, @@ -7929,22 +7502,14 @@ "description": "Human Uterus", "location identifier": "D8" }, + "measurement identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1164", + "measurement time": "2015-07-21T08:14:29-05:00", "processed data aggregate document": { "processed data document": [ { "peak list": { "peak": [ { - "peak identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1166", - "peak name": "-", - "peak height": { - "value": 2457.259, - "unit": "RFU" - }, - "peak start": { - "value": 17.0, - "unit": "#" - }, "peak end": { "value": 39.0, "unit": "#" @@ -7953,31 +7518,23 @@ "value": 25.0, "unit": "#" }, + "peak name": "-", + "identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1166", + "peak height": { + "value": 2457.259, + "unit": "RFU" + }, "peak area": { "value": 1.0, "unit": "(unitless)" }, - "relative peak area": { - "value": "NaN", - "unit": "%" - }, - "relative corrected peak area": { - "value": "NaN", - "unit": "%" - }, - "comment": "Lower Marker" - }, - { - "peak identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1173", - "peak name": "1", - "peak height": { - "value": 4857.858, - "unit": "RFU" - }, + "comment": "Lower Marker", "peak start": { - "value": 1597.0, + "value": 17.0, "unit": "#" - }, + } + }, + { "peak end": { "value": 2307.0, "unit": "#" @@ -7986,6 +7543,12 @@ "value": 1891.0, "unit": "#" }, + "peak name": "1", + "identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1173", + "peak height": { + "value": 4857.858, + "unit": "RFU" + }, "peak area": { "value": 0.717, "unit": "(unitless)" @@ -7998,19 +7561,13 @@ "value": 41.77, "unit": "%" }, - "comment": "18S" - }, - { - "peak identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1179", - "peak name": "2", - "peak height": { - "value": 4988.489, - "unit": "RFU" - }, + "comment": "18S", "peak start": { - "value": 4000.0, + "value": 1597.0, "unit": "#" - }, + } + }, + { "peak end": { "value": 8448.0, "unit": "#" @@ -8019,6 +7576,12 @@ "value": 5703.0, "unit": "#" }, + "peak name": "2", + "identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1179", + "peak height": { + "value": 4988.489, + "unit": "RFU" + }, "peak area": { "value": 1.0, "unit": "(unitless)" @@ -8031,7 +7594,11 @@ "value": 58.23, "unit": "%" }, - "comment": "28S" + "comment": "28S", + "peak start": { + "value": 4000.0, + "unit": "#" + } } ] } @@ -8043,24 +7610,23 @@ "unit": "degC" } } - ] - }, - "analyst": "TapeStation User", - "analytical method identifier": "RNA", - "method version": "5.1.0.47235", - "experimental data identifier": "\\\\Mac\\Home\\Documents\\Agilent\\TapeStation Data\\Demo Files\\Eukaryotic RNA-Plate-64.RNA" + ], + "analytical method identifier": "RNA", + "method version": "5.1.0.47235", + "experimental data identifier": "\\\\Mac\\Home\\Documents\\Agilent\\TapeStation Data\\Demo Files\\Eukaryotic RNA-Plate-64.RNA" + } }, { + "analyst": "TapeStation User", "measurement aggregate document": { "measurement document": [ { - "measurement time": "2015-07-21T08:14:29-05:00", - "measurement identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1185", "device control aggregate document": { "device control document": [ { "device type": "electrophoresis device", - "detection type": "fluorescence" + "detection type": "fluorescence", + "device identifier": "32768" } ] }, @@ -8069,22 +7635,14 @@ "description": "Rat Kidney", "location identifier": "E8" }, + "measurement identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1185", + "measurement time": "2015-07-21T08:14:29-05:00", "processed data aggregate document": { "processed data document": [ { "peak list": { "peak": [ { - "peak identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1187", - "peak name": "-", - "peak height": { - "value": 2550.325, - "unit": "RFU" - }, - "peak start": { - "value": 17.0, - "unit": "#" - }, "peak end": { "value": 39.0, "unit": "#" @@ -8093,31 +7651,23 @@ "value": 25.0, "unit": "#" }, - "peak area": { - "value": 1.0, - "unit": "(unitless)" - }, - "relative peak area": { - "value": "NaN", - "unit": "%" - }, - "relative corrected peak area": { - "value": "NaN", - "unit": "%" - }, - "comment": "Lower Marker" - }, - { - "peak identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1194", - "peak name": "1", + "peak name": "-", + "identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1187", "peak height": { - "value": 4294.45, + "value": 2550.325, "unit": "RFU" }, + "peak area": { + "value": 1.0, + "unit": "(unitless)" + }, + "comment": "Lower Marker", "peak start": { - "value": 1570.0, + "value": 17.0, "unit": "#" - }, + } + }, + { "peak end": { "value": 2270.0, "unit": "#" @@ -8126,6 +7676,12 @@ "value": 1878.0, "unit": "#" }, + "peak name": "1", + "identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1194", + "peak height": { + "value": 4294.45, + "unit": "RFU" + }, "peak area": { "value": 0.615, "unit": "(unitless)" @@ -8138,19 +7694,13 @@ "value": 42.89, "unit": "%" }, - "comment": "18S" - }, - { - "peak identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1200", - "peak name": "2", - "peak height": { - "value": 4335.758, - "unit": "RFU" - }, + "comment": "18S", "peak start": { - "value": 4143.0, + "value": 1570.0, "unit": "#" - }, + } + }, + { "peak end": { "value": 8903.0, "unit": "#" @@ -8159,6 +7709,12 @@ "value": 5772.0, "unit": "#" }, + "peak name": "2", + "identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1200", + "peak height": { + "value": 4335.758, + "unit": "RFU" + }, "peak area": { "value": 0.819, "unit": "(unitless)" @@ -8171,7 +7727,11 @@ "value": 57.11, "unit": "%" }, - "comment": "28S" + "comment": "28S", + "peak start": { + "value": 4143.0, + "unit": "#" + } } ] } @@ -8183,24 +7743,23 @@ "unit": "degC" } } - ] - }, - "analyst": "TapeStation User", - "analytical method identifier": "RNA", - "method version": "5.1.0.47235", - "experimental data identifier": "\\\\Mac\\Home\\Documents\\Agilent\\TapeStation Data\\Demo Files\\Eukaryotic RNA-Plate-64.RNA" + ], + "analytical method identifier": "RNA", + "method version": "5.1.0.47235", + "experimental data identifier": "\\\\Mac\\Home\\Documents\\Agilent\\TapeStation Data\\Demo Files\\Eukaryotic RNA-Plate-64.RNA" + } }, { + "analyst": "TapeStation User", "measurement aggregate document": { "measurement document": [ { - "measurement time": "2015-07-21T08:14:29-05:00", - "measurement identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1206", "device control aggregate document": { "device control document": [ { "device type": "electrophoresis device", - "detection type": "fluorescence" + "detection type": "fluorescence", + "device identifier": "32768" } ] }, @@ -8209,22 +7768,14 @@ "description": "Human Universal Reference RNA", "location identifier": "F8" }, + "measurement identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1206", + "measurement time": "2015-07-21T08:14:29-05:00", "processed data aggregate document": { "processed data document": [ { "peak list": { "peak": [ { - "peak identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1208", - "peak name": "-", - "peak height": { - "value": 1477.117, - "unit": "RFU" - }, - "peak start": { - "value": 17.0, - "unit": "#" - }, "peak end": { "value": 39.0, "unit": "#" @@ -8233,31 +7784,23 @@ "value": 25.0, "unit": "#" }, + "peak name": "-", + "identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1208", + "peak height": { + "value": 1477.117, + "unit": "RFU" + }, "peak area": { "value": 1.0, "unit": "(unitless)" }, - "relative peak area": { - "value": "NaN", - "unit": "%" - }, - "relative corrected peak area": { - "value": "NaN", - "unit": "%" - }, - "comment": "Lower Marker" - }, - { - "peak identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1215", - "peak name": "1", - "peak height": { - "value": 4638.59, - "unit": "RFU" - }, + "comment": "Lower Marker", "peak start": { - "value": 1237.0, + "value": 17.0, "unit": "#" - }, + } + }, + { "peak end": { "value": 2342.0, "unit": "#" @@ -8266,6 +7809,12 @@ "value": 1895.0, "unit": "#" }, + "peak name": "1", + "identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1215", + "peak height": { + "value": 4638.59, + "unit": "RFU" + }, "peak area": { "value": 1.371, "unit": "(unitless)" @@ -8278,19 +7827,13 @@ "value": 29.76, "unit": "%" }, - "comment": "18S" - }, - { - "peak identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1221", - "peak name": "2", - "peak height": { - "value": 8620.227, - "unit": "RFU" - }, + "comment": "18S", "peak start": { - "value": 3801.0, + "value": 1237.0, "unit": "#" - }, + } + }, + { "peak end": { "value": 8975.0, "unit": "#" @@ -8299,6 +7842,12 @@ "value": 5307.0, "unit": "#" }, + "peak name": "2", + "identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1221", + "peak height": { + "value": 8620.227, + "unit": "RFU" + }, "peak area": { "value": 3.237, "unit": "(unitless)" @@ -8311,7 +7860,11 @@ "value": 70.24, "unit": "%" }, - "comment": "28S" + "comment": "28S", + "peak start": { + "value": 3801.0, + "unit": "#" + } } ] } @@ -8323,24 +7876,23 @@ "unit": "degC" } } - ] - }, - "analyst": "TapeStation User", - "analytical method identifier": "RNA", - "method version": "5.1.0.47235", - "experimental data identifier": "\\\\Mac\\Home\\Documents\\Agilent\\TapeStation Data\\Demo Files\\Eukaryotic RNA-Plate-64.RNA" + ], + "analytical method identifier": "RNA", + "method version": "5.1.0.47235", + "experimental data identifier": "\\\\Mac\\Home\\Documents\\Agilent\\TapeStation Data\\Demo Files\\Eukaryotic RNA-Plate-64.RNA" + } }, { + "analyst": "TapeStation User", "measurement aggregate document": { "measurement document": [ { - "measurement time": "2015-07-21T08:14:29-05:00", - "measurement identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1227", "device control aggregate document": { "device control document": [ { "device type": "electrophoresis device", - "detection type": "fluorescence" + "detection type": "fluorescence", + "device identifier": "32768" } ] }, @@ -8349,22 +7901,14 @@ "description": "Mouse Heart", "location identifier": "G8" }, + "measurement identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1227", + "measurement time": "2015-07-21T08:14:29-05:00", "processed data aggregate document": { "processed data document": [ { "peak list": { "peak": [ { - "peak identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1229", - "peak name": "-", - "peak height": { - "value": 7472.726, - "unit": "RFU" - }, - "peak start": { - "value": 17.0, - "unit": "#" - }, "peak end": { "value": 39.0, "unit": "#" @@ -8373,31 +7917,23 @@ "value": 25.0, "unit": "#" }, + "peak name": "-", + "identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1229", + "peak height": { + "value": 7472.726, + "unit": "RFU" + }, "peak area": { "value": 1.0, "unit": "(unitless)" }, - "relative peak area": { - "value": "NaN", - "unit": "%" - }, - "relative corrected peak area": { - "value": "NaN", - "unit": "%" - }, - "comment": "Lower Marker" - }, - { - "peak identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1236", - "peak name": "1", - "peak height": { - "value": 9288.971, - "unit": "RFU" - }, + "comment": "Lower Marker", "peak start": { - "value": 1648.0, + "value": 17.0, "unit": "#" - }, + } + }, + { "peak end": { "value": 2425.0, "unit": "#" @@ -8406,6 +7942,12 @@ "value": 1876.0, "unit": "#" }, + "peak name": "1", + "identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1236", + "peak height": { + "value": 9288.971, + "unit": "RFU" + }, "peak area": { "value": 0.421, "unit": "(unitless)" @@ -8418,19 +7960,13 @@ "value": 32.23, "unit": "%" }, - "comment": "18S" - }, - { - "peak identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1242", - "peak name": "2", - "peak height": { - "value": 11763.699, - "unit": "RFU" - }, + "comment": "18S", "peak start": { - "value": 3558.0, + "value": 1648.0, "unit": "#" - }, + } + }, + { "peak end": { "value": 8426.0, "unit": "#" @@ -8439,6 +7975,12 @@ "value": 5501.0, "unit": "#" }, + "peak name": "2", + "identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1242", + "peak height": { + "value": 11763.699, + "unit": "RFU" + }, "peak area": { "value": 0.886, "unit": "(unitless)" @@ -8451,7 +7993,11 @@ "value": 67.77, "unit": "%" }, - "comment": "28S" + "comment": "28S", + "peak start": { + "value": 3558.0, + "unit": "#" + } } ] } @@ -8463,24 +8009,23 @@ "unit": "degC" } } - ] - }, - "analyst": "TapeStation User", - "analytical method identifier": "RNA", - "method version": "5.1.0.47235", - "experimental data identifier": "\\\\Mac\\Home\\Documents\\Agilent\\TapeStation Data\\Demo Files\\Eukaryotic RNA-Plate-64.RNA" + ], + "analytical method identifier": "RNA", + "method version": "5.1.0.47235", + "experimental data identifier": "\\\\Mac\\Home\\Documents\\Agilent\\TapeStation Data\\Demo Files\\Eukaryotic RNA-Plate-64.RNA" + } }, { + "analyst": "TapeStation User", "measurement aggregate document": { "measurement document": [ { - "measurement time": "2015-07-21T08:14:29-05:00", - "measurement identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1248", "device control aggregate document": { "device control document": [ { "device type": "electrophoresis device", - "detection type": "fluorescence" + "detection type": "fluorescence", + "device identifier": "32768" } ] }, @@ -8489,22 +8034,14 @@ "description": "Rat Heart", "location identifier": "H8" }, + "measurement identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1248", + "measurement time": "2015-07-21T08:14:29-05:00", "processed data aggregate document": { "processed data document": [ { "peak list": { "peak": [ { - "peak identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1250", - "peak name": "-", - "peak height": { - "value": 1277.837, - "unit": "RFU" - }, - "peak start": { - "value": 17.0, - "unit": "#" - }, "peak end": { "value": 38.0, "unit": "#" @@ -8513,31 +8050,23 @@ "value": 25.0, "unit": "#" }, + "peak name": "-", + "identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1250", + "peak height": { + "value": 1277.837, + "unit": "RFU" + }, "peak area": { "value": 1.0, "unit": "(unitless)" }, - "relative peak area": { - "value": "NaN", - "unit": "%" - }, - "relative corrected peak area": { - "value": "NaN", - "unit": "%" - }, - "comment": "Lower Marker" - }, - { - "peak identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1257", - "peak name": "1", - "peak height": { - "value": 4219.353, - "unit": "RFU" - }, + "comment": "Lower Marker", "peak start": { - "value": 1465.0, + "value": 17.0, "unit": "#" - }, + } + }, + { "peak end": { "value": 2151.0, "unit": "#" @@ -8546,6 +8075,12 @@ "value": 1727.0, "unit": "#" }, + "peak name": "1", + "identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1257", + "peak height": { + "value": 4219.353, + "unit": "RFU" + }, "peak area": { "value": 1.404, "unit": "(unitless)" @@ -8558,19 +8093,13 @@ "value": 26.9, "unit": "%" }, - "comment": "18S" - }, - { - "peak identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1263", - "peak name": "2", - "peak height": { - "value": 7909.559, - "unit": "RFU" - }, + "comment": "18S", "peak start": { - "value": 3245.0, + "value": 1465.0, "unit": "#" - }, + } + }, + { "peak end": { "value": 6864.0, "unit": "#" @@ -8579,6 +8108,12 @@ "value": 4338.0, "unit": "#" }, + "peak name": "2", + "identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1263", + "peak height": { + "value": 7909.559, + "unit": "RFU" + }, "peak area": { "value": 3.816, "unit": "(unitless)" @@ -8591,7 +8126,11 @@ "value": 73.1, "unit": "%" }, - "comment": "28S" + "comment": "28S", + "peak start": { + "value": 3245.0, + "unit": "#" + } } ] } @@ -8603,20 +8142,13 @@ "unit": "degC" } } - ] - }, - "analyst": "TapeStation User", - "analytical method identifier": "RNA", - "method version": "5.1.0.47235", - "experimental data identifier": "\\\\Mac\\Home\\Documents\\Agilent\\TapeStation Data\\Demo Files\\Eukaryotic RNA-Plate-64.RNA" + ], + "analytical method identifier": "RNA", + "method version": "5.1.0.47235", + "experimental data identifier": "\\\\Mac\\Home\\Documents\\Agilent\\TapeStation Data\\Demo Files\\Eukaryotic RNA-Plate-64.RNA" + } } ], - "device system document": { - "brand name": "TapeStation", - "product manufacturer": "Agilent", - "device identifier": "32768", - "equipment serial number": "DEDAA00054" - }, "calculated data aggregate document": { "calculated data document": [ { @@ -8625,6 +8157,7 @@ "value": 86.8, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1", "data source aggregate document": { "data source document": [ { @@ -8632,8 +8165,7 @@ "data source feature": "sample" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1" + } }, { "calculated data name": "AssignedQuantity", @@ -8641,6 +8173,7 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_3", "data source aggregate document": { "data source document": [ { @@ -8648,8 +8181,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_3" + } }, { "calculated data name": "CalibratedQuantity", @@ -8657,6 +8189,7 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_4", "data source aggregate document": { "data source document": [ { @@ -8664,8 +8197,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_4" + } }, { "calculated data name": "FromPercent", @@ -8673,6 +8205,7 @@ "value": 80.1, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_5", "data source aggregate document": { "data source document": [ { @@ -8680,8 +8213,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_5" + } }, { "calculated data name": "Molarity", @@ -8689,6 +8221,7 @@ "value": 4710.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_6", "data source aggregate document": { "data source document": [ { @@ -8696,8 +8229,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_6" + } }, { "calculated data name": "RunDistance", @@ -8705,6 +8237,7 @@ "value": 83.2, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_7", "data source aggregate document": { "data source document": [ { @@ -8712,8 +8245,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_7" + } }, { "calculated data name": "ToPercent", @@ -8721,6 +8253,7 @@ "value": 86.2, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_8", "data source aggregate document": { "data source document": [ { @@ -8728,8 +8261,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_8" + } }, { "calculated data name": "CalibratedQuantity", @@ -8737,6 +8269,7 @@ "value": 7.86, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_10", "data source aggregate document": { "data source document": [ { @@ -8744,8 +8277,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_10" + } }, { "calculated data name": "FromPercent", @@ -8753,6 +8285,7 @@ "value": 65.9, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_11", "data source aggregate document": { "data source document": [ { @@ -8760,8 +8293,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_11" + } }, { "calculated data name": "Molarity", @@ -8769,6 +8301,7 @@ "value": 116.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_12", "data source aggregate document": { "data source document": [ { @@ -8776,8 +8309,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_12" + } }, { "calculated data name": "RunDistance", @@ -8785,6 +8317,7 @@ "value": 68.1, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_13", "data source aggregate document": { "data source document": [ { @@ -8792,8 +8325,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_13" + } }, { "calculated data name": "ToPercent", @@ -8801,6 +8333,7 @@ "value": 70.6, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_14", "data source aggregate document": { "data source document": [ { @@ -8808,8 +8341,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_14" + } }, { "calculated data name": "CalibratedQuantity", @@ -8817,6 +8349,7 @@ "value": 16.1, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_16", "data source aggregate document": { "data source document": [ { @@ -8824,8 +8357,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_16" + } }, { "calculated data name": "FromPercent", @@ -8833,6 +8365,7 @@ "value": 58.8, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_17", "data source aggregate document": { "data source document": [ { @@ -8840,8 +8373,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_17" + } }, { "calculated data name": "Molarity", @@ -8849,6 +8381,7 @@ "value": 94.4, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_18", "data source aggregate document": { "data source document": [ { @@ -8856,8 +8389,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_18" + } }, { "calculated data name": "RunDistance", @@ -8865,6 +8397,7 @@ "value": 61.3, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_19", "data source aggregate document": { "data source document": [ { @@ -8872,8 +8405,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_19" + } }, { "calculated data name": "ToPercent", @@ -8881,6 +8413,7 @@ "value": 64.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_20", "data source aggregate document": { "data source document": [ { @@ -8888,8 +8421,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_20" + } }, { "calculated data name": "CalibratedQuantity", @@ -8897,6 +8429,7 @@ "value": 13.3, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_22", "data source aggregate document": { "data source document": [ { @@ -8904,8 +8437,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_22" + } }, { "calculated data name": "FromPercent", @@ -8913,6 +8445,7 @@ "value": 52.2, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_23", "data source aggregate document": { "data source document": [ { @@ -8920,8 +8453,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_23" + } }, { "calculated data name": "Molarity", @@ -8929,6 +8461,7 @@ "value": 39.2, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_24", "data source aggregate document": { "data source document": [ { @@ -8936,8 +8469,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_24" + } }, { "calculated data name": "RunDistance", @@ -8945,6 +8477,7 @@ "value": 54.5, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_25", "data source aggregate document": { "data source document": [ { @@ -8952,8 +8485,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_25" + } }, { "calculated data name": "ToPercent", @@ -8961,6 +8493,7 @@ "value": 56.5, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_26", "data source aggregate document": { "data source document": [ { @@ -8968,8 +8501,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_26" + } }, { "calculated data name": "CalibratedQuantity", @@ -8977,6 +8509,7 @@ "value": 13.5, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_28", "data source aggregate document": { "data source document": [ { @@ -8984,8 +8517,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_28" + } }, { "calculated data name": "FromPercent", @@ -8993,6 +8525,7 @@ "value": 45.1, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_29", "data source aggregate document": { "data source document": [ { @@ -9000,8 +8533,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_29" + } }, { "calculated data name": "Molarity", @@ -9009,6 +8541,7 @@ "value": 19.9, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_30", "data source aggregate document": { "data source document": [ { @@ -9016,8 +8549,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_30" + } }, { "calculated data name": "RunDistance", @@ -9025,6 +8557,7 @@ "value": 47.6, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_31", "data source aggregate document": { "data source document": [ { @@ -9032,8 +8565,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_31" + } }, { "calculated data name": "ToPercent", @@ -9041,6 +8573,7 @@ "value": 49.5, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_32", "data source aggregate document": { "data source document": [ { @@ -9048,8 +8581,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_32" + } }, { "calculated data name": "CalibratedQuantity", @@ -9057,6 +8589,7 @@ "value": 12.9, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_34", "data source aggregate document": { "data source document": [ { @@ -9064,8 +8597,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_34" + } }, { "calculated data name": "FromPercent", @@ -9073,6 +8605,7 @@ "value": 39.2, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_35", "data source aggregate document": { "data source document": [ { @@ -9080,8 +8613,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_35" + } }, { "calculated data name": "Molarity", @@ -9089,6 +8621,7 @@ "value": 9.49, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_36", "data source aggregate document": { "data source document": [ { @@ -9096,8 +8629,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_36" + } }, { "calculated data name": "RunDistance", @@ -9105,6 +8637,7 @@ "value": 41.2, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_37", "data source aggregate document": { "data source document": [ { @@ -9112,8 +8645,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_37" + } }, { "calculated data name": "ToPercent", @@ -9121,6 +8653,7 @@ "value": 42.4, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_38", "data source aggregate document": { "data source document": [ { @@ -9128,8 +8661,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_38" + } }, { "calculated data name": "CalibratedQuantity", @@ -9137,6 +8669,7 @@ "value": 9.39, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_40", "data source aggregate document": { "data source document": [ { @@ -9144,8 +8677,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_40" + } }, { "calculated data name": "FromPercent", @@ -9153,6 +8685,7 @@ "value": 35.8, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_41", "data source aggregate document": { "data source document": [ { @@ -9160,8 +8693,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_41" + } }, { "calculated data name": "Molarity", @@ -9169,6 +8701,7 @@ "value": 4.6, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_42", "data source aggregate document": { "data source document": [ { @@ -9176,8 +8709,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_42" + } }, { "calculated data name": "RunDistance", @@ -9185,6 +8717,7 @@ "value": 38.2, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_43", "data source aggregate document": { "data source document": [ { @@ -9192,8 +8725,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_43" + } }, { "calculated data name": "ToPercent", @@ -9201,6 +8733,7 @@ "value": 39.2, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_44", "data source aggregate document": { "data source document": [ { @@ -9208,8 +8741,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_44" + } }, { "calculated data name": "Concentration", @@ -9217,6 +8749,7 @@ "value": 363.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_46", "data source aggregate document": { "data source document": [ { @@ -9224,8 +8757,7 @@ "data source feature": "sample" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_46" + } }, { "calculated data name": "AssignedQuantity", @@ -9233,6 +8765,7 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_48", "data source aggregate document": { "data source document": [ { @@ -9240,8 +8773,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_48" + } }, { "calculated data name": "CalibratedQuantity", @@ -9249,6 +8781,7 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_49", "data source aggregate document": { "data source document": [ { @@ -9256,8 +8789,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_49" + } }, { "calculated data name": "FromPercent", @@ -9265,6 +8797,7 @@ "value": 79.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_50", "data source aggregate document": { "data source document": [ { @@ -9272,8 +8805,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_50" + } }, { "calculated data name": "Molarity", @@ -9281,6 +8813,7 @@ "value": 4710.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_51", "data source aggregate document": { "data source document": [ { @@ -9288,8 +8821,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_51" + } }, { "calculated data name": "RunDistance", @@ -9297,6 +8829,7 @@ "value": 82.1, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_52", "data source aggregate document": { "data source document": [ { @@ -9304,8 +8837,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_52" + } }, { "calculated data name": "ToPercent", @@ -9313,6 +8845,7 @@ "value": 84.9, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_53", "data source aggregate document": { "data source document": [ { @@ -9320,8 +8853,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_53" + } }, { "calculated data name": "CalibratedQuantity", @@ -9329,6 +8861,7 @@ "value": 67.3, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_55", "data source aggregate document": { "data source document": [ { @@ -9336,8 +8869,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_55" + } }, { "calculated data name": "FromPercent", @@ -9345,6 +8877,7 @@ "value": 45.3, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_56", "data source aggregate document": { "data source document": [ { @@ -9352,8 +8885,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_56" + } }, { "calculated data name": "Molarity", @@ -9361,6 +8893,7 @@ "value": 114.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_57", "data source aggregate document": { "data source document": [ { @@ -9368,8 +8901,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_57" + } }, { "calculated data name": "RunDistance", @@ -9377,6 +8909,7 @@ "value": 48.3, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_58", "data source aggregate document": { "data source document": [ { @@ -9384,8 +8917,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_58" + } }, { "calculated data name": "ToPercent", @@ -9393,6 +8925,7 @@ "value": 49.3, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_59", "data source aggregate document": { "data source document": [ { @@ -9400,8 +8933,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_59" + } }, { "calculated data name": "CalibratedQuantity", @@ -9409,6 +8941,7 @@ "value": 200.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_61", "data source aggregate document": { "data source document": [ { @@ -9416,8 +8949,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_61" + } }, { "calculated data name": "FromPercent", @@ -9425,6 +8957,7 @@ "value": 35.3, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_62", "data source aggregate document": { "data source document": [ { @@ -9432,8 +8965,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_62" + } }, { "calculated data name": "Molarity", @@ -9441,6 +8973,7 @@ "value": 134.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_63", "data source aggregate document": { "data source document": [ { @@ -9448,8 +8981,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_63" + } }, { "calculated data name": "RunDistance", @@ -9457,6 +8989,7 @@ "value": 39.9, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_64", "data source aggregate document": { "data source document": [ { @@ -9464,8 +8997,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_64" + } }, { "calculated data name": "ToPercent", @@ -9473,6 +9005,7 @@ "value": 43.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_65", "data source aggregate document": { "data source document": [ { @@ -9480,8 +9013,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_65" + } }, { "calculated data name": "Concentration", @@ -9489,6 +9021,7 @@ "value": 361.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_67", "data source aggregate document": { "data source document": [ { @@ -9496,8 +9029,7 @@ "data source feature": "sample" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_67" + } }, { "calculated data name": "AssignedQuantity", @@ -9505,6 +9037,7 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_69", "data source aggregate document": { "data source document": [ { @@ -9512,8 +9045,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_69" + } }, { "calculated data name": "CalibratedQuantity", @@ -9521,6 +9053,7 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_70", "data source aggregate document": { "data source document": [ { @@ -9528,8 +9061,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_70" + } }, { "calculated data name": "FromPercent", @@ -9537,6 +9069,7 @@ "value": 78.9, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_71", "data source aggregate document": { "data source document": [ { @@ -9544,8 +9077,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_71" + } }, { "calculated data name": "Molarity", @@ -9553,6 +9085,7 @@ "value": 4710.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_72", "data source aggregate document": { "data source document": [ { @@ -9560,8 +9093,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_72" + } }, { "calculated data name": "RunDistance", @@ -9569,6 +9101,7 @@ "value": 82.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_73", "data source aggregate document": { "data source document": [ { @@ -9576,8 +9109,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_73" + } }, { "calculated data name": "ToPercent", @@ -9585,6 +9117,7 @@ "value": 84.8, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_74", "data source aggregate document": { "data source document": [ { @@ -9592,8 +9125,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_74" + } }, { "calculated data name": "CalibratedQuantity", @@ -9601,6 +9133,7 @@ "value": 69.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_76", "data source aggregate document": { "data source document": [ { @@ -9608,8 +9141,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_76" + } }, { "calculated data name": "FromPercent", @@ -9617,6 +9149,7 @@ "value": 45.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_77", "data source aggregate document": { "data source document": [ { @@ -9624,8 +9157,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_77" + } }, { "calculated data name": "Molarity", @@ -9633,6 +9165,7 @@ "value": 116.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_78", "data source aggregate document": { "data source document": [ { @@ -9640,8 +9173,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_78" + } }, { "calculated data name": "RunDistance", @@ -9649,6 +9181,7 @@ "value": 48.1, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_79", "data source aggregate document": { "data source document": [ { @@ -9656,8 +9189,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_79" + } }, { "calculated data name": "ToPercent", @@ -9665,6 +9197,7 @@ "value": 49.3, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_80", "data source aggregate document": { "data source document": [ { @@ -9672,8 +9205,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_80" + } }, { "calculated data name": "CalibratedQuantity", @@ -9681,6 +9213,7 @@ "value": 203.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_82", "data source aggregate document": { "data source document": [ { @@ -9688,8 +9221,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_82" + } }, { "calculated data name": "FromPercent", @@ -9697,6 +9229,7 @@ "value": 35.3, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_83", "data source aggregate document": { "data source document": [ { @@ -9704,8 +9237,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_83" + } }, { "calculated data name": "Molarity", @@ -9713,6 +9245,7 @@ "value": 131.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_84", "data source aggregate document": { "data source document": [ { @@ -9720,8 +9253,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_84" + } }, { "calculated data name": "RunDistance", @@ -9729,6 +9261,7 @@ "value": 39.6, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_85", "data source aggregate document": { "data source document": [ { @@ -9736,8 +9269,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_85" + } }, { "calculated data name": "ToPercent", @@ -9745,6 +9277,7 @@ "value": 43.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_86", "data source aggregate document": { "data source document": [ { @@ -9752,8 +9285,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_86" + } }, { "calculated data name": "Concentration", @@ -9761,6 +9293,7 @@ "value": 181.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_88", "data source aggregate document": { "data source document": [ { @@ -9768,8 +9301,7 @@ "data source feature": "sample" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_88" + } }, { "calculated data name": "AssignedQuantity", @@ -9777,6 +9309,7 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_90", "data source aggregate document": { "data source document": [ { @@ -9784,8 +9317,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_90" + } }, { "calculated data name": "CalibratedQuantity", @@ -9793,6 +9325,7 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_91", "data source aggregate document": { "data source document": [ { @@ -9800,8 +9333,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_91" + } }, { "calculated data name": "FromPercent", @@ -9809,6 +9341,7 @@ "value": 77.9, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_92", "data source aggregate document": { "data source document": [ { @@ -9816,8 +9349,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_92" + } }, { "calculated data name": "Molarity", @@ -9825,6 +9357,7 @@ "value": 4710.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_93", "data source aggregate document": { "data source document": [ { @@ -9832,8 +9365,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_93" + } }, { "calculated data name": "RunDistance", @@ -9841,6 +9373,7 @@ "value": 81.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_94", "data source aggregate document": { "data source document": [ { @@ -9848,8 +9381,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_94" + } }, { "calculated data name": "ToPercent", @@ -9857,6 +9389,7 @@ "value": 83.9, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_95", "data source aggregate document": { "data source document": [ { @@ -9864,8 +9397,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_95" + } }, { "calculated data name": "CalibratedQuantity", @@ -9873,6 +9405,7 @@ "value": 35.3, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_97", "data source aggregate document": { "data source document": [ { @@ -9880,8 +9413,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_97" + } }, { "calculated data name": "FromPercent", @@ -9889,6 +9421,7 @@ "value": 44.9, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_98", "data source aggregate document": { "data source document": [ { @@ -9896,8 +9429,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_98" + } }, { "calculated data name": "Molarity", @@ -9905,6 +9437,7 @@ "value": 59.8, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_99", "data source aggregate document": { "data source document": [ { @@ -9912,8 +9445,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_99" + } }, { "calculated data name": "RunDistance", @@ -9921,6 +9453,7 @@ "value": 47.6, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_100", "data source aggregate document": { "data source document": [ { @@ -9928,8 +9461,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_100" + } }, { "calculated data name": "ToPercent", @@ -9937,6 +9469,7 @@ "value": 48.8, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_101", "data source aggregate document": { "data source document": [ { @@ -9944,8 +9477,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_101" + } }, { "calculated data name": "CalibratedQuantity", @@ -9953,6 +9485,7 @@ "value": 96.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_103", "data source aggregate document": { "data source document": [ { @@ -9960,8 +9493,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_103" + } }, { "calculated data name": "FromPercent", @@ -9969,6 +9501,7 @@ "value": 35.1, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_104", "data source aggregate document": { "data source document": [ { @@ -9976,8 +9509,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_104" + } }, { "calculated data name": "Molarity", @@ -9985,6 +9517,7 @@ "value": 61.1, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_105", "data source aggregate document": { "data source document": [ { @@ -9992,8 +9525,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_105" + } }, { "calculated data name": "RunDistance", @@ -10001,6 +9533,7 @@ "value": 39.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_106", "data source aggregate document": { "data source document": [ { @@ -10008,8 +9541,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_106" + } }, { "calculated data name": "ToPercent", @@ -10017,6 +9549,7 @@ "value": 42.3, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_107", "data source aggregate document": { "data source document": [ { @@ -10024,8 +9557,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_107" + } }, { "calculated data name": "Concentration", @@ -10033,6 +9565,7 @@ "value": 213.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_109", "data source aggregate document": { "data source document": [ { @@ -10040,8 +9573,7 @@ "data source feature": "sample" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_109" + } }, { "calculated data name": "AssignedQuantity", @@ -10049,6 +9581,7 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_111", "data source aggregate document": { "data source document": [ { @@ -10056,8 +9589,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_111" + } }, { "calculated data name": "CalibratedQuantity", @@ -10065,6 +9597,7 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_112", "data source aggregate document": { "data source document": [ { @@ -10072,8 +9605,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_112" + } }, { "calculated data name": "FromPercent", @@ -10081,6 +9613,7 @@ "value": 77.9, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_113", "data source aggregate document": { "data source document": [ { @@ -10088,8 +9621,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_113" + } }, { "calculated data name": "Molarity", @@ -10097,6 +9629,7 @@ "value": 4710.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_114", "data source aggregate document": { "data source document": [ { @@ -10104,8 +9637,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_114" + } }, { "calculated data name": "RunDistance", @@ -10113,6 +9645,7 @@ "value": 81.1, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_115", "data source aggregate document": { "data source document": [ { @@ -10120,8 +9653,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_115" + } }, { "calculated data name": "ToPercent", @@ -10129,6 +9661,7 @@ "value": 83.9, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_116", "data source aggregate document": { "data source document": [ { @@ -10136,8 +9669,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_116" + } }, { "calculated data name": "CalibratedQuantity", @@ -10145,6 +9677,7 @@ "value": 38.1, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_118", "data source aggregate document": { "data source document": [ { @@ -10152,8 +9685,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_118" + } }, { "calculated data name": "FromPercent", @@ -10161,6 +9693,7 @@ "value": 45.3, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_119", "data source aggregate document": { "data source document": [ { @@ -10168,8 +9701,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_119" + } }, { "calculated data name": "Molarity", @@ -10177,6 +9709,7 @@ "value": 65.3, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_120", "data source aggregate document": { "data source document": [ { @@ -10184,8 +9717,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_120" + } }, { "calculated data name": "RunDistance", @@ -10193,6 +9725,7 @@ "value": 47.8, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_121", "data source aggregate document": { "data source document": [ { @@ -10200,8 +9733,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_121" + } }, { "calculated data name": "ToPercent", @@ -10209,6 +9741,7 @@ "value": 49.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_122", "data source aggregate document": { "data source document": [ { @@ -10216,8 +9749,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_122" + } }, { "calculated data name": "CalibratedQuantity", @@ -10225,6 +9757,7 @@ "value": 108.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_124", "data source aggregate document": { "data source document": [ { @@ -10232,8 +9765,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_124" + } }, { "calculated data name": "FromPercent", @@ -10241,6 +9773,7 @@ "value": 35.5, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_125", "data source aggregate document": { "data source document": [ { @@ -10248,8 +9781,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_125" + } }, { "calculated data name": "Molarity", @@ -10257,6 +9789,7 @@ "value": 70.3, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_126", "data source aggregate document": { "data source document": [ { @@ -10264,8 +9797,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_126" + } }, { "calculated data name": "RunDistance", @@ -10273,6 +9805,7 @@ "value": 39.1, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_127", "data source aggregate document": { "data source document": [ { @@ -10280,8 +9813,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_127" + } }, { "calculated data name": "ToPercent", @@ -10289,6 +9821,7 @@ "value": 42.5, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_128", "data source aggregate document": { "data source document": [ { @@ -10296,8 +9829,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_128" + } }, { "calculated data name": "Concentration", @@ -10305,6 +9837,7 @@ "value": 80.9, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_130", "data source aggregate document": { "data source document": [ { @@ -10312,8 +9845,7 @@ "data source feature": "sample" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_130" + } }, { "calculated data name": "AssignedQuantity", @@ -10321,6 +9853,7 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_132", "data source aggregate document": { "data source document": [ { @@ -10328,8 +9861,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_132" + } }, { "calculated data name": "CalibratedQuantity", @@ -10337,6 +9869,7 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_133", "data source aggregate document": { "data source document": [ { @@ -10344,8 +9877,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_133" + } }, { "calculated data name": "FromPercent", @@ -10353,6 +9885,7 @@ "value": 76.7, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_134", "data source aggregate document": { "data source document": [ { @@ -10360,8 +9893,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_134" + } }, { "calculated data name": "Molarity", @@ -10369,6 +9901,7 @@ "value": 4710.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_135", "data source aggregate document": { "data source document": [ { @@ -10376,8 +9909,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_135" + } }, { "calculated data name": "RunDistance", @@ -10385,6 +9917,7 @@ "value": 79.9, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_136", "data source aggregate document": { "data source document": [ { @@ -10392,8 +9925,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_136" + } }, { "calculated data name": "ToPercent", @@ -10401,6 +9933,7 @@ "value": 82.8, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_137", "data source aggregate document": { "data source document": [ { @@ -10408,8 +9941,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_137" + } }, { "calculated data name": "CalibratedQuantity", @@ -10417,6 +9949,7 @@ "value": 22.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_139", "data source aggregate document": { "data source document": [ { @@ -10424,8 +9957,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_139" + } }, { "calculated data name": "FromPercent", @@ -10433,6 +9965,7 @@ "value": 42.8, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_140", "data source aggregate document": { "data source document": [ { @@ -10440,8 +9973,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_140" + } }, { "calculated data name": "Molarity", @@ -10449,6 +9981,7 @@ "value": 36.7, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_141", "data source aggregate document": { "data source document": [ { @@ -10456,8 +9989,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_141" + } }, { "calculated data name": "RunDistance", @@ -10465,6 +9997,7 @@ "value": 46.7, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_142", "data source aggregate document": { "data source document": [ { @@ -10472,8 +10005,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_142" + } }, { "calculated data name": "ToPercent", @@ -10481,6 +10013,7 @@ "value": 49.7, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_143", "data source aggregate document": { "data source document": [ { @@ -10488,8 +10021,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_143" + } }, { "calculated data name": "CalibratedQuantity", @@ -10497,6 +10029,7 @@ "value": 37.1, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_145", "data source aggregate document": { "data source document": [ { @@ -10504,8 +10037,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_145" + } }, { "calculated data name": "FromPercent", @@ -10513,6 +10045,7 @@ "value": 33.9, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_146", "data source aggregate document": { "data source document": [ { @@ -10520,8 +10053,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_146" + } }, { "calculated data name": "Molarity", @@ -10529,6 +10061,7 @@ "value": 21.1, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_147", "data source aggregate document": { "data source document": [ { @@ -10536,8 +10069,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_147" + } }, { "calculated data name": "RunDistance", @@ -10545,6 +10077,7 @@ "value": 37.5, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_148", "data source aggregate document": { "data source document": [ { @@ -10552,8 +10085,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_148" + } }, { "calculated data name": "ToPercent", @@ -10561,6 +10093,7 @@ "value": 40.8, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_149", "data source aggregate document": { "data source document": [ { @@ -10568,8 +10101,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_149" + } }, { "calculated data name": "Concentration", @@ -10577,6 +10109,7 @@ "value": 85.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_151", "data source aggregate document": { "data source document": [ { @@ -10584,8 +10117,7 @@ "data source feature": "sample" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_151" + } }, { "calculated data name": "AssignedQuantity", @@ -10593,6 +10125,7 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_153", "data source aggregate document": { "data source document": [ { @@ -10600,8 +10133,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_153" + } }, { "calculated data name": "CalibratedQuantity", @@ -10609,6 +10141,7 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_154", "data source aggregate document": { "data source document": [ { @@ -10616,8 +10149,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_154" + } }, { "calculated data name": "FromPercent", @@ -10625,6 +10157,7 @@ "value": 77.9, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_155", "data source aggregate document": { "data source document": [ { @@ -10632,8 +10165,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_155" + } }, { "calculated data name": "Molarity", @@ -10641,6 +10173,7 @@ "value": 4710.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_156", "data source aggregate document": { "data source document": [ { @@ -10648,8 +10181,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_156" + } }, { "calculated data name": "RunDistance", @@ -10657,6 +10189,7 @@ "value": 81.1, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_157", "data source aggregate document": { "data source document": [ { @@ -10664,8 +10197,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_157" + } }, { "calculated data name": "ToPercent", @@ -10673,6 +10205,7 @@ "value": 84.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_158", "data source aggregate document": { "data source document": [ { @@ -10680,8 +10213,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_158" + } }, { "calculated data name": "CalibratedQuantity", @@ -10689,6 +10221,7 @@ "value": 18.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_160", "data source aggregate document": { "data source document": [ { @@ -10696,8 +10229,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_160" + } }, { "calculated data name": "FromPercent", @@ -10705,6 +10237,7 @@ "value": 45.6, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_161", "data source aggregate document": { "data source document": [ { @@ -10712,8 +10245,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_161" + } }, { "calculated data name": "Molarity", @@ -10721,6 +10253,7 @@ "value": 30.3, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_162", "data source aggregate document": { "data source document": [ { @@ -10728,8 +10261,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_162" + } }, { "calculated data name": "RunDistance", @@ -10737,6 +10269,7 @@ "value": 47.6, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_163", "data source aggregate document": { "data source document": [ { @@ -10744,8 +10277,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_163" + } }, { "calculated data name": "ToPercent", @@ -10753,6 +10285,7 @@ "value": 50.7, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_164", "data source aggregate document": { "data source document": [ { @@ -10760,8 +10293,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_164" + } }, { "calculated data name": "CalibratedQuantity", @@ -10769,6 +10301,7 @@ "value": 41.2, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_166", "data source aggregate document": { "data source document": [ { @@ -10776,8 +10309,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_166" + } }, { "calculated data name": "FromPercent", @@ -10785,6 +10317,7 @@ "value": 34.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_167", "data source aggregate document": { "data source document": [ { @@ -10792,8 +10325,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_167" + } }, { "calculated data name": "Molarity", @@ -10801,6 +10333,7 @@ "value": 23.8, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_168", "data source aggregate document": { "data source document": [ { @@ -10808,8 +10341,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_168" + } }, { "calculated data name": "RunDistance", @@ -10817,6 +10349,7 @@ "value": 38.3, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_169", "data source aggregate document": { "data source document": [ { @@ -10824,8 +10357,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_169" + } }, { "calculated data name": "ToPercent", @@ -10833,6 +10365,7 @@ "value": 41.9, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_170", "data source aggregate document": { "data source document": [ { @@ -10840,8 +10373,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_170" + } }, { "calculated data name": "Concentration", @@ -10849,6 +10381,7 @@ "value": 42.3, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_172", "data source aggregate document": { "data source document": [ { @@ -10856,8 +10389,7 @@ "data source feature": "sample" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_172" + } }, { "calculated data name": "AssignedQuantity", @@ -10865,6 +10397,7 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_174", "data source aggregate document": { "data source document": [ { @@ -10872,8 +10405,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_174" + } }, { "calculated data name": "CalibratedQuantity", @@ -10881,6 +10413,7 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_175", "data source aggregate document": { "data source document": [ { @@ -10888,8 +10421,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_175" + } }, { "calculated data name": "FromPercent", @@ -10897,6 +10429,7 @@ "value": 76.4, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_176", "data source aggregate document": { "data source document": [ { @@ -10904,8 +10437,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_176" + } }, { "calculated data name": "Molarity", @@ -10913,6 +10445,7 @@ "value": 4710.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_177", "data source aggregate document": { "data source document": [ { @@ -10920,8 +10453,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_177" + } }, { "calculated data name": "RunDistance", @@ -10929,6 +10461,7 @@ "value": 79.6, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_178", "data source aggregate document": { "data source document": [ { @@ -10936,8 +10469,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_178" + } }, { "calculated data name": "ToPercent", @@ -10945,6 +10477,7 @@ "value": 82.6, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_179", "data source aggregate document": { "data source document": [ { @@ -10952,8 +10485,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_179" + } }, { "calculated data name": "CalibratedQuantity", @@ -10961,6 +10493,7 @@ "value": 9.41, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_181", "data source aggregate document": { "data source document": [ { @@ -10968,8 +10501,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_181" + } }, { "calculated data name": "FromPercent", @@ -10977,6 +10509,7 @@ "value": 44.9, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_182", "data source aggregate document": { "data source document": [ { @@ -10984,8 +10517,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_182" + } }, { "calculated data name": "Molarity", @@ -10993,6 +10525,7 @@ "value": 16.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_183", "data source aggregate document": { "data source document": [ { @@ -11000,8 +10533,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_183" + } }, { "calculated data name": "RunDistance", @@ -11009,6 +10541,7 @@ "value": 46.7, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_184", "data source aggregate document": { "data source document": [ { @@ -11016,8 +10549,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_184" + } }, { "calculated data name": "ToPercent", @@ -11025,6 +10557,7 @@ "value": 50.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_185", "data source aggregate document": { "data source document": [ { @@ -11032,8 +10565,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_185" + } }, { "calculated data name": "CalibratedQuantity", @@ -11041,6 +10573,7 @@ "value": 15.6, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_187", "data source aggregate document": { "data source document": [ { @@ -11048,8 +10581,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_187" + } }, { "calculated data name": "FromPercent", @@ -11057,6 +10589,7 @@ "value": 33.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_188", "data source aggregate document": { "data source document": [ { @@ -11064,8 +10597,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_188" + } }, { "calculated data name": "Molarity", @@ -11073,6 +10605,7 @@ "value": 8.14, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_189", "data source aggregate document": { "data source document": [ { @@ -11080,8 +10613,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_189" + } }, { "calculated data name": "RunDistance", @@ -11089,6 +10621,7 @@ "value": 36.8, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_190", "data source aggregate document": { "data source document": [ { @@ -11096,8 +10629,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_190" + } }, { "calculated data name": "ToPercent", @@ -11105,6 +10637,7 @@ "value": 39.2, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_191", "data source aggregate document": { "data source document": [ { @@ -11112,8 +10645,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_191" + } }, { "calculated data name": "Concentration", @@ -11121,6 +10653,7 @@ "value": 42.7, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_193", "data source aggregate document": { "data source document": [ { @@ -11128,8 +10661,7 @@ "data source feature": "sample" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_193" + } }, { "calculated data name": "AssignedQuantity", @@ -11137,6 +10669,7 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_195", "data source aggregate document": { "data source document": [ { @@ -11144,8 +10677,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_195" + } }, { "calculated data name": "CalibratedQuantity", @@ -11153,6 +10685,7 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_196", "data source aggregate document": { "data source document": [ { @@ -11160,8 +10693,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_196" + } }, { "calculated data name": "FromPercent", @@ -11169,6 +10701,7 @@ "value": 79.1, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_197", "data source aggregate document": { "data source document": [ { @@ -11176,8 +10709,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_197" + } }, { "calculated data name": "Molarity", @@ -11185,6 +10717,7 @@ "value": 4710.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_198", "data source aggregate document": { "data source document": [ { @@ -11192,8 +10725,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_198" + } }, { "calculated data name": "RunDistance", @@ -11201,6 +10733,7 @@ "value": 82.2, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_199", "data source aggregate document": { "data source document": [ { @@ -11208,8 +10741,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_199" + } }, { "calculated data name": "ToPercent", @@ -11217,6 +10749,7 @@ "value": 85.2, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_200", "data source aggregate document": { "data source document": [ { @@ -11224,8 +10757,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_200" + } }, { "calculated data name": "CalibratedQuantity", @@ -11233,6 +10765,7 @@ "value": 9.42, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_202", "data source aggregate document": { "data source document": [ { @@ -11240,8 +10773,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_202" + } }, { "calculated data name": "FromPercent", @@ -11249,6 +10781,7 @@ "value": 45.5, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_203", "data source aggregate document": { "data source document": [ { @@ -11256,8 +10789,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_203" + } }, { "calculated data name": "Molarity", @@ -11265,6 +10797,7 @@ "value": 15.1, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_204", "data source aggregate document": { "data source document": [ { @@ -11272,8 +10805,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_204" + } }, { "calculated data name": "RunDistance", @@ -11281,6 +10813,7 @@ "value": 47.8, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_205", "data source aggregate document": { "data source document": [ { @@ -11288,8 +10821,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_205" + } }, { "calculated data name": "ToPercent", @@ -11297,6 +10829,7 @@ "value": 49.7, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_206", "data source aggregate document": { "data source document": [ { @@ -11304,8 +10837,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_206" + } }, { "calculated data name": "CalibratedQuantity", @@ -11313,6 +10845,7 @@ "value": 16.2, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_208", "data source aggregate document": { "data source document": [ { @@ -11320,8 +10853,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_208" + } }, { "calculated data name": "FromPercent", @@ -11329,6 +10861,7 @@ "value": 34.3, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_209", "data source aggregate document": { "data source document": [ { @@ -11336,8 +10869,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_209" + } }, { "calculated data name": "Molarity", @@ -11345,6 +10877,7 @@ "value": 7.9, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_210", "data source aggregate document": { "data source document": [ { @@ -11352,8 +10885,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_210" + } }, { "calculated data name": "RunDistance", @@ -11361,6 +10893,7 @@ "value": 37.6, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_211", "data source aggregate document": { "data source document": [ { @@ -11368,8 +10901,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_211" + } }, { "calculated data name": "ToPercent", @@ -11377,6 +10909,7 @@ "value": 40.2, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_212", "data source aggregate document": { "data source document": [ { @@ -11384,8 +10917,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_212" + } }, { "calculated data name": "Concentration", @@ -11393,6 +10925,7 @@ "value": 373.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_214", "data source aggregate document": { "data source document": [ { @@ -11400,8 +10933,7 @@ "data source feature": "sample" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_214" + } }, { "calculated data name": "AssignedQuantity", @@ -11409,6 +10941,7 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_216", "data source aggregate document": { "data source document": [ { @@ -11416,8 +10949,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_216" + } }, { "calculated data name": "CalibratedQuantity", @@ -11425,6 +10957,7 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_217", "data source aggregate document": { "data source document": [ { @@ -11432,8 +10965,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_217" + } }, { "calculated data name": "FromPercent", @@ -11441,6 +10973,7 @@ "value": 80.5, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_218", "data source aggregate document": { "data source document": [ { @@ -11448,8 +10981,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_218" + } }, { "calculated data name": "Molarity", @@ -11457,6 +10989,7 @@ "value": 4710.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_219", "data source aggregate document": { "data source document": [ { @@ -11464,8 +10997,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_219" + } }, { "calculated data name": "RunDistance", @@ -11473,6 +11005,7 @@ "value": 83.6, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_220", "data source aggregate document": { "data source document": [ { @@ -11480,8 +11013,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_220" + } }, { "calculated data name": "ToPercent", @@ -11489,6 +11021,7 @@ "value": 86.3, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_221", "data source aggregate document": { "data source document": [ { @@ -11496,8 +11029,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_221" + } }, { "calculated data name": "CalibratedQuantity", @@ -11505,6 +11037,7 @@ "value": 66.3, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_223", "data source aggregate document": { "data source document": [ { @@ -11512,8 +11045,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_223" + } }, { "calculated data name": "FromPercent", @@ -11521,6 +11053,7 @@ "value": 45.9, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_224", "data source aggregate document": { "data source document": [ { @@ -11528,8 +11061,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_224" + } }, { "calculated data name": "Molarity", @@ -11537,6 +11069,7 @@ "value": 106.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_225", "data source aggregate document": { "data source document": [ { @@ -11544,8 +11077,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_225" + } }, { "calculated data name": "RunDistance", @@ -11553,6 +11085,7 @@ "value": 48.6, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_226", "data source aggregate document": { "data source document": [ { @@ -11560,8 +11093,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_226" + } }, { "calculated data name": "ToPercent", @@ -11569,6 +11101,7 @@ "value": 49.6, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_227", "data source aggregate document": { "data source document": [ { @@ -11576,8 +11109,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_227" + } }, { "calculated data name": "CalibratedQuantity", @@ -11585,6 +11117,7 @@ "value": 201.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_229", "data source aggregate document": { "data source document": [ { @@ -11592,8 +11125,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_229" + } }, { "calculated data name": "FromPercent", @@ -11601,6 +11133,7 @@ "value": 36.6, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_230", "data source aggregate document": { "data source document": [ { @@ -11608,8 +11141,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_230" + } }, { "calculated data name": "Molarity", @@ -11617,6 +11149,7 @@ "value": 125.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_231", "data source aggregate document": { "data source document": [ { @@ -11624,8 +11157,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_231" + } }, { "calculated data name": "RunDistance", @@ -11633,6 +11165,7 @@ "value": 40.2, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_232", "data source aggregate document": { "data source document": [ { @@ -11640,8 +11173,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_232" + } }, { "calculated data name": "ToPercent", @@ -11649,6 +11181,7 @@ "value": 43.5, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_233", "data source aggregate document": { "data source document": [ { @@ -11656,8 +11189,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_233" + } }, { "calculated data name": "Concentration", @@ -11665,6 +11197,7 @@ "value": 342.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_235", "data source aggregate document": { "data source document": [ { @@ -11672,8 +11205,7 @@ "data source feature": "sample" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_235" + } }, { "calculated data name": "AssignedQuantity", @@ -11681,6 +11213,7 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_237", "data source aggregate document": { "data source document": [ { @@ -11688,8 +11221,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_237" + } }, { "calculated data name": "CalibratedQuantity", @@ -11697,6 +11229,7 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_238", "data source aggregate document": { "data source document": [ { @@ -11704,8 +11237,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_238" + } }, { "calculated data name": "FromPercent", @@ -11713,6 +11245,7 @@ "value": 78.8, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_239", "data source aggregate document": { "data source document": [ { @@ -11720,8 +11253,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_239" + } }, { "calculated data name": "Molarity", @@ -11729,6 +11261,7 @@ "value": 4710.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_240", "data source aggregate document": { "data source document": [ { @@ -11736,8 +11269,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_240" + } }, { "calculated data name": "RunDistance", @@ -11745,6 +11277,7 @@ "value": 82.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_241", "data source aggregate document": { "data source document": [ { @@ -11752,8 +11285,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_241" + } }, { "calculated data name": "ToPercent", @@ -11761,6 +11293,7 @@ "value": 84.7, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_242", "data source aggregate document": { "data source document": [ { @@ -11768,8 +11301,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_242" + } }, { "calculated data name": "CalibratedQuantity", @@ -11777,6 +11309,7 @@ "value": 64.5, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_244", "data source aggregate document": { "data source document": [ { @@ -11784,8 +11317,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_244" + } }, { "calculated data name": "FromPercent", @@ -11793,6 +11325,7 @@ "value": 44.9, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_245", "data source aggregate document": { "data source document": [ { @@ -11800,8 +11333,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_245" + } }, { "calculated data name": "Molarity", @@ -11809,6 +11341,7 @@ "value": 106.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_246", "data source aggregate document": { "data source document": [ { @@ -11816,8 +11349,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_246" + } }, { "calculated data name": "RunDistance", @@ -11825,6 +11357,7 @@ "value": 47.9, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_247", "data source aggregate document": { "data source document": [ { @@ -11832,8 +11365,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_247" + } }, { "calculated data name": "ToPercent", @@ -11841,6 +11373,7 @@ "value": 48.9, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_248", "data source aggregate document": { "data source document": [ { @@ -11848,8 +11381,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_248" + } }, { "calculated data name": "CalibratedQuantity", @@ -11857,6 +11389,7 @@ "value": 189.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_250", "data source aggregate document": { "data source document": [ { @@ -11864,8 +11397,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_250" + } }, { "calculated data name": "FromPercent", @@ -11873,6 +11405,7 @@ "value": 35.8, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_251", "data source aggregate document": { "data source document": [ { @@ -11880,8 +11413,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_251" + } }, { "calculated data name": "Molarity", @@ -11889,6 +11421,7 @@ "value": 122.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_252", "data source aggregate document": { "data source document": [ { @@ -11896,8 +11429,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_252" + } }, { "calculated data name": "RunDistance", @@ -11905,6 +11437,7 @@ "value": 39.6, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_253", "data source aggregate document": { "data source document": [ { @@ -11912,8 +11445,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_253" + } }, { "calculated data name": "ToPercent", @@ -11921,6 +11453,7 @@ "value": 42.8, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_254", "data source aggregate document": { "data source document": [ { @@ -11928,8 +11461,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_254" + } }, { "calculated data name": "Concentration", @@ -11937,6 +11469,7 @@ "value": 199.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_256", "data source aggregate document": { "data source document": [ { @@ -11944,8 +11477,7 @@ "data source feature": "sample" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_256" + } }, { "calculated data name": "AssignedQuantity", @@ -11953,6 +11485,7 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_258", "data source aggregate document": { "data source document": [ { @@ -11960,8 +11493,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_258" + } }, { "calculated data name": "CalibratedQuantity", @@ -11969,6 +11501,7 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_259", "data source aggregate document": { "data source document": [ { @@ -11976,8 +11509,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_259" + } }, { "calculated data name": "FromPercent", @@ -11985,6 +11517,7 @@ "value": 78.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_260", "data source aggregate document": { "data source document": [ { @@ -11992,8 +11525,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_260" + } }, { "calculated data name": "Molarity", @@ -12001,6 +11533,7 @@ "value": 4710.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_261", "data source aggregate document": { "data source document": [ { @@ -12008,8 +11541,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_261" + } }, { "calculated data name": "RunDistance", @@ -12017,6 +11549,7 @@ "value": 81.2, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_262", "data source aggregate document": { "data source document": [ { @@ -12024,8 +11557,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_262" + } }, { "calculated data name": "ToPercent", @@ -12033,6 +11565,7 @@ "value": 84.3, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_263", "data source aggregate document": { "data source document": [ { @@ -12040,8 +11573,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_263" + } }, { "calculated data name": "CalibratedQuantity", @@ -12049,6 +11581,7 @@ "value": 36.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_265", "data source aggregate document": { "data source document": [ { @@ -12056,8 +11589,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_265" + } }, { "calculated data name": "FromPercent", @@ -12065,6 +11597,7 @@ "value": 45.4, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_266", "data source aggregate document": { "data source document": [ { @@ -12072,8 +11605,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_266" + } }, { "calculated data name": "Molarity", @@ -12081,6 +11613,7 @@ "value": 60.1, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_267", "data source aggregate document": { "data source document": [ { @@ -12088,8 +11621,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_267" + } }, { "calculated data name": "RunDistance", @@ -12097,6 +11629,7 @@ "value": 47.6, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_268", "data source aggregate document": { "data source document": [ { @@ -12104,8 +11637,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_268" + } }, { "calculated data name": "ToPercent", @@ -12113,6 +11645,7 @@ "value": 48.8, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_269", "data source aggregate document": { "data source document": [ { @@ -12120,8 +11653,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_269" + } }, { "calculated data name": "CalibratedQuantity", @@ -12129,6 +11661,7 @@ "value": 102.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_271", "data source aggregate document": { "data source document": [ { @@ -12136,8 +11669,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_271" + } }, { "calculated data name": "FromPercent", @@ -12145,6 +11677,7 @@ "value": 35.5, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_272", "data source aggregate document": { "data source document": [ { @@ -12152,8 +11685,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_272" + } }, { "calculated data name": "Molarity", @@ -12161,6 +11693,7 @@ "value": 65.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_273", "data source aggregate document": { "data source document": [ { @@ -12168,8 +11701,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_273" + } }, { "calculated data name": "RunDistance", @@ -12177,6 +11709,7 @@ "value": 39.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_274", "data source aggregate document": { "data source document": [ { @@ -12184,8 +11717,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_274" + } }, { "calculated data name": "ToPercent", @@ -12193,6 +11725,7 @@ "value": 42.3, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_275", "data source aggregate document": { "data source document": [ { @@ -12200,8 +11733,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_275" + } }, { "calculated data name": "Concentration", @@ -12209,6 +11741,7 @@ "value": 196.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_277", "data source aggregate document": { "data source document": [ { @@ -12216,8 +11749,7 @@ "data source feature": "sample" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_277" + } }, { "calculated data name": "AssignedQuantity", @@ -12225,6 +11757,7 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_279", "data source aggregate document": { "data source document": [ { @@ -12232,8 +11765,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_279" + } }, { "calculated data name": "CalibratedQuantity", @@ -12241,6 +11773,7 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_280", "data source aggregate document": { "data source document": [ { @@ -12248,8 +11781,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_280" + } }, { "calculated data name": "FromPercent", @@ -12257,6 +11789,7 @@ "value": 80.1, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_281", "data source aggregate document": { "data source document": [ { @@ -12264,8 +11797,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_281" + } }, { "calculated data name": "Molarity", @@ -12273,6 +11805,7 @@ "value": 4710.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_282", "data source aggregate document": { "data source document": [ { @@ -12280,8 +11813,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_282" + } }, { "calculated data name": "RunDistance", @@ -12289,6 +11821,7 @@ "value": 83.1, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_283", "data source aggregate document": { "data source document": [ { @@ -12296,8 +11829,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_283" + } }, { "calculated data name": "ToPercent", @@ -12305,6 +11837,7 @@ "value": 86.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_284", "data source aggregate document": { "data source document": [ { @@ -12312,8 +11845,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_284" + } }, { "calculated data name": "CalibratedQuantity", @@ -12321,6 +11853,7 @@ "value": 35.1, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_286", "data source aggregate document": { "data source document": [ { @@ -12328,8 +11861,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_286" + } }, { "calculated data name": "FromPercent", @@ -12337,6 +11869,7 @@ "value": 46.1, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_287", "data source aggregate document": { "data source document": [ { @@ -12344,8 +11877,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_287" + } }, { "calculated data name": "Molarity", @@ -12353,6 +11885,7 @@ "value": 56.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_288", "data source aggregate document": { "data source document": [ { @@ -12360,8 +11893,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_288" + } }, { "calculated data name": "RunDistance", @@ -12369,6 +11901,7 @@ "value": 48.3, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_289", "data source aggregate document": { "data source document": [ { @@ -12376,8 +11909,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_289" + } }, { "calculated data name": "ToPercent", @@ -12385,6 +11917,7 @@ "value": 49.4, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_290", "data source aggregate document": { "data source document": [ { @@ -12392,8 +11925,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_290" + } }, { "calculated data name": "CalibratedQuantity", @@ -12401,6 +11933,7 @@ "value": 96.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_292", "data source aggregate document": { "data source document": [ { @@ -12408,8 +11941,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_292" + } }, { "calculated data name": "FromPercent", @@ -12417,6 +11949,7 @@ "value": 36.1, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_293", "data source aggregate document": { "data source document": [ { @@ -12424,8 +11957,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_293" + } }, { "calculated data name": "Molarity", @@ -12433,6 +11965,7 @@ "value": 56.6, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_294", "data source aggregate document": { "data source document": [ { @@ -12440,8 +11973,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_294" + } }, { "calculated data name": "RunDistance", @@ -12449,6 +11981,7 @@ "value": 39.5, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_295", "data source aggregate document": { "data source document": [ { @@ -12456,8 +11989,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_295" + } }, { "calculated data name": "ToPercent", @@ -12465,6 +11997,7 @@ "value": 42.7, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_296", "data source aggregate document": { "data source document": [ { @@ -12472,8 +12005,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_296" + } }, { "calculated data name": "Concentration", @@ -12481,6 +12013,7 @@ "value": 84.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_298", "data source aggregate document": { "data source document": [ { @@ -12488,8 +12021,7 @@ "data source feature": "sample" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_298" + } }, { "calculated data name": "AssignedQuantity", @@ -12497,6 +12029,7 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_300", "data source aggregate document": { "data source document": [ { @@ -12504,8 +12037,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_300" + } }, { "calculated data name": "CalibratedQuantity", @@ -12513,6 +12045,7 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_301", "data source aggregate document": { "data source document": [ { @@ -12520,8 +12053,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_301" + } }, { "calculated data name": "FromPercent", @@ -12529,6 +12061,7 @@ "value": 77.7, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_302", "data source aggregate document": { "data source document": [ { @@ -12536,8 +12069,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_302" + } }, { "calculated data name": "Molarity", @@ -12545,6 +12077,7 @@ "value": 4710.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_303", "data source aggregate document": { "data source document": [ { @@ -12552,8 +12085,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_303" + } }, { "calculated data name": "RunDistance", @@ -12561,6 +12093,7 @@ "value": 80.9, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_304", "data source aggregate document": { "data source document": [ { @@ -12568,8 +12101,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_304" + } }, { "calculated data name": "ToPercent", @@ -12577,6 +12109,7 @@ "value": 83.8, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_305", "data source aggregate document": { "data source document": [ { @@ -12584,8 +12117,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_305" + } }, { "calculated data name": "CalibratedQuantity", @@ -12593,6 +12125,7 @@ "value": 16.5, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_307", "data source aggregate document": { "data source document": [ { @@ -12600,8 +12133,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_307" + } }, { "calculated data name": "FromPercent", @@ -12609,6 +12141,7 @@ "value": 45.1, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_308", "data source aggregate document": { "data source document": [ { @@ -12616,8 +12149,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_308" + } }, { "calculated data name": "Molarity", @@ -12625,6 +12157,7 @@ "value": 27.4, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_309", "data source aggregate document": { "data source document": [ { @@ -12632,8 +12165,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_309" + } }, { "calculated data name": "RunDistance", @@ -12641,6 +12173,7 @@ "value": 47.3, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_310", "data source aggregate document": { "data source document": [ { @@ -12648,8 +12181,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_310" + } }, { "calculated data name": "ToPercent", @@ -12657,6 +12189,7 @@ "value": 48.8, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_311", "data source aggregate document": { "data source document": [ { @@ -12664,8 +12197,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_311" + } }, { "calculated data name": "CalibratedQuantity", @@ -12673,6 +12205,7 @@ "value": 33.6, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_313", "data source aggregate document": { "data source document": [ { @@ -12680,8 +12213,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_313" + } }, { "calculated data name": "FromPercent", @@ -12689,6 +12221,7 @@ "value": 34.9, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_314", "data source aggregate document": { "data source document": [ { @@ -12696,8 +12229,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_314" + } }, { "calculated data name": "Molarity", @@ -12705,6 +12237,7 @@ "value": 18.9, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_315", "data source aggregate document": { "data source document": [ { @@ -12712,8 +12245,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_315" + } }, { "calculated data name": "RunDistance", @@ -12721,6 +12253,7 @@ "value": 38.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_316", "data source aggregate document": { "data source document": [ { @@ -12728,8 +12261,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_316" + } }, { "calculated data name": "ToPercent", @@ -12737,6 +12269,7 @@ "value": 39.9, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_317", "data source aggregate document": { "data source document": [ { @@ -12744,8 +12277,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_317" + } }, { "calculated data name": "Concentration", @@ -12753,6 +12285,7 @@ "value": 78.3, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_319", "data source aggregate document": { "data source document": [ { @@ -12760,8 +12293,7 @@ "data source feature": "sample" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_319" + } }, { "calculated data name": "AssignedQuantity", @@ -12769,6 +12301,7 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_321", "data source aggregate document": { "data source document": [ { @@ -12776,8 +12309,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_321" + } }, { "calculated data name": "CalibratedQuantity", @@ -12785,6 +12317,7 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_322", "data source aggregate document": { "data source document": [ { @@ -12792,8 +12325,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_322" + } }, { "calculated data name": "FromPercent", @@ -12801,6 +12333,7 @@ "value": 78.1, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_323", "data source aggregate document": { "data source document": [ { @@ -12808,8 +12341,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_323" + } }, { "calculated data name": "Molarity", @@ -12817,6 +12349,7 @@ "value": 4710.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_324", "data source aggregate document": { "data source document": [ { @@ -12824,8 +12357,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_324" + } }, { "calculated data name": "RunDistance", @@ -12833,6 +12365,7 @@ "value": 81.2, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_325", "data source aggregate document": { "data source document": [ { @@ -12840,8 +12373,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_325" + } }, { "calculated data name": "ToPercent", @@ -12849,6 +12381,7 @@ "value": 84.1, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_326", "data source aggregate document": { "data source document": [ { @@ -12856,8 +12389,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_326" + } }, { "calculated data name": "CalibratedQuantity", @@ -12865,6 +12397,7 @@ "value": 17.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_328", "data source aggregate document": { "data source document": [ { @@ -12872,8 +12405,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_328" + } }, { "calculated data name": "FromPercent", @@ -12881,6 +12413,7 @@ "value": 45.7, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_329", "data source aggregate document": { "data source document": [ { @@ -12888,8 +12421,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_329" + } }, { "calculated data name": "Molarity", @@ -12897,6 +12429,7 @@ "value": 28.4, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_330", "data source aggregate document": { "data source document": [ { @@ -12904,8 +12437,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_330" + } }, { "calculated data name": "RunDistance", @@ -12913,6 +12445,7 @@ "value": 47.6, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_331", "data source aggregate document": { "data source document": [ { @@ -12920,8 +12453,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_331" + } }, { "calculated data name": "ToPercent", @@ -12929,6 +12461,7 @@ "value": 50.6, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_332", "data source aggregate document": { "data source document": [ { @@ -12936,8 +12469,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_332" + } }, { "calculated data name": "CalibratedQuantity", @@ -12945,6 +12477,7 @@ "value": 36.1, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_334", "data source aggregate document": { "data source document": [ { @@ -12952,8 +12485,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_334" + } }, { "calculated data name": "FromPercent", @@ -12961,6 +12493,7 @@ "value": 35.1, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_335", "data source aggregate document": { "data source document": [ { @@ -12968,8 +12501,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_335" + } }, { "calculated data name": "Molarity", @@ -12977,6 +12509,7 @@ "value": 20.7, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_336", "data source aggregate document": { "data source document": [ { @@ -12984,8 +12517,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_336" + } }, { "calculated data name": "RunDistance", @@ -12993,6 +12525,7 @@ "value": 38.3, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_337", "data source aggregate document": { "data source document": [ { @@ -13000,8 +12533,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_337" + } }, { "calculated data name": "ToPercent", @@ -13009,6 +12541,7 @@ "value": 41.9, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_338", "data source aggregate document": { "data source document": [ { @@ -13016,8 +12549,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_338" + } }, { "calculated data name": "Concentration", @@ -13025,6 +12557,7 @@ "value": 40.6, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_340", "data source aggregate document": { "data source document": [ { @@ -13032,8 +12565,7 @@ "data source feature": "sample" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_340" + } }, { "calculated data name": "AssignedQuantity", @@ -13041,6 +12573,7 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_342", "data source aggregate document": { "data source document": [ { @@ -13048,8 +12581,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_342" + } }, { "calculated data name": "CalibratedQuantity", @@ -13057,6 +12589,7 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_343", "data source aggregate document": { "data source document": [ { @@ -13064,8 +12597,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_343" + } }, { "calculated data name": "FromPercent", @@ -13073,6 +12605,7 @@ "value": 76.6, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_344", "data source aggregate document": { "data source document": [ { @@ -13080,8 +12613,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_344" + } }, { "calculated data name": "Molarity", @@ -13089,6 +12621,7 @@ "value": 4710.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_345", "data source aggregate document": { "data source document": [ { @@ -13096,8 +12629,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_345" + } }, { "calculated data name": "RunDistance", @@ -13105,6 +12637,7 @@ "value": 79.8, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_346", "data source aggregate document": { "data source document": [ { @@ -13112,8 +12645,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_346" + } }, { "calculated data name": "ToPercent", @@ -13121,6 +12653,7 @@ "value": 82.8, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_347", "data source aggregate document": { "data source document": [ { @@ -13128,8 +12661,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_347" + } }, { "calculated data name": "CalibratedQuantity", @@ -13137,6 +12669,7 @@ "value": 7.85, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_349", "data source aggregate document": { "data source document": [ { @@ -13144,8 +12677,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_349" + } }, { "calculated data name": "FromPercent", @@ -13153,6 +12685,7 @@ "value": 45.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_350", "data source aggregate document": { "data source document": [ { @@ -13160,8 +12693,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_350" + } }, { "calculated data name": "Molarity", @@ -13169,6 +12701,7 @@ "value": 13.2, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_351", "data source aggregate document": { "data source document": [ { @@ -13176,8 +12709,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_351" + } }, { "calculated data name": "RunDistance", @@ -13185,6 +12717,7 @@ "value": 46.7, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_352", "data source aggregate document": { "data source document": [ { @@ -13192,8 +12725,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_352" + } }, { "calculated data name": "ToPercent", @@ -13201,6 +12733,7 @@ "value": 48.6, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_353", "data source aggregate document": { "data source document": [ { @@ -13208,8 +12741,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_353" + } }, { "calculated data name": "CalibratedQuantity", @@ -13217,6 +12749,7 @@ "value": 15.2, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_355", "data source aggregate document": { "data source document": [ { @@ -13224,8 +12757,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_355" + } }, { "calculated data name": "FromPercent", @@ -13233,6 +12765,7 @@ "value": 33.3, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_356", "data source aggregate document": { "data source document": [ { @@ -13240,8 +12773,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_356" + } }, { "calculated data name": "Molarity", @@ -13249,6 +12781,7 @@ "value": 7.81, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_357", "data source aggregate document": { "data source document": [ { @@ -13256,8 +12789,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_357" + } }, { "calculated data name": "RunDistance", @@ -13265,6 +12797,7 @@ "value": 36.8, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_358", "data source aggregate document": { "data source document": [ { @@ -13272,8 +12805,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_358" + } }, { "calculated data name": "ToPercent", @@ -13281,6 +12813,7 @@ "value": 39.3, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_359", "data source aggregate document": { "data source document": [ { @@ -13288,8 +12821,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_359" + } }, { "calculated data name": "Concentration", @@ -13297,6 +12829,7 @@ "value": 46.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_361", "data source aggregate document": { "data source document": [ { @@ -13304,8 +12837,7 @@ "data source feature": "sample" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_361" + } }, { "calculated data name": "AssignedQuantity", @@ -13313,6 +12845,7 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_363", "data source aggregate document": { "data source document": [ { @@ -13320,8 +12853,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_363" + } }, { "calculated data name": "CalibratedQuantity", @@ -13329,6 +12861,7 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_364", "data source aggregate document": { "data source document": [ { @@ -13336,8 +12869,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_364" + } }, { "calculated data name": "FromPercent", @@ -13345,6 +12877,7 @@ "value": 81.2, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_365", "data source aggregate document": { "data source document": [ { @@ -13352,8 +12885,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_365" + } }, { "calculated data name": "Molarity", @@ -13361,6 +12893,7 @@ "value": 4710.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_366", "data source aggregate document": { "data source document": [ { @@ -13368,8 +12901,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_366" + } }, { "calculated data name": "RunDistance", @@ -13377,6 +12909,7 @@ "value": 84.2, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_367", "data source aggregate document": { "data source document": [ { @@ -13384,8 +12917,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_367" + } }, { "calculated data name": "ToPercent", @@ -13393,6 +12925,7 @@ "value": 87.1, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_368", "data source aggregate document": { "data source document": [ { @@ -13400,8 +12933,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_368" + } }, { "calculated data name": "CalibratedQuantity", @@ -13409,6 +12941,7 @@ "value": 10.3, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_370", "data source aggregate document": { "data source document": [ { @@ -13416,8 +12949,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_370" + } }, { "calculated data name": "FromPercent", @@ -13425,6 +12957,7 @@ "value": 47.7, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_371", "data source aggregate document": { "data source document": [ { @@ -13432,8 +12965,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_371" + } }, { "calculated data name": "Molarity", @@ -13441,6 +12973,7 @@ "value": 17.2, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_372", "data source aggregate document": { "data source document": [ { @@ -13448,8 +12981,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_372" + } }, { "calculated data name": "RunDistance", @@ -13457,6 +12989,7 @@ "value": 49.4, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_373", "data source aggregate document": { "data source document": [ { @@ -13464,8 +12997,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_373" + } }, { "calculated data name": "ToPercent", @@ -13473,6 +13005,7 @@ "value": 52.7, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_374", "data source aggregate document": { "data source document": [ { @@ -13480,8 +13013,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_374" + } }, { "calculated data name": "CalibratedQuantity", @@ -13489,6 +13021,7 @@ "value": 19.7, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_376", "data source aggregate document": { "data source document": [ { @@ -13496,8 +13029,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_376" + } }, { "calculated data name": "FromPercent", @@ -13505,6 +13037,7 @@ "value": 35.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_377", "data source aggregate document": { "data source document": [ { @@ -13512,8 +13045,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_377" + } }, { "calculated data name": "Molarity", @@ -13521,6 +13053,7 @@ "value": 10.2, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_378", "data source aggregate document": { "data source document": [ { @@ -13528,8 +13061,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_378" + } }, { "calculated data name": "RunDistance", @@ -13537,6 +13069,7 @@ "value": 39.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_379", "data source aggregate document": { "data source document": [ { @@ -13544,8 +13077,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_379" + } }, { "calculated data name": "ToPercent", @@ -13553,6 +13085,7 @@ "value": 41.7, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_380", "data source aggregate document": { "data source document": [ { @@ -13560,8 +13093,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_380" + } }, { "calculated data name": "Concentration", @@ -13569,6 +13101,7 @@ "value": 200.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_382", "data source aggregate document": { "data source document": [ { @@ -13576,8 +13109,7 @@ "data source feature": "sample" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_382" + } }, { "calculated data name": "AssignedQuantity", @@ -13585,6 +13117,7 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_384", "data source aggregate document": { "data source document": [ { @@ -13592,8 +13125,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_384" + } }, { "calculated data name": "CalibratedQuantity", @@ -13601,6 +13133,7 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_385", "data source aggregate document": { "data source document": [ { @@ -13608,8 +13141,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_385" + } }, { "calculated data name": "FromPercent", @@ -13617,6 +13149,7 @@ "value": 80.6, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_386", "data source aggregate document": { "data source document": [ { @@ -13624,8 +13157,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_386" + } }, { "calculated data name": "Molarity", @@ -13633,6 +13165,7 @@ "value": 4710.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_387", "data source aggregate document": { "data source document": [ { @@ -13640,8 +13173,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_387" + } }, { "calculated data name": "RunDistance", @@ -13649,6 +13181,7 @@ "value": 83.7, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_388", "data source aggregate document": { "data source document": [ { @@ -13656,8 +13189,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_388" + } }, { "calculated data name": "ToPercent", @@ -13665,6 +13197,7 @@ "value": 86.5, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_389", "data source aggregate document": { "data source document": [ { @@ -13672,8 +13205,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_389" + } }, { "calculated data name": "CalibratedQuantity", @@ -13681,6 +13213,7 @@ "value": 34.8, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_391", "data source aggregate document": { "data source document": [ { @@ -13688,8 +13221,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_391" + } }, { "calculated data name": "FromPercent", @@ -13697,6 +13229,7 @@ "value": 47.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_392", "data source aggregate document": { "data source document": [ { @@ -13704,8 +13237,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_392" + } }, { "calculated data name": "Molarity", @@ -13713,6 +13245,7 @@ "value": 57.8, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_393", "data source aggregate document": { "data source document": [ { @@ -13720,8 +13253,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_393" + } }, { "calculated data name": "RunDistance", @@ -13729,6 +13261,7 @@ "value": 49.1, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_394", "data source aggregate document": { "data source document": [ { @@ -13736,8 +13269,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_394" + } }, { "calculated data name": "ToPercent", @@ -13745,6 +13277,7 @@ "value": 50.3, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_395", "data source aggregate document": { "data source document": [ { @@ -13752,8 +13285,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_395" + } }, { "calculated data name": "CalibratedQuantity", @@ -13761,6 +13293,7 @@ "value": 105.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_397", "data source aggregate document": { "data source document": [ { @@ -13768,8 +13301,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_397" + } }, { "calculated data name": "FromPercent", @@ -13777,6 +13309,7 @@ "value": 36.4, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_398", "data source aggregate document": { "data source document": [ { @@ -13784,8 +13317,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_398" + } }, { "calculated data name": "Molarity", @@ -13793,6 +13325,7 @@ "value": 67.2, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_399", "data source aggregate document": { "data source document": [ { @@ -13800,8 +13333,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_399" + } }, { "calculated data name": "RunDistance", @@ -13809,6 +13341,7 @@ "value": 40.4, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_400", "data source aggregate document": { "data source document": [ { @@ -13816,8 +13349,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_400" + } }, { "calculated data name": "ToPercent", @@ -13825,6 +13357,7 @@ "value": 43.5, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_401", "data source aggregate document": { "data source document": [ { @@ -13832,8 +13365,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_401" + } }, { "calculated data name": "Concentration", @@ -13841,6 +13373,7 @@ "value": 199.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_403", "data source aggregate document": { "data source document": [ { @@ -13848,8 +13381,7 @@ "data source feature": "sample" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_403" + } }, { "calculated data name": "AssignedQuantity", @@ -13857,6 +13389,7 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_405", "data source aggregate document": { "data source document": [ { @@ -13864,8 +13397,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_405" + } }, { "calculated data name": "CalibratedQuantity", @@ -13873,6 +13405,7 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_406", "data source aggregate document": { "data source document": [ { @@ -13880,8 +13413,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_406" + } }, { "calculated data name": "FromPercent", @@ -13889,6 +13421,7 @@ "value": 81.3, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_407", "data source aggregate document": { "data source document": [ { @@ -13896,8 +13429,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_407" + } }, { "calculated data name": "Molarity", @@ -13905,6 +13437,7 @@ "value": 4710.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_408", "data source aggregate document": { "data source document": [ { @@ -13912,8 +13445,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_408" + } }, { "calculated data name": "RunDistance", @@ -13921,6 +13453,7 @@ "value": 84.4, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_409", "data source aggregate document": { "data source document": [ { @@ -13928,8 +13461,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_409" + } }, { "calculated data name": "ToPercent", @@ -13937,6 +13469,7 @@ "value": 87.2, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_410", "data source aggregate document": { "data source document": [ { @@ -13944,8 +13477,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_410" + } }, { "calculated data name": "CalibratedQuantity", @@ -13953,6 +13485,7 @@ "value": 48.9, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_412", "data source aggregate document": { "data source document": [ { @@ -13960,8 +13493,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_412" + } }, { "calculated data name": "FromPercent", @@ -13969,6 +13501,7 @@ "value": 47.6, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_413", "data source aggregate document": { "data source document": [ { @@ -13976,8 +13509,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_413" + } }, { "calculated data name": "Molarity", @@ -13985,6 +13517,7 @@ "value": 80.2, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_414", "data source aggregate document": { "data source document": [ { @@ -13992,8 +13525,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_414" + } }, { "calculated data name": "RunDistance", @@ -14001,6 +13533,7 @@ "value": 49.3, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_415", "data source aggregate document": { "data source document": [ { @@ -14008,8 +13541,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_415" + } }, { "calculated data name": "ToPercent", @@ -14017,6 +13549,7 @@ "value": 52.7, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_416", "data source aggregate document": { "data source document": [ { @@ -14024,8 +13557,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_416" + } }, { "calculated data name": "CalibratedQuantity", @@ -14033,6 +13565,7 @@ "value": 78.4, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_418", "data source aggregate document": { "data source document": [ { @@ -14040,8 +13573,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_418" + } }, { "calculated data name": "FromPercent", @@ -14049,6 +13581,7 @@ "value": 36.9, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_419", "data source aggregate document": { "data source document": [ { @@ -14056,8 +13589,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_419" + } }, { "calculated data name": "Molarity", @@ -14065,6 +13597,7 @@ "value": 48.1, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_420", "data source aggregate document": { "data source document": [ { @@ -14072,8 +13605,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_420" + } }, { "calculated data name": "RunDistance", @@ -14081,6 +13613,7 @@ "value": 40.4, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_421", "data source aggregate document": { "data source document": [ { @@ -14088,8 +13621,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_421" + } }, { "calculated data name": "ToPercent", @@ -14097,6 +13629,7 @@ "value": 44.8, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_422", "data source aggregate document": { "data source document": [ { @@ -14104,8 +13637,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_422" + } }, { "calculated data name": "Concentration", @@ -14113,6 +13645,7 @@ "value": 178.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_424", "data source aggregate document": { "data source document": [ { @@ -14120,8 +13653,7 @@ "data source feature": "sample" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_424" + } }, { "calculated data name": "AssignedQuantity", @@ -14129,6 +13661,7 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_426", "data source aggregate document": { "data source document": [ { @@ -14136,8 +13669,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_426" + } }, { "calculated data name": "CalibratedQuantity", @@ -14145,6 +13677,7 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_427", "data source aggregate document": { "data source document": [ { @@ -14152,8 +13685,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_427" + } }, { "calculated data name": "FromPercent", @@ -14161,6 +13693,7 @@ "value": 80.1, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_428", "data source aggregate document": { "data source document": [ { @@ -14168,8 +13701,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_428" + } }, { "calculated data name": "Molarity", @@ -14177,6 +13709,7 @@ "value": 4710.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_429", "data source aggregate document": { "data source document": [ { @@ -14184,8 +13717,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_429" + } }, { "calculated data name": "RunDistance", @@ -14193,6 +13725,7 @@ "value": 83.1, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_430", "data source aggregate document": { "data source document": [ { @@ -14200,8 +13733,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_430" + } }, { "calculated data name": "ToPercent", @@ -14209,6 +13741,7 @@ "value": 86.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_431", "data source aggregate document": { "data source document": [ { @@ -14216,8 +13749,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_431" + } }, { "calculated data name": "CalibratedQuantity", @@ -14225,6 +13757,7 @@ "value": 47.5, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_433", "data source aggregate document": { "data source document": [ { @@ -14232,8 +13765,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_433" + } }, { "calculated data name": "FromPercent", @@ -14241,6 +13773,7 @@ "value": 47.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_434", "data source aggregate document": { "data source document": [ { @@ -14248,8 +13781,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_434" + } }, { "calculated data name": "Molarity", @@ -14257,6 +13789,7 @@ "value": 80.8, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_435", "data source aggregate document": { "data source document": [ { @@ -14264,8 +13797,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_435" + } }, { "calculated data name": "RunDistance", @@ -14273,6 +13805,7 @@ "value": 49.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_436", "data source aggregate document": { "data source document": [ { @@ -14280,8 +13813,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_436" + } }, { "calculated data name": "ToPercent", @@ -14289,6 +13821,7 @@ "value": 52.2, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_437", "data source aggregate document": { "data source document": [ { @@ -14296,8 +13829,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_437" + } }, { "calculated data name": "CalibratedQuantity", @@ -14305,6 +13837,7 @@ "value": 60.8, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_439", "data source aggregate document": { "data source document": [ { @@ -14312,8 +13845,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_439" + } }, { "calculated data name": "FromPercent", @@ -14321,6 +13853,7 @@ "value": 36.8, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_440", "data source aggregate document": { "data source document": [ { @@ -14328,8 +13861,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_440" + } }, { "calculated data name": "Molarity", @@ -14337,6 +13869,7 @@ "value": 38.2, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_441", "data source aggregate document": { "data source document": [ { @@ -14344,8 +13877,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_441" + } }, { "calculated data name": "RunDistance", @@ -14353,6 +13885,7 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_442", "data source aggregate document": { "data source document": [ { @@ -14360,8 +13893,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_442" + } }, { "calculated data name": "ToPercent", @@ -14369,6 +13901,7 @@ "value": 44.9, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_443", "data source aggregate document": { "data source document": [ { @@ -14376,8 +13909,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_443" + } }, { "calculated data name": "Concentration", @@ -14385,6 +13917,7 @@ "value": 184.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_445", "data source aggregate document": { "data source document": [ { @@ -14392,8 +13925,7 @@ "data source feature": "sample" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_445" + } }, { "calculated data name": "AssignedQuantity", @@ -14401,6 +13933,7 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_447", "data source aggregate document": { "data source document": [ { @@ -14408,8 +13941,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_447" + } }, { "calculated data name": "CalibratedQuantity", @@ -14417,6 +13949,7 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_448", "data source aggregate document": { "data source document": [ { @@ -14424,8 +13957,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_448" + } }, { "calculated data name": "FromPercent", @@ -14433,6 +13965,7 @@ "value": 80.1, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_449", "data source aggregate document": { "data source document": [ { @@ -14440,8 +13973,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_449" + } }, { "calculated data name": "Molarity", @@ -14449,6 +13981,7 @@ "value": 4710.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_450", "data source aggregate document": { "data source document": [ { @@ -14456,8 +13989,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_450" + } }, { "calculated data name": "RunDistance", @@ -14465,6 +13997,7 @@ "value": 83.2, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_451", "data source aggregate document": { "data source document": [ { @@ -14472,8 +14005,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_451" + } }, { "calculated data name": "ToPercent", @@ -14481,6 +14013,7 @@ "value": 86.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_452", "data source aggregate document": { "data source document": [ { @@ -14488,8 +14021,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_452" + } }, { "calculated data name": "CalibratedQuantity", @@ -14497,6 +14029,7 @@ "value": 54.6, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_454", "data source aggregate document": { "data source document": [ { @@ -14504,8 +14037,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_454" + } }, { "calculated data name": "FromPercent", @@ -14513,6 +14045,7 @@ "value": 43.9, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_455", "data source aggregate document": { "data source document": [ { @@ -14520,8 +14053,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_455" + } }, { "calculated data name": "Molarity", @@ -14529,6 +14061,7 @@ "value": 94.2, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_456", "data source aggregate document": { "data source document": [ { @@ -14536,8 +14069,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_456" + } }, { "calculated data name": "RunDistance", @@ -14545,6 +14077,7 @@ "value": 49.2, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_457", "data source aggregate document": { "data source document": [ { @@ -14552,8 +14085,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_457" + } }, { "calculated data name": "ToPercent", @@ -14561,6 +14093,7 @@ "value": 50.6, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_458", "data source aggregate document": { "data source document": [ { @@ -14568,8 +14101,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_458" + } }, { "calculated data name": "CalibratedQuantity", @@ -14577,6 +14109,7 @@ "value": 14.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_460", "data source aggregate document": { "data source document": [ { @@ -14584,8 +14117,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_460" + } }, { "calculated data name": "FromPercent", @@ -14593,6 +14125,7 @@ "value": 40.6, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_461", "data source aggregate document": { "data source document": [ { @@ -14600,8 +14133,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_461" + } }, { "calculated data name": "Molarity", @@ -14609,6 +14141,7 @@ "value": 13.4, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_462", "data source aggregate document": { "data source document": [ { @@ -14616,8 +14149,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_462" + } }, { "calculated data name": "RunDistance", @@ -14625,6 +14157,7 @@ "value": 43.6, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_463", "data source aggregate document": { "data source document": [ { @@ -14632,8 +14165,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_463" + } }, { "calculated data name": "ToPercent", @@ -14641,6 +14173,7 @@ "value": 43.9, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_464", "data source aggregate document": { "data source document": [ { @@ -14648,8 +14181,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_464" + } }, { "calculated data name": "Concentration", @@ -14657,6 +14189,7 @@ "value": 204.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_466", "data source aggregate document": { "data source document": [ { @@ -14664,8 +14197,7 @@ "data source feature": "sample" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_466" + } }, { "calculated data name": "AssignedQuantity", @@ -14673,6 +14205,7 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_468", "data source aggregate document": { "data source document": [ { @@ -14680,8 +14213,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_468" + } }, { "calculated data name": "CalibratedQuantity", @@ -14689,6 +14221,7 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_469", "data source aggregate document": { "data source document": [ { @@ -14696,8 +14229,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_469" + } }, { "calculated data name": "FromPercent", @@ -14705,6 +14237,7 @@ "value": 81.5, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_470", "data source aggregate document": { "data source document": [ { @@ -14712,8 +14245,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_470" + } }, { "calculated data name": "Molarity", @@ -14721,6 +14253,7 @@ "value": 4710.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_471", "data source aggregate document": { "data source document": [ { @@ -14728,8 +14261,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_471" + } }, { "calculated data name": "RunDistance", @@ -14737,6 +14269,7 @@ "value": 84.6, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_472", "data source aggregate document": { "data source document": [ { @@ -14744,8 +14277,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_472" + } }, { "calculated data name": "ToPercent", @@ -14753,6 +14285,7 @@ "value": 87.5, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_473", "data source aggregate document": { "data source document": [ { @@ -14760,8 +14293,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_473" + } }, { "calculated data name": "CalibratedQuantity", @@ -14769,6 +14301,7 @@ "value": 36.2, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_475", "data source aggregate document": { "data source document": [ { @@ -14776,8 +14309,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_475" + } }, { "calculated data name": "FromPercent", @@ -14785,6 +14317,7 @@ "value": 42.7, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_476", "data source aggregate document": { "data source document": [ { @@ -14792,8 +14325,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_476" + } }, { "calculated data name": "Molarity", @@ -14801,6 +14333,7 @@ "value": 59.2, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_477", "data source aggregate document": { "data source document": [ { @@ -14808,8 +14341,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_477" + } }, { "calculated data name": "RunDistance", @@ -14817,6 +14349,7 @@ "value": 49.4, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_478", "data source aggregate document": { "data source document": [ { @@ -14824,8 +14357,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_478" + } }, { "calculated data name": "ToPercent", @@ -14833,6 +14365,7 @@ "value": 50.1, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_479", "data source aggregate document": { "data source document": [ { @@ -14840,8 +14373,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_479" + } }, { "calculated data name": "Concentration", @@ -14849,6 +14381,7 @@ "value": 189.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_481", "data source aggregate document": { "data source document": [ { @@ -14856,8 +14389,7 @@ "data source feature": "sample" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_481" + } }, { "calculated data name": "AssignedQuantity", @@ -14865,6 +14397,7 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_483", "data source aggregate document": { "data source document": [ { @@ -14872,8 +14405,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_483" + } }, { "calculated data name": "CalibratedQuantity", @@ -14881,6 +14413,7 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_484", "data source aggregate document": { "data source document": [ { @@ -14888,8 +14421,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_484" + } }, { "calculated data name": "FromPercent", @@ -14897,6 +14429,7 @@ "value": 79.7, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_485", "data source aggregate document": { "data source document": [ { @@ -14904,8 +14437,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_485" + } }, { "calculated data name": "Molarity", @@ -14913,6 +14445,7 @@ "value": 4710.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_486", "data source aggregate document": { "data source document": [ { @@ -14920,8 +14453,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_486" + } }, { "calculated data name": "RunDistance", @@ -14929,6 +14461,7 @@ "value": 82.9, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_487", "data source aggregate document": { "data source document": [ { @@ -14936,8 +14469,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_487" + } }, { "calculated data name": "ToPercent", @@ -14945,6 +14477,7 @@ "value": 85.8, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_488", "data source aggregate document": { "data source document": [ { @@ -14952,8 +14485,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_488" + } }, { "calculated data name": "Concentration", @@ -14961,6 +14493,7 @@ "value": 168.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_490", "data source aggregate document": { "data source document": [ { @@ -14968,8 +14501,7 @@ "data source feature": "sample" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_490" + } }, { "calculated data name": "AssignedQuantity", @@ -14977,6 +14509,7 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_492", "data source aggregate document": { "data source document": [ { @@ -14984,8 +14517,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_492" + } }, { "calculated data name": "CalibratedQuantity", @@ -14993,6 +14525,7 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_493", "data source aggregate document": { "data source document": [ { @@ -15000,8 +14533,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_493" + } }, { "calculated data name": "FromPercent", @@ -15009,6 +14541,7 @@ "value": 78.7, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_494", "data source aggregate document": { "data source document": [ { @@ -15016,8 +14549,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_494" + } }, { "calculated data name": "Molarity", @@ -15025,6 +14557,7 @@ "value": 4710.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_495", "data source aggregate document": { "data source document": [ { @@ -15032,8 +14565,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_495" + } }, { "calculated data name": "RunDistance", @@ -15041,6 +14573,7 @@ "value": 81.8, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_496", "data source aggregate document": { "data source document": [ { @@ -15048,8 +14581,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_496" + } }, { "calculated data name": "ToPercent", @@ -15057,6 +14589,7 @@ "value": 84.7, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_497", "data source aggregate document": { "data source document": [ { @@ -15064,8 +14597,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_497" + } }, { "calculated data name": "Concentration", @@ -15073,6 +14605,7 @@ "value": 171.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_499", "data source aggregate document": { "data source document": [ { @@ -15080,8 +14613,7 @@ "data source feature": "sample" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_499" + } }, { "calculated data name": "AssignedQuantity", @@ -15089,6 +14621,7 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_501", "data source aggregate document": { "data source document": [ { @@ -15096,8 +14629,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_501" + } }, { "calculated data name": "CalibratedQuantity", @@ -15105,6 +14637,7 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_502", "data source aggregate document": { "data source document": [ { @@ -15112,8 +14645,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_502" + } }, { "calculated data name": "FromPercent", @@ -15121,6 +14653,7 @@ "value": 80.1, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_503", "data source aggregate document": { "data source document": [ { @@ -15128,8 +14661,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_503" + } }, { "calculated data name": "Molarity", @@ -15137,6 +14669,7 @@ "value": 4710.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_504", "data source aggregate document": { "data source document": [ { @@ -15144,8 +14677,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_504" + } }, { "calculated data name": "RunDistance", @@ -15153,6 +14685,7 @@ "value": 83.1, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_505", "data source aggregate document": { "data source document": [ { @@ -15160,8 +14693,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_505" + } }, { "calculated data name": "ToPercent", @@ -15169,6 +14701,7 @@ "value": 86.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_506", "data source aggregate document": { "data source document": [ { @@ -15176,8 +14709,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_506" + } }, { "calculated data name": "Concentration", @@ -15185,6 +14717,7 @@ "value": 208.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_508", "data source aggregate document": { "data source document": [ { @@ -15192,8 +14725,7 @@ "data source feature": "sample" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_508" + } }, { "calculated data name": "AssignedQuantity", @@ -15201,6 +14733,7 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_510", "data source aggregate document": { "data source document": [ { @@ -15208,8 +14741,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_510" + } }, { "calculated data name": "CalibratedQuantity", @@ -15217,6 +14749,7 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_511", "data source aggregate document": { "data source document": [ { @@ -15224,8 +14757,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_511" + } }, { "calculated data name": "FromPercent", @@ -15233,6 +14765,7 @@ "value": 81.7, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_512", "data source aggregate document": { "data source document": [ { @@ -15240,8 +14773,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_512" + } }, { "calculated data name": "Molarity", @@ -15249,6 +14781,7 @@ "value": 4710.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_513", "data source aggregate document": { "data source document": [ { @@ -15256,8 +14789,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_513" + } }, { "calculated data name": "RunDistance", @@ -15265,6 +14797,7 @@ "value": 84.7, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_514", "data source aggregate document": { "data source document": [ { @@ -15272,8 +14805,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_514" + } }, { "calculated data name": "ToPercent", @@ -15281,6 +14813,7 @@ "value": 87.5, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_515", "data source aggregate document": { "data source document": [ { @@ -15288,8 +14821,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_515" + } }, { "calculated data name": "CalibratedQuantity", @@ -15297,6 +14829,7 @@ "value": 37.9, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_517", "data source aggregate document": { "data source document": [ { @@ -15304,8 +14837,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_517" + } }, { "calculated data name": "FromPercent", @@ -15313,6 +14845,7 @@ "value": 46.7, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_518", "data source aggregate document": { "data source document": [ { @@ -15320,8 +14853,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_518" + } }, { "calculated data name": "Molarity", @@ -15329,6 +14861,7 @@ "value": 59.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_519", "data source aggregate document": { "data source document": [ { @@ -15336,8 +14869,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_519" + } }, { "calculated data name": "RunDistance", @@ -15345,6 +14877,7 @@ "value": 49.1, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_520", "data source aggregate document": { "data source document": [ { @@ -15352,8 +14885,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_520" + } }, { "calculated data name": "ToPercent", @@ -15361,6 +14893,7 @@ "value": 50.3, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_521", "data source aggregate document": { "data source document": [ { @@ -15368,8 +14901,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_521" + } }, { "calculated data name": "CalibratedQuantity", @@ -15377,6 +14909,7 @@ "value": 104.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_523", "data source aggregate document": { "data source document": [ { @@ -15384,8 +14917,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_523" + } }, { "calculated data name": "FromPercent", @@ -15393,6 +14925,7 @@ "value": 36.8, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_524", "data source aggregate document": { "data source document": [ { @@ -15400,8 +14933,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_524" + } }, { "calculated data name": "Molarity", @@ -15409,6 +14941,7 @@ "value": 60.4, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_525", "data source aggregate document": { "data source document": [ { @@ -15416,8 +14949,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_525" + } }, { "calculated data name": "RunDistance", @@ -15425,6 +14957,7 @@ "value": 40.3, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_526", "data source aggregate document": { "data source document": [ { @@ -15432,8 +14965,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_526" + } }, { "calculated data name": "ToPercent", @@ -15441,6 +14973,7 @@ "value": 43.4, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_527", "data source aggregate document": { "data source document": [ { @@ -15448,8 +14981,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_527" + } }, { "calculated data name": "Concentration", @@ -15457,6 +14989,7 @@ "value": 205.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_529", "data source aggregate document": { "data source document": [ { @@ -15464,8 +14997,7 @@ "data source feature": "sample" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_529" + } }, { "calculated data name": "AssignedQuantity", @@ -15473,6 +15005,7 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_531", "data source aggregate document": { "data source document": [ { @@ -15480,8 +15013,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_531" + } }, { "calculated data name": "CalibratedQuantity", @@ -15489,6 +15021,7 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_532", "data source aggregate document": { "data source document": [ { @@ -15496,8 +15029,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_532" + } }, { "calculated data name": "FromPercent", @@ -15505,6 +15037,7 @@ "value": 81.2, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_533", "data source aggregate document": { "data source document": [ { @@ -15512,8 +15045,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_533" + } }, { "calculated data name": "Molarity", @@ -15521,6 +15053,7 @@ "value": 4710.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_534", "data source aggregate document": { "data source document": [ { @@ -15528,8 +15061,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_534" + } }, { "calculated data name": "RunDistance", @@ -15537,6 +15069,7 @@ "value": 84.3, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_535", "data source aggregate document": { "data source document": [ { @@ -15544,8 +15077,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_535" + } }, { "calculated data name": "ToPercent", @@ -15553,6 +15085,7 @@ "value": 87.1, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_536", "data source aggregate document": { "data source document": [ { @@ -15560,8 +15093,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_536" + } }, { "calculated data name": "CalibratedQuantity", @@ -15569,6 +15101,7 @@ "value": 50.5, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_538", "data source aggregate document": { "data source document": [ { @@ -15576,8 +15109,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_538" + } }, { "calculated data name": "FromPercent", @@ -15585,6 +15117,7 @@ "value": 46.7, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_539", "data source aggregate document": { "data source document": [ { @@ -15592,8 +15125,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_539" + } }, { "calculated data name": "Molarity", @@ -15601,6 +15133,7 @@ "value": 78.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_540", "data source aggregate document": { "data source document": [ { @@ -15608,8 +15141,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_540" + } }, { "calculated data name": "RunDistance", @@ -15617,6 +15149,7 @@ "value": 48.7, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_541", "data source aggregate document": { "data source document": [ { @@ -15624,8 +15157,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_541" + } }, { "calculated data name": "ToPercent", @@ -15633,6 +15165,7 @@ "value": 52.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_542", "data source aggregate document": { "data source document": [ { @@ -15640,8 +15173,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_542" + } }, { "calculated data name": "CalibratedQuantity", @@ -15649,6 +15181,7 @@ "value": 79.5, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_544", "data source aggregate document": { "data source document": [ { @@ -15656,8 +15189,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_544" + } }, { "calculated data name": "FromPercent", @@ -15665,6 +15197,7 @@ "value": 36.5, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_545", "data source aggregate document": { "data source document": [ { @@ -15672,8 +15205,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_545" + } }, { "calculated data name": "Molarity", @@ -15681,6 +15213,7 @@ "value": 43.8, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_546", "data source aggregate document": { "data source document": [ { @@ -15688,8 +15221,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_546" + } }, { "calculated data name": "RunDistance", @@ -15697,6 +15229,7 @@ "value": 39.6, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_547", "data source aggregate document": { "data source document": [ { @@ -15704,8 +15237,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_547" + } }, { "calculated data name": "ToPercent", @@ -15713,6 +15245,7 @@ "value": 44.2, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_548", "data source aggregate document": { "data source document": [ { @@ -15720,8 +15253,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_548" + } }, { "calculated data name": "Concentration", @@ -15729,6 +15261,7 @@ "value": 197.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_550", "data source aggregate document": { "data source document": [ { @@ -15736,8 +15269,7 @@ "data source feature": "sample" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_550" + } }, { "calculated data name": "AssignedQuantity", @@ -15745,6 +15277,7 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_552", "data source aggregate document": { "data source document": [ { @@ -15752,8 +15285,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_552" + } }, { "calculated data name": "CalibratedQuantity", @@ -15761,6 +15293,7 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_553", "data source aggregate document": { "data source document": [ { @@ -15768,8 +15301,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_553" + } }, { "calculated data name": "FromPercent", @@ -15777,6 +15309,7 @@ "value": 81.4, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_554", "data source aggregate document": { "data source document": [ { @@ -15784,8 +15317,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_554" + } }, { "calculated data name": "Molarity", @@ -15793,6 +15325,7 @@ "value": 4710.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_555", "data source aggregate document": { "data source document": [ { @@ -15800,8 +15333,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_555" + } }, { "calculated data name": "RunDistance", @@ -15809,6 +15341,7 @@ "value": 84.5, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_556", "data source aggregate document": { "data source document": [ { @@ -15816,8 +15349,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_556" + } }, { "calculated data name": "ToPercent", @@ -15825,6 +15357,7 @@ "value": 87.3, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_557", "data source aggregate document": { "data source document": [ { @@ -15832,8 +15365,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_557" + } }, { "calculated data name": "CalibratedQuantity", @@ -15841,6 +15373,7 @@ "value": 55.4, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_559", "data source aggregate document": { "data source document": [ { @@ -15848,8 +15381,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_559" + } }, { "calculated data name": "FromPercent", @@ -15857,6 +15389,7 @@ "value": 46.3, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_560", "data source aggregate document": { "data source document": [ { @@ -15864,8 +15397,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_560" + } }, { "calculated data name": "Molarity", @@ -15873,6 +15405,7 @@ "value": 82.2, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_561", "data source aggregate document": { "data source document": [ { @@ -15880,8 +15413,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_561" + } }, { "calculated data name": "RunDistance", @@ -15889,6 +15421,7 @@ "value": 48.4, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_562", "data source aggregate document": { "data source document": [ { @@ -15896,8 +15429,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_562" + } }, { "calculated data name": "ToPercent", @@ -15905,6 +15437,7 @@ "value": 52.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_563", "data source aggregate document": { "data source document": [ { @@ -15912,8 +15445,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_563" + } }, { "calculated data name": "CalibratedQuantity", @@ -15921,6 +15453,7 @@ "value": 66.1, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_565", "data source aggregate document": { "data source document": [ { @@ -15928,8 +15461,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_565" + } }, { "calculated data name": "FromPercent", @@ -15937,6 +15469,7 @@ "value": 36.1, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_566", "data source aggregate document": { "data source document": [ { @@ -15944,8 +15477,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_566" + } }, { "calculated data name": "Molarity", @@ -15953,6 +15485,7 @@ "value": 33.8, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_567", "data source aggregate document": { "data source document": [ { @@ -15960,8 +15493,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_567" + } }, { "calculated data name": "RunDistance", @@ -15969,6 +15501,7 @@ "value": 39.1, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_568", "data source aggregate document": { "data source document": [ { @@ -15976,8 +15509,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_568" + } }, { "calculated data name": "ToPercent", @@ -15985,6 +15517,7 @@ "value": 44.3, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_569", "data source aggregate document": { "data source document": [ { @@ -15992,8 +15525,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_569" + } }, { "calculated data name": "Concentration", @@ -16001,6 +15533,7 @@ "value": 173.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_571", "data source aggregate document": { "data source document": [ { @@ -16008,8 +15541,7 @@ "data source feature": "sample" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_571" + } }, { "calculated data name": "AssignedQuantity", @@ -16017,6 +15549,7 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_573", "data source aggregate document": { "data source document": [ { @@ -16024,8 +15557,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_573" + } }, { "calculated data name": "CalibratedQuantity", @@ -16033,6 +15565,7 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_574", "data source aggregate document": { "data source document": [ { @@ -16040,8 +15573,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_574" + } }, { "calculated data name": "FromPercent", @@ -16049,6 +15581,7 @@ "value": 79.7, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_575", "data source aggregate document": { "data source document": [ { @@ -16056,8 +15589,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_575" + } }, { "calculated data name": "Molarity", @@ -16065,6 +15597,7 @@ "value": 4710.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_576", "data source aggregate document": { "data source document": [ { @@ -16072,8 +15605,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_576" + } }, { "calculated data name": "RunDistance", @@ -16081,6 +15613,7 @@ "value": 82.9, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_577", "data source aggregate document": { "data source document": [ { @@ -16088,8 +15621,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_577" + } }, { "calculated data name": "ToPercent", @@ -16097,6 +15629,7 @@ "value": 85.7, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_578", "data source aggregate document": { "data source document": [ { @@ -16104,8 +15637,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_578" + } }, { "calculated data name": "CalibratedQuantity", @@ -16113,6 +15645,7 @@ "value": 59.5, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_580", "data source aggregate document": { "data source document": [ { @@ -16120,8 +15653,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_580" + } }, { "calculated data name": "FromPercent", @@ -16129,6 +15661,7 @@ "value": 39.3, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_581", "data source aggregate document": { "data source document": [ { @@ -16136,8 +15669,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_581" + } }, { "calculated data name": "Molarity", @@ -16145,6 +15677,7 @@ "value": 91.2, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_582", "data source aggregate document": { "data source document": [ { @@ -16152,8 +15685,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_582" + } }, { "calculated data name": "RunDistance", @@ -16161,6 +15693,7 @@ "value": 47.8, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_583", "data source aggregate document": { "data source document": [ { @@ -16168,8 +15701,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_583" + } }, { "calculated data name": "ToPercent", @@ -16177,6 +15709,7 @@ "value": 48.9, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_584", "data source aggregate document": { "data source document": [ { @@ -16184,8 +15717,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_584" + } }, { "calculated data name": "CalibratedQuantity", @@ -16193,6 +15725,7 @@ "value": 5.45, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_586", "data source aggregate document": { "data source document": [ { @@ -16200,8 +15733,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_586" + } }, { "calculated data name": "FromPercent", @@ -16209,6 +15741,7 @@ "value": 35.6, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_587", "data source aggregate document": { "data source document": [ { @@ -16216,8 +15749,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_587" + } }, { "calculated data name": "Molarity", @@ -16225,6 +15757,7 @@ "value": 2.96, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_588", "data source aggregate document": { "data source document": [ { @@ -16232,8 +15765,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_588" + } }, { "calculated data name": "RunDistance", @@ -16241,6 +15773,7 @@ "value": 38.8, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_589", "data source aggregate document": { "data source document": [ { @@ -16248,8 +15781,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_589" + } }, { "calculated data name": "ToPercent", @@ -16257,6 +15789,7 @@ "value": 39.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_590", "data source aggregate document": { "data source document": [ { @@ -16264,8 +15797,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_590" + } }, { "calculated data name": "Concentration", @@ -16273,6 +15805,7 @@ "value": 184.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_592", "data source aggregate document": { "data source document": [ { @@ -16280,8 +15813,7 @@ "data source feature": "sample" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_592" + } }, { "calculated data name": "AssignedQuantity", @@ -16289,6 +15821,7 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_594", "data source aggregate document": { "data source document": [ { @@ -16296,8 +15829,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_594" + } }, { "calculated data name": "CalibratedQuantity", @@ -16305,6 +15837,7 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_595", "data source aggregate document": { "data source document": [ { @@ -16312,8 +15845,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_595" + } }, { "calculated data name": "FromPercent", @@ -16321,6 +15853,7 @@ "value": 79.6, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_596", "data source aggregate document": { "data source document": [ { @@ -16328,8 +15861,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_596" + } }, { "calculated data name": "Molarity", @@ -16337,6 +15869,7 @@ "value": 4710.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_597", "data source aggregate document": { "data source document": [ { @@ -16344,8 +15877,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_597" + } }, { "calculated data name": "RunDistance", @@ -16353,6 +15885,7 @@ "value": 82.7, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_598", "data source aggregate document": { "data source document": [ { @@ -16360,8 +15893,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_598" + } }, { "calculated data name": "ToPercent", @@ -16369,6 +15901,7 @@ "value": 85.6, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_599", "data source aggregate document": { "data source document": [ { @@ -16376,8 +15909,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_599" + } }, { "calculated data name": "CalibratedQuantity", @@ -16385,6 +15917,7 @@ "value": 29.4, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_601", "data source aggregate document": { "data source document": [ { @@ -16392,8 +15925,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_601" + } }, { "calculated data name": "FromPercent", @@ -16401,6 +15933,7 @@ "value": 44.4, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_602", "data source aggregate document": { "data source document": [ { @@ -16408,8 +15941,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_602" + } }, { "calculated data name": "Molarity", @@ -16417,6 +15949,7 @@ "value": 47.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_603", "data source aggregate document": { "data source document": [ { @@ -16424,8 +15957,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_603" + } }, { "calculated data name": "RunDistance", @@ -16433,6 +15965,7 @@ "value": 48.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_604", "data source aggregate document": { "data source document": [ { @@ -16440,8 +15973,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_604" + } }, { "calculated data name": "ToPercent", @@ -16449,6 +15981,7 @@ "value": 49.4, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_605", "data source aggregate document": { "data source document": [ { @@ -16456,8 +15989,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_605" + } }, { "calculated data name": "Concentration", @@ -16465,6 +15997,7 @@ "value": 177.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_607", "data source aggregate document": { "data source document": [ { @@ -16472,8 +16005,7 @@ "data source feature": "sample" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_607" + } }, { "calculated data name": "AssignedQuantity", @@ -16481,6 +16013,7 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_609", "data source aggregate document": { "data source document": [ { @@ -16488,8 +16021,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_609" + } }, { "calculated data name": "CalibratedQuantity", @@ -16497,6 +16029,7 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_610", "data source aggregate document": { "data source document": [ { @@ -16504,8 +16037,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_610" + } }, { "calculated data name": "FromPercent", @@ -16513,6 +16045,7 @@ "value": 79.4, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_611", "data source aggregate document": { "data source document": [ { @@ -16520,8 +16053,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_611" + } }, { "calculated data name": "Molarity", @@ -16529,6 +16061,7 @@ "value": 4710.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_612", "data source aggregate document": { "data source document": [ { @@ -16536,8 +16069,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_612" + } }, { "calculated data name": "RunDistance", @@ -16545,6 +16077,7 @@ "value": 82.6, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_613", "data source aggregate document": { "data source document": [ { @@ -16552,8 +16085,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_613" + } }, { "calculated data name": "ToPercent", @@ -16561,6 +16093,7 @@ "value": 85.5, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_614", "data source aggregate document": { "data source document": [ { @@ -16568,8 +16101,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_614" + } }, { "calculated data name": "CalibratedQuantity", @@ -16577,6 +16109,7 @@ "value": 14.1, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_616", "data source aggregate document": { "data source document": [ { @@ -16584,8 +16117,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_616" + } }, { "calculated data name": "FromPercent", @@ -16593,6 +16125,7 @@ "value": 42.2, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_617", "data source aggregate document": { "data source document": [ { @@ -16600,8 +16133,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_617" + } }, { "calculated data name": "Molarity", @@ -16609,6 +16141,7 @@ "value": 22.3, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_618", "data source aggregate document": { "data source document": [ { @@ -16616,8 +16149,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_618" + } }, { "calculated data name": "RunDistance", @@ -16625,6 +16157,7 @@ "value": 47.8, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_619", "data source aggregate document": { "data source document": [ { @@ -16632,8 +16165,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_619" + } }, { "calculated data name": "ToPercent", @@ -16641,6 +16173,7 @@ "value": 48.1, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_620", "data source aggregate document": { "data source document": [ { @@ -16648,8 +16181,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_620" + } }, { "calculated data name": "Concentration", @@ -16657,6 +16189,7 @@ "value": 168.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_622", "data source aggregate document": { "data source document": [ { @@ -16664,8 +16197,7 @@ "data source feature": "sample" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_622" + } }, { "calculated data name": "AssignedQuantity", @@ -16673,6 +16205,7 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_624", "data source aggregate document": { "data source document": [ { @@ -16680,8 +16213,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_624" + } }, { "calculated data name": "CalibratedQuantity", @@ -16689,6 +16221,7 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_625", "data source aggregate document": { "data source document": [ { @@ -16696,8 +16229,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_625" + } }, { "calculated data name": "FromPercent", @@ -16705,6 +16237,7 @@ "value": 78.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_626", "data source aggregate document": { "data source document": [ { @@ -16712,8 +16245,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_626" + } }, { "calculated data name": "Molarity", @@ -16721,6 +16253,7 @@ "value": 4710.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_627", "data source aggregate document": { "data source document": [ { @@ -16728,8 +16261,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_627" + } }, { "calculated data name": "RunDistance", @@ -16737,6 +16269,7 @@ "value": 81.2, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_628", "data source aggregate document": { "data source document": [ { @@ -16744,8 +16277,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_628" + } }, { "calculated data name": "ToPercent", @@ -16753,6 +16285,7 @@ "value": 84.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_629", "data source aggregate document": { "data source document": [ { @@ -16760,8 +16293,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_629" + } }, { "calculated data name": "Concentration", @@ -16769,6 +16301,7 @@ "value": 167.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_631", "data source aggregate document": { "data source document": [ { @@ -16776,8 +16309,7 @@ "data source feature": "sample" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_631" + } }, { "calculated data name": "AssignedQuantity", @@ -16785,6 +16317,7 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_633", "data source aggregate document": { "data source document": [ { @@ -16792,8 +16325,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_633" + } }, { "calculated data name": "CalibratedQuantity", @@ -16801,6 +16333,7 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_634", "data source aggregate document": { "data source document": [ { @@ -16808,8 +16341,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_634" + } }, { "calculated data name": "FromPercent", @@ -16817,6 +16349,7 @@ "value": 82.2, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_635", "data source aggregate document": { "data source document": [ { @@ -16824,8 +16357,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_635" + } }, { "calculated data name": "Molarity", @@ -16833,6 +16365,7 @@ "value": 4710.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_636", "data source aggregate document": { "data source document": [ { @@ -16840,8 +16373,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_636" + } }, { "calculated data name": "RunDistance", @@ -16849,6 +16381,7 @@ "value": 85.3, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_637", "data source aggregate document": { "data source document": [ { @@ -16856,8 +16389,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_637" + } }, { "calculated data name": "ToPercent", @@ -16865,6 +16397,7 @@ "value": 88.1, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_638", "data source aggregate document": { "data source document": [ { @@ -16872,8 +16405,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_638" + } }, { "calculated data name": "Concentration", @@ -16881,6 +16413,7 @@ "value": 270.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_640", "data source aggregate document": { "data source document": [ { @@ -16888,8 +16421,7 @@ "data source feature": "sample" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_640" + } }, { "calculated data name": "AssignedQuantity", @@ -16897,6 +16429,7 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_642", "data source aggregate document": { "data source document": [ { @@ -16904,8 +16437,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_642" + } }, { "calculated data name": "CalibratedQuantity", @@ -16913,6 +16445,7 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_643", "data source aggregate document": { "data source document": [ { @@ -16920,8 +16453,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_643" + } }, { "calculated data name": "FromPercent", @@ -16929,6 +16461,7 @@ "value": 80.4, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_644", "data source aggregate document": { "data source document": [ { @@ -16936,8 +16469,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_644" + } }, { "calculated data name": "Molarity", @@ -16945,6 +16477,7 @@ "value": 4710.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_645", "data source aggregate document": { "data source document": [ { @@ -16952,8 +16485,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_645" + } }, { "calculated data name": "RunDistance", @@ -16961,6 +16493,7 @@ "value": 83.5, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_646", "data source aggregate document": { "data source document": [ { @@ -16968,8 +16501,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_646" + } }, { "calculated data name": "ToPercent", @@ -16977,6 +16509,7 @@ "value": 86.3, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_647", "data source aggregate document": { "data source document": [ { @@ -16984,8 +16517,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_647" + } }, { "calculated data name": "CalibratedQuantity", @@ -16993,6 +16525,7 @@ "value": 62.5, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_649", "data source aggregate document": { "data source document": [ { @@ -17000,8 +16533,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_649" + } }, { "calculated data name": "FromPercent", @@ -17009,6 +16541,7 @@ "value": 46.3, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_650", "data source aggregate document": { "data source document": [ { @@ -17016,8 +16549,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_650" + } }, { "calculated data name": "Molarity", @@ -17025,6 +16557,7 @@ "value": 102.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_651", "data source aggregate document": { "data source document": [ { @@ -17032,8 +16565,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_651" + } }, { "calculated data name": "RunDistance", @@ -17041,6 +16573,7 @@ "value": 48.8, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_652", "data source aggregate document": { "data source document": [ { @@ -17048,8 +16581,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_652" + } }, { "calculated data name": "ToPercent", @@ -17057,6 +16589,7 @@ "value": 53.2, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_653", "data source aggregate document": { "data source document": [ { @@ -17064,8 +16597,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_653" + } }, { "calculated data name": "CalibratedQuantity", @@ -17073,6 +16605,7 @@ "value": 133.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_655", "data source aggregate document": { "data source document": [ { @@ -17080,8 +16613,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_655" + } }, { "calculated data name": "FromPercent", @@ -17089,6 +16621,7 @@ "value": 36.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_656", "data source aggregate document": { "data source document": [ { @@ -17096,8 +16629,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_656" + } }, { "calculated data name": "Molarity", @@ -17105,6 +16637,7 @@ "value": 81.6, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_657", "data source aggregate document": { "data source document": [ { @@ -17112,8 +16645,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_657" + } }, { "calculated data name": "RunDistance", @@ -17121,6 +16653,7 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_658", "data source aggregate document": { "data source document": [ { @@ -17128,8 +16661,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_658" + } }, { "calculated data name": "ToPercent", @@ -17137,6 +16669,7 @@ "value": 42.5, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_659", "data source aggregate document": { "data source document": [ { @@ -17144,8 +16677,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_659" + } }, { "calculated data name": "Concentration", @@ -17153,6 +16685,7 @@ "value": 271.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_661", "data source aggregate document": { "data source document": [ { @@ -17160,8 +16693,7 @@ "data source feature": "sample" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_661" + } }, { "calculated data name": "AssignedQuantity", @@ -17169,6 +16701,7 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_663", "data source aggregate document": { "data source document": [ { @@ -17176,8 +16709,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_663" + } }, { "calculated data name": "CalibratedQuantity", @@ -17185,6 +16717,7 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_664", "data source aggregate document": { "data source document": [ { @@ -17192,8 +16725,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_664" + } }, { "calculated data name": "FromPercent", @@ -17201,6 +16733,7 @@ "value": 81.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_665", "data source aggregate document": { "data source document": [ { @@ -17208,8 +16741,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_665" + } }, { "calculated data name": "Molarity", @@ -17217,6 +16749,7 @@ "value": 4710.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_666", "data source aggregate document": { "data source document": [ { @@ -17224,8 +16757,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_666" + } }, { "calculated data name": "RunDistance", @@ -17233,6 +16765,7 @@ "value": 84.1, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_667", "data source aggregate document": { "data source document": [ { @@ -17240,8 +16773,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_667" + } }, { "calculated data name": "ToPercent", @@ -17249,6 +16781,7 @@ "value": 86.9, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_668", "data source aggregate document": { "data source document": [ { @@ -17256,8 +16789,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_668" + } }, { "calculated data name": "CalibratedQuantity", @@ -17265,6 +16797,7 @@ "value": 61.5, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_670", "data source aggregate document": { "data source document": [ { @@ -17272,8 +16805,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_670" + } }, { "calculated data name": "FromPercent", @@ -17281,6 +16813,7 @@ "value": 46.7, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_671", "data source aggregate document": { "data source document": [ { @@ -17288,8 +16821,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_671" + } }, { "calculated data name": "Molarity", @@ -17297,6 +16829,7 @@ "value": 102.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_672", "data source aggregate document": { "data source document": [ { @@ -17304,8 +16837,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_672" + } }, { "calculated data name": "RunDistance", @@ -17313,6 +16845,7 @@ "value": 49.3, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_673", "data source aggregate document": { "data source document": [ { @@ -17320,8 +16853,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_673" + } }, { "calculated data name": "ToPercent", @@ -17329,6 +16861,7 @@ "value": 53.3, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_674", "data source aggregate document": { "data source document": [ { @@ -17336,8 +16869,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_674" + } }, { "calculated data name": "CalibratedQuantity", @@ -17345,6 +16877,7 @@ "value": 131.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_676", "data source aggregate document": { "data source document": [ { @@ -17352,8 +16885,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_676" + } }, { "calculated data name": "FromPercent", @@ -17361,6 +16893,7 @@ "value": 36.4, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_677", "data source aggregate document": { "data source document": [ { @@ -17368,8 +16901,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_677" + } }, { "calculated data name": "Molarity", @@ -17377,6 +16909,7 @@ "value": 80.6, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_678", "data source aggregate document": { "data source document": [ { @@ -17384,8 +16917,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_678" + } }, { "calculated data name": "RunDistance", @@ -17393,6 +16925,7 @@ "value": 40.4, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_679", "data source aggregate document": { "data source document": [ { @@ -17400,8 +16933,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_679" + } }, { "calculated data name": "ToPercent", @@ -17409,6 +16941,7 @@ "value": 42.7, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_680", "data source aggregate document": { "data source document": [ { @@ -17416,8 +16949,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_680" + } }, { "calculated data name": "Concentration", @@ -17425,6 +16957,7 @@ "value": 246.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_682", "data source aggregate document": { "data source document": [ { @@ -17432,8 +16965,7 @@ "data source feature": "sample" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_682" + } }, { "calculated data name": "AssignedQuantity", @@ -17441,6 +16973,7 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_684", "data source aggregate document": { "data source document": [ { @@ -17448,8 +16981,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_684" + } }, { "calculated data name": "CalibratedQuantity", @@ -17457,6 +16989,7 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_685", "data source aggregate document": { "data source document": [ { @@ -17464,8 +16997,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_685" + } }, { "calculated data name": "FromPercent", @@ -17473,6 +17005,7 @@ "value": 81.1, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_686", "data source aggregate document": { "data source document": [ { @@ -17480,8 +17013,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_686" + } }, { "calculated data name": "Molarity", @@ -17489,6 +17021,7 @@ "value": 4710.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_687", "data source aggregate document": { "data source document": [ { @@ -17496,8 +17029,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_687" + } }, { "calculated data name": "RunDistance", @@ -17505,6 +17037,7 @@ "value": 84.1, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_688", "data source aggregate document": { "data source document": [ { @@ -17512,8 +17045,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_688" + } }, { "calculated data name": "ToPercent", @@ -17521,6 +17053,7 @@ "value": 86.9, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_689", "data source aggregate document": { "data source document": [ { @@ -17528,8 +17061,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_689" + } }, { "calculated data name": "CalibratedQuantity", @@ -17537,6 +17069,7 @@ "value": 94.7, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_691", "data source aggregate document": { "data source document": [ { @@ -17544,8 +17077,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_691" + } }, { "calculated data name": "FromPercent", @@ -17553,6 +17085,7 @@ "value": 47.1, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_692", "data source aggregate document": { "data source document": [ { @@ -17560,8 +17093,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_692" + } }, { "calculated data name": "Molarity", @@ -17569,6 +17101,7 @@ "value": 156.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_693", "data source aggregate document": { "data source document": [ { @@ -17576,8 +17109,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_693" + } }, { "calculated data name": "RunDistance", @@ -17585,6 +17117,7 @@ "value": 49.3, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_694", "data source aggregate document": { "data source document": [ { @@ -17592,8 +17125,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_694" + } }, { "calculated data name": "ToPercent", @@ -17601,6 +17133,7 @@ "value": 55.9, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_695", "data source aggregate document": { "data source document": [ { @@ -17608,8 +17141,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_695" + } }, { "calculated data name": "CalibratedQuantity", @@ -17617,6 +17149,7 @@ "value": 37.6, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_697", "data source aggregate document": { "data source document": [ { @@ -17624,8 +17157,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_697" + } }, { "calculated data name": "FromPercent", @@ -17633,6 +17165,7 @@ "value": 36.3, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_698", "data source aggregate document": { "data source document": [ { @@ -17640,8 +17173,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_698" + } }, { "calculated data name": "Molarity", @@ -17649,6 +17181,7 @@ "value": 22.7, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_699", "data source aggregate document": { "data source document": [ { @@ -17656,8 +17189,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_699" + } }, { "calculated data name": "RunDistance", @@ -17665,6 +17197,7 @@ "value": 40.2, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_700", "data source aggregate document": { "data source document": [ { @@ -17672,8 +17205,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_700" + } }, { "calculated data name": "ToPercent", @@ -17681,6 +17213,7 @@ "value": 41.8, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_701", "data source aggregate document": { "data source document": [ { @@ -17688,8 +17221,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_701" + } }, { "calculated data name": "Concentration", @@ -17697,6 +17229,7 @@ "value": 253.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_703", "data source aggregate document": { "data source document": [ { @@ -17704,8 +17237,7 @@ "data source feature": "sample" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_703" + } }, { "calculated data name": "AssignedQuantity", @@ -17713,6 +17245,7 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_705", "data source aggregate document": { "data source document": [ { @@ -17720,8 +17253,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_705" + } }, { "calculated data name": "CalibratedQuantity", @@ -17729,6 +17261,7 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_706", "data source aggregate document": { "data source document": [ { @@ -17736,8 +17269,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_706" + } }, { "calculated data name": "FromPercent", @@ -17745,6 +17277,7 @@ "value": 79.7, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_707", "data source aggregate document": { "data source document": [ { @@ -17752,8 +17285,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_707" + } }, { "calculated data name": "Molarity", @@ -17761,6 +17293,7 @@ "value": 4710.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_708", "data source aggregate document": { "data source document": [ { @@ -17768,8 +17301,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_708" + } }, { "calculated data name": "RunDistance", @@ -17777,6 +17309,7 @@ "value": 82.8, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_709", "data source aggregate document": { "data source document": [ { @@ -17784,8 +17317,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_709" + } }, { "calculated data name": "ToPercent", @@ -17793,6 +17325,7 @@ "value": 85.6, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_710", "data source aggregate document": { "data source document": [ { @@ -17800,8 +17333,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_710" + } }, { "calculated data name": "CalibratedQuantity", @@ -17809,6 +17341,7 @@ "value": 93.3, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_712", "data source aggregate document": { "data source document": [ { @@ -17816,8 +17349,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_712" + } }, { "calculated data name": "FromPercent", @@ -17825,6 +17357,7 @@ "value": 47.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_713", "data source aggregate document": { "data source document": [ { @@ -17832,8 +17365,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_713" + } }, { "calculated data name": "Molarity", @@ -17841,6 +17373,7 @@ "value": 160.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_714", "data source aggregate document": { "data source document": [ { @@ -17848,8 +17381,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_714" + } }, { "calculated data name": "RunDistance", @@ -17857,6 +17389,7 @@ "value": 48.8, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_715", "data source aggregate document": { "data source document": [ { @@ -17864,8 +17397,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_715" + } }, { "calculated data name": "ToPercent", @@ -17873,6 +17405,7 @@ "value": 55.4, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_716", "data source aggregate document": { "data source document": [ { @@ -17880,8 +17413,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_716" + } }, { "calculated data name": "CalibratedQuantity", @@ -17889,6 +17421,7 @@ "value": 41.9, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_718", "data source aggregate document": { "data source document": [ { @@ -17896,8 +17429,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_718" + } }, { "calculated data name": "FromPercent", @@ -17905,6 +17437,7 @@ "value": 36.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_719", "data source aggregate document": { "data source document": [ { @@ -17912,8 +17445,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_719" + } }, { "calculated data name": "Molarity", @@ -17921,6 +17453,7 @@ "value": 26.7, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_720", "data source aggregate document": { "data source document": [ { @@ -17928,8 +17461,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_720" + } }, { "calculated data name": "RunDistance", @@ -17937,6 +17469,7 @@ "value": 39.9, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_721", "data source aggregate document": { "data source document": [ { @@ -17944,8 +17477,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_721" + } }, { "calculated data name": "ToPercent", @@ -17953,6 +17485,7 @@ "value": 41.7, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_722", "data source aggregate document": { "data source document": [ { @@ -17960,8 +17493,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_722" + } }, { "calculated data name": "Concentration", @@ -17969,6 +17501,7 @@ "value": 247.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_724", "data source aggregate document": { "data source document": [ { @@ -17976,8 +17509,7 @@ "data source feature": "sample" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_724" + } }, { "calculated data name": "AssignedQuantity", @@ -17985,6 +17517,7 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_726", "data source aggregate document": { "data source document": [ { @@ -17992,8 +17525,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_726" + } }, { "calculated data name": "CalibratedQuantity", @@ -18001,6 +17533,7 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_727", "data source aggregate document": { "data source document": [ { @@ -18008,8 +17541,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_727" + } }, { "calculated data name": "FromPercent", @@ -18017,6 +17549,7 @@ "value": 79.7, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_728", "data source aggregate document": { "data source document": [ { @@ -18024,8 +17557,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_728" + } }, { "calculated data name": "Molarity", @@ -18033,6 +17565,7 @@ "value": 4710.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_729", "data source aggregate document": { "data source document": [ { @@ -18040,8 +17573,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_729" + } }, { "calculated data name": "RunDistance", @@ -18049,6 +17581,7 @@ "value": 82.8, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_730", "data source aggregate document": { "data source document": [ { @@ -18056,8 +17589,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_730" + } }, { "calculated data name": "ToPercent", @@ -18065,6 +17597,7 @@ "value": 85.6, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_731", "data source aggregate document": { "data source document": [ { @@ -18072,8 +17605,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_731" + } }, { "calculated data name": "CalibratedQuantity", @@ -18081,6 +17613,7 @@ "value": 179.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_733", "data source aggregate document": { "data source document": [ { @@ -18088,8 +17621,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_733" + } }, { "calculated data name": "FromPercent", @@ -18097,6 +17629,7 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_734", "data source aggregate document": { "data source document": [ { @@ -18104,8 +17637,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_734" + } }, { "calculated data name": "Molarity", @@ -18113,6 +17645,7 @@ "value": 300.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_735", "data source aggregate document": { "data source document": [ { @@ -18120,8 +17653,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_735" + } }, { "calculated data name": "RunDistance", @@ -18129,6 +17661,7 @@ "value": 48.6, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_736", "data source aggregate document": { "data source document": [ { @@ -18136,8 +17669,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_736" + } }, { "calculated data name": "ToPercent", @@ -18145,6 +17677,7 @@ "value": 58.1, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_737", "data source aggregate document": { "data source document": [ { @@ -18152,8 +17685,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_737" + } }, { "calculated data name": "Concentration", @@ -18161,6 +17693,7 @@ "value": 249.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_739", "data source aggregate document": { "data source document": [ { @@ -18168,8 +17701,7 @@ "data source feature": "sample" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_739" + } }, { "calculated data name": "AssignedQuantity", @@ -18177,6 +17709,7 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_741", "data source aggregate document": { "data source document": [ { @@ -18184,8 +17717,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_741" + } }, { "calculated data name": "CalibratedQuantity", @@ -18193,6 +17725,7 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_742", "data source aggregate document": { "data source document": [ { @@ -18200,8 +17733,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_742" + } }, { "calculated data name": "FromPercent", @@ -18209,6 +17741,7 @@ "value": 80.1, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_743", "data source aggregate document": { "data source document": [ { @@ -18216,8 +17749,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_743" + } }, { "calculated data name": "Molarity", @@ -18225,6 +17757,7 @@ "value": 4710.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_744", "data source aggregate document": { "data source document": [ { @@ -18232,8 +17765,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_744" + } }, { "calculated data name": "RunDistance", @@ -18241,6 +17773,7 @@ "value": 83.2, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_745", "data source aggregate document": { "data source document": [ { @@ -18248,8 +17781,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_745" + } }, { "calculated data name": "ToPercent", @@ -18257,6 +17789,7 @@ "value": 86.1, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_746", "data source aggregate document": { "data source document": [ { @@ -18264,8 +17797,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_746" + } }, { "calculated data name": "CalibratedQuantity", @@ -18273,6 +17805,7 @@ "value": 156.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_748", "data source aggregate document": { "data source document": [ { @@ -18280,8 +17813,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_748" + } }, { "calculated data name": "FromPercent", @@ -18289,6 +17821,7 @@ "value": 40.5, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_749", "data source aggregate document": { "data source document": [ { @@ -18296,8 +17829,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_749" + } }, { "calculated data name": "Molarity", @@ -18305,6 +17837,7 @@ "value": 259.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_750", "data source aggregate document": { "data source document": [ { @@ -18312,8 +17845,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_750" + } }, { "calculated data name": "RunDistance", @@ -18321,6 +17853,7 @@ "value": 48.8, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_751", "data source aggregate document": { "data source document": [ { @@ -18328,8 +17861,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_751" + } }, { "calculated data name": "ToPercent", @@ -18337,6 +17869,7 @@ "value": 55.7, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_752", "data source aggregate document": { "data source document": [ { @@ -18344,8 +17877,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_752" + } }, { "calculated data name": "Concentration", @@ -18353,6 +17885,7 @@ "value": 246.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_754", "data source aggregate document": { "data source document": [ { @@ -18360,8 +17893,7 @@ "data source feature": "sample" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_754" + } }, { "calculated data name": "AssignedQuantity", @@ -18369,6 +17901,7 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_756", "data source aggregate document": { "data source document": [ { @@ -18376,8 +17909,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_756" + } }, { "calculated data name": "CalibratedQuantity", @@ -18385,6 +17917,7 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_757", "data source aggregate document": { "data source document": [ { @@ -18392,8 +17925,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_757" + } }, { "calculated data name": "FromPercent", @@ -18401,6 +17933,7 @@ "value": 78.5, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_758", "data source aggregate document": { "data source document": [ { @@ -18408,8 +17941,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_758" + } }, { "calculated data name": "Molarity", @@ -18417,6 +17949,7 @@ "value": 4710.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_759", "data source aggregate document": { "data source document": [ { @@ -18424,8 +17957,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_759" + } }, { "calculated data name": "RunDistance", @@ -18433,6 +17965,7 @@ "value": 81.6, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_760", "data source aggregate document": { "data source document": [ { @@ -18440,8 +17973,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_760" + } }, { "calculated data name": "ToPercent", @@ -18449,6 +17981,7 @@ "value": 84.5, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_761", "data source aggregate document": { "data source document": [ { @@ -18456,8 +17989,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_761" + } }, { "calculated data name": "CalibratedQuantity", @@ -18465,6 +17997,7 @@ "value": 61.8, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_763", "data source aggregate document": { "data source document": [ { @@ -18472,8 +18005,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_763" + } }, { "calculated data name": "FromPercent", @@ -18481,6 +18013,7 @@ "value": 39.9, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_764", "data source aggregate document": { "data source document": [ { @@ -18488,8 +18021,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_764" + } }, { "calculated data name": "Molarity", @@ -18497,6 +18029,7 @@ "value": 102.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_765", "data source aggregate document": { "data source document": [ { @@ -18504,8 +18037,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_765" + } }, { "calculated data name": "RunDistance", @@ -18513,6 +18045,7 @@ "value": 47.8, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_766", "data source aggregate document": { "data source document": [ { @@ -18520,8 +18053,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_766" + } }, { "calculated data name": "ToPercent", @@ -18529,6 +18061,7 @@ "value": 48.6, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_767", "data source aggregate document": { "data source document": [ { @@ -18536,8 +18069,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_767" + } }, { "calculated data name": "Concentration", @@ -18545,6 +18077,7 @@ "value": 257.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_769", "data source aggregate document": { "data source document": [ { @@ -18552,8 +18085,7 @@ "data source feature": "sample" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_769" + } }, { "calculated data name": "AssignedQuantity", @@ -18561,6 +18093,7 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_771", "data source aggregate document": { "data source document": [ { @@ -18568,8 +18101,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_771" + } }, { "calculated data name": "CalibratedQuantity", @@ -18577,6 +18109,7 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_772", "data source aggregate document": { "data source document": [ { @@ -18584,8 +18117,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_772" + } }, { "calculated data name": "FromPercent", @@ -18593,6 +18125,7 @@ "value": 79.9, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_773", "data source aggregate document": { "data source document": [ { @@ -18600,8 +18133,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_773" + } }, { "calculated data name": "Molarity", @@ -18609,6 +18141,7 @@ "value": 4710.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_774", "data source aggregate document": { "data source document": [ { @@ -18616,8 +18149,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_774" + } }, { "calculated data name": "RunDistance", @@ -18625,6 +18157,7 @@ "value": 82.9, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_775", "data source aggregate document": { "data source document": [ { @@ -18632,8 +18165,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_775" + } }, { "calculated data name": "ToPercent", @@ -18641,6 +18173,7 @@ "value": 85.6, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_776", "data source aggregate document": { "data source document": [ { @@ -18648,8 +18181,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_776" + } }, { "calculated data name": "CalibratedQuantity", @@ -18657,6 +18189,7 @@ "value": 67.1, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_778", "data source aggregate document": { "data source document": [ { @@ -18664,8 +18197,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_778" + } }, { "calculated data name": "FromPercent", @@ -18673,6 +18205,7 @@ "value": 40.1, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_779", "data source aggregate document": { "data source document": [ { @@ -18680,8 +18213,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_779" + } }, { "calculated data name": "Molarity", @@ -18689,6 +18221,7 @@ "value": 105.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_780", "data source aggregate document": { "data source document": [ { @@ -18696,8 +18229,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_780" + } }, { "calculated data name": "RunDistance", @@ -18705,6 +18237,7 @@ "value": 47.9, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_781", "data source aggregate document": { "data source document": [ { @@ -18712,8 +18245,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_781" + } }, { "calculated data name": "ToPercent", @@ -18721,6 +18253,7 @@ "value": 48.9, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_782", "data source aggregate document": { "data source document": [ { @@ -18728,8 +18261,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_782" + } }, { "calculated data name": "Concentration", @@ -18737,6 +18269,7 @@ "value": 274.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_784", "data source aggregate document": { "data source document": [ { @@ -18744,8 +18277,7 @@ "data source feature": "sample" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_784" + } }, { "calculated data name": "AssignedQuantity", @@ -18753,6 +18285,7 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_786", "data source aggregate document": { "data source document": [ { @@ -18760,8 +18293,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_786" + } }, { "calculated data name": "CalibratedQuantity", @@ -18769,6 +18301,7 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_787", "data source aggregate document": { "data source document": [ { @@ -18776,8 +18309,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_787" + } }, { "calculated data name": "FromPercent", @@ -18785,6 +18317,7 @@ "value": 79.6, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_788", "data source aggregate document": { "data source document": [ { @@ -18792,8 +18325,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_788" + } }, { "calculated data name": "Molarity", @@ -18801,6 +18333,7 @@ "value": 4710.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_789", "data source aggregate document": { "data source document": [ { @@ -18808,8 +18341,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_789" + } }, { "calculated data name": "RunDistance", @@ -18817,6 +18349,7 @@ "value": 82.7, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_790", "data source aggregate document": { "data source document": [ { @@ -18824,8 +18357,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_790" + } }, { "calculated data name": "ToPercent", @@ -18833,6 +18365,7 @@ "value": 85.4, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_791", "data source aggregate document": { "data source document": [ { @@ -18840,8 +18373,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_791" + } }, { "calculated data name": "CalibratedQuantity", @@ -18849,6 +18381,7 @@ "value": 59.3, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_793", "data source aggregate document": { "data source document": [ { @@ -18856,8 +18389,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_793" + } }, { "calculated data name": "FromPercent", @@ -18865,6 +18397,7 @@ "value": 46.2, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_794", "data source aggregate document": { "data source document": [ { @@ -18872,8 +18405,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_794" + } }, { "calculated data name": "Molarity", @@ -18881,6 +18413,7 @@ "value": 95.5, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_795", "data source aggregate document": { "data source document": [ { @@ -18888,8 +18421,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_795" + } }, { "calculated data name": "RunDistance", @@ -18897,6 +18429,7 @@ "value": 48.1, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_796", "data source aggregate document": { "data source document": [ { @@ -18904,8 +18437,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_796" + } }, { "calculated data name": "ToPercent", @@ -18913,6 +18445,7 @@ "value": 52.3, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_797", "data source aggregate document": { "data source document": [ { @@ -18920,8 +18453,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_797" + } }, { "calculated data name": "CalibratedQuantity", @@ -18929,6 +18461,7 @@ "value": 141.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_799", "data source aggregate document": { "data source document": [ { @@ -18936,8 +18469,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_799" + } }, { "calculated data name": "FromPercent", @@ -18945,6 +18477,7 @@ "value": 35.1, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_800", "data source aggregate document": { "data source document": [ { @@ -18952,8 +18485,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_800" + } }, { "calculated data name": "Molarity", @@ -18961,6 +18493,7 @@ "value": 85.9, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_801", "data source aggregate document": { "data source document": [ { @@ -18968,8 +18501,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_801" + } }, { "calculated data name": "RunDistance", @@ -18977,6 +18509,7 @@ "value": 39.5, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_802", "data source aggregate document": { "data source document": [ { @@ -18984,8 +18517,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_802" + } }, { "calculated data name": "ToPercent", @@ -18993,6 +18525,7 @@ "value": 42.6, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_803", "data source aggregate document": { "data source document": [ { @@ -19000,8 +18533,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_803" + } }, { "calculated data name": "Concentration", @@ -19009,6 +18541,7 @@ "value": 290.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_805", "data source aggregate document": { "data source document": [ { @@ -19016,8 +18549,7 @@ "data source feature": "sample" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_805" + } }, { "calculated data name": "AssignedQuantity", @@ -19025,6 +18557,7 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_807", "data source aggregate document": { "data source document": [ { @@ -19032,8 +18565,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_807" + } }, { "calculated data name": "CalibratedQuantity", @@ -19041,6 +18573,7 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_808", "data source aggregate document": { "data source document": [ { @@ -19048,8 +18581,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_808" + } }, { "calculated data name": "FromPercent", @@ -19057,6 +18589,7 @@ "value": 81.6, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_809", "data source aggregate document": { "data source document": [ { @@ -19064,8 +18597,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_809" + } }, { "calculated data name": "Molarity", @@ -19073,6 +18605,7 @@ "value": 4710.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_810", "data source aggregate document": { "data source document": [ { @@ -19080,8 +18613,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_810" + } }, { "calculated data name": "RunDistance", @@ -19089,6 +18621,7 @@ "value": 84.6, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_811", "data source aggregate document": { "data source document": [ { @@ -19096,8 +18629,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_811" + } }, { "calculated data name": "ToPercent", @@ -19105,6 +18637,7 @@ "value": 87.4, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_812", "data source aggregate document": { "data source document": [ { @@ -19112,8 +18645,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_812" + } }, { "calculated data name": "CalibratedQuantity", @@ -19121,6 +18653,7 @@ "value": 62.7, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_814", "data source aggregate document": { "data source document": [ { @@ -19128,8 +18661,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_814" + } }, { "calculated data name": "FromPercent", @@ -19137,6 +18669,7 @@ "value": 46.6, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_815", "data source aggregate document": { "data source document": [ { @@ -19144,8 +18677,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_815" + } }, { "calculated data name": "Molarity", @@ -19153,6 +18685,7 @@ "value": 96.4, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_816", "data source aggregate document": { "data source document": [ { @@ -19160,8 +18693,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_816" + } }, { "calculated data name": "RunDistance", @@ -19169,6 +18701,7 @@ "value": 48.9, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_817", "data source aggregate document": { "data source document": [ { @@ -19176,8 +18709,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_817" + } }, { "calculated data name": "ToPercent", @@ -19185,6 +18717,7 @@ "value": 53.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_818", "data source aggregate document": { "data source document": [ { @@ -19192,8 +18725,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_818" + } }, { "calculated data name": "CalibratedQuantity", @@ -19201,6 +18733,7 @@ "value": 132.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_820", "data source aggregate document": { "data source document": [ { @@ -19208,8 +18741,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_820" + } }, { "calculated data name": "FromPercent", @@ -19217,6 +18749,7 @@ "value": 36.3, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_821", "data source aggregate document": { "data source document": [ { @@ -19224,8 +18757,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_821" + } }, { "calculated data name": "Molarity", @@ -19233,6 +18765,7 @@ "value": 73.5, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_822", "data source aggregate document": { "data source document": [ { @@ -19240,8 +18773,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_822" + } }, { "calculated data name": "RunDistance", @@ -19249,6 +18781,7 @@ "value": 39.9, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_823", "data source aggregate document": { "data source document": [ { @@ -19256,8 +18789,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_823" + } }, { "calculated data name": "ToPercent", @@ -19265,6 +18797,7 @@ "value": 42.2, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_824", "data source aggregate document": { "data source document": [ { @@ -19272,8 +18805,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_824" + } }, { "calculated data name": "Concentration", @@ -19281,6 +18813,7 @@ "value": 284.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_826", "data source aggregate document": { "data source document": [ { @@ -19288,8 +18821,7 @@ "data source feature": "sample" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_826" + } }, { "calculated data name": "AssignedQuantity", @@ -19297,6 +18829,7 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_828", "data source aggregate document": { "data source document": [ { @@ -19304,8 +18837,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_828" + } }, { "calculated data name": "CalibratedQuantity", @@ -19313,6 +18845,7 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_829", "data source aggregate document": { "data source document": [ { @@ -19320,8 +18853,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_829" + } }, { "calculated data name": "FromPercent", @@ -19329,6 +18861,7 @@ "value": 80.3, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_830", "data source aggregate document": { "data source document": [ { @@ -19336,8 +18869,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_830" + } }, { "calculated data name": "Molarity", @@ -19345,6 +18877,7 @@ "value": 4710.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_831", "data source aggregate document": { "data source document": [ { @@ -19352,8 +18885,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_831" + } }, { "calculated data name": "RunDistance", @@ -19361,6 +18893,7 @@ "value": 83.4, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_832", "data source aggregate document": { "data source document": [ { @@ -19368,8 +18901,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_832" + } }, { "calculated data name": "ToPercent", @@ -19377,6 +18909,7 @@ "value": 86.2, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_833", "data source aggregate document": { "data source document": [ { @@ -19384,8 +18917,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_833" + } }, { "calculated data name": "CalibratedQuantity", @@ -19393,6 +18925,7 @@ "value": 101.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_835", "data source aggregate document": { "data source document": [ { @@ -19400,8 +18933,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_835" + } }, { "calculated data name": "FromPercent", @@ -19409,6 +18941,7 @@ "value": 46.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_836", "data source aggregate document": { "data source document": [ { @@ -19416,8 +18949,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_836" + } }, { "calculated data name": "Molarity", @@ -19425,6 +18957,7 @@ "value": 153.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_837", "data source aggregate document": { "data source document": [ { @@ -19432,8 +18965,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_837" + } }, { "calculated data name": "RunDistance", @@ -19441,6 +18973,7 @@ "value": 47.9, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_838", "data source aggregate document": { "data source document": [ { @@ -19448,8 +18981,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_838" + } }, { "calculated data name": "ToPercent", @@ -19457,6 +18989,7 @@ "value": 54.7, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_839", "data source aggregate document": { "data source document": [ { @@ -19464,8 +18997,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_839" + } }, { "calculated data name": "CalibratedQuantity", @@ -19473,6 +19005,7 @@ "value": 46.7, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_841", "data source aggregate document": { "data source document": [ { @@ -19480,8 +19013,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_841" + } }, { "calculated data name": "FromPercent", @@ -19489,6 +19021,7 @@ "value": 35.7, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_842", "data source aggregate document": { "data source document": [ { @@ -19496,8 +19029,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_842" + } }, { "calculated data name": "Molarity", @@ -19505,6 +19037,7 @@ "value": 24.4, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_843", "data source aggregate document": { "data source document": [ { @@ -19512,8 +19045,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_843" + } }, { "calculated data name": "RunDistance", @@ -19521,6 +19053,7 @@ "value": 38.8, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_844", "data source aggregate document": { "data source document": [ { @@ -19528,8 +19061,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_844" + } }, { "calculated data name": "ToPercent", @@ -19537,6 +19069,7 @@ "value": 40.8, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_845", "data source aggregate document": { "data source document": [ { @@ -19544,8 +19077,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_845" + } }, { "calculated data name": "Concentration", @@ -19553,6 +19085,7 @@ "value": 267.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_847", "data source aggregate document": { "data source document": [ { @@ -19560,8 +19093,7 @@ "data source feature": "sample" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_847" + } }, { "calculated data name": "AssignedQuantity", @@ -19569,6 +19101,7 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_849", "data source aggregate document": { "data source document": [ { @@ -19576,8 +19109,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_849" + } }, { "calculated data name": "CalibratedQuantity", @@ -19585,6 +19117,7 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_850", "data source aggregate document": { "data source document": [ { @@ -19592,8 +19125,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_850" + } }, { "calculated data name": "FromPercent", @@ -19601,6 +19133,7 @@ "value": 80.6, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_851", "data source aggregate document": { "data source document": [ { @@ -19608,8 +19141,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_851" + } }, { "calculated data name": "Molarity", @@ -19617,6 +19149,7 @@ "value": 4710.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_852", "data source aggregate document": { "data source document": [ { @@ -19624,8 +19157,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_852" + } }, { "calculated data name": "RunDistance", @@ -19633,6 +19165,7 @@ "value": 83.7, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_853", "data source aggregate document": { "data source document": [ { @@ -19640,8 +19173,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_853" + } }, { "calculated data name": "ToPercent", @@ -19649,6 +19181,7 @@ "value": 86.5, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_854", "data source aggregate document": { "data source document": [ { @@ -19656,8 +19189,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_854" + } }, { "calculated data name": "CalibratedQuantity", @@ -19665,6 +19197,7 @@ "value": 97.9, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_856", "data source aggregate document": { "data source document": [ { @@ -19672,8 +19205,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_856" + } }, { "calculated data name": "FromPercent", @@ -19681,6 +19213,7 @@ "value": 46.4, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_857", "data source aggregate document": { "data source document": [ { @@ -19688,8 +19221,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_857" + } }, { "calculated data name": "Molarity", @@ -19697,6 +19229,7 @@ "value": 151.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_858", "data source aggregate document": { "data source document": [ { @@ -19704,8 +19237,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_858" + } }, { "calculated data name": "RunDistance", @@ -19713,6 +19245,7 @@ "value": 48.3, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_859", "data source aggregate document": { "data source document": [ { @@ -19720,8 +19253,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_859" + } }, { "calculated data name": "ToPercent", @@ -19729,6 +19261,7 @@ "value": 55.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_860", "data source aggregate document": { "data source document": [ { @@ -19736,8 +19269,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_860" + } }, { "calculated data name": "CalibratedQuantity", @@ -19745,6 +19277,7 @@ "value": 40.9, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_862", "data source aggregate document": { "data source document": [ { @@ -19752,8 +19285,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_862" + } }, { "calculated data name": "FromPercent", @@ -19761,6 +19293,7 @@ "value": 36.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_863", "data source aggregate document": { "data source document": [ { @@ -19768,8 +19301,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_863" + } }, { "calculated data name": "Molarity", @@ -19777,6 +19309,7 @@ "value": 22.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_864", "data source aggregate document": { "data source document": [ { @@ -19784,8 +19317,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_864" + } }, { "calculated data name": "RunDistance", @@ -19793,6 +19325,7 @@ "value": 39.1, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_865", "data source aggregate document": { "data source document": [ { @@ -19800,8 +19333,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_865" + } }, { "calculated data name": "ToPercent", @@ -19809,6 +19341,7 @@ "value": 40.9, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_866", "data source aggregate document": { "data source document": [ { @@ -19816,8 +19349,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_866" + } }, { "calculated data name": "Concentration", @@ -19825,6 +19357,7 @@ "value": 252.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_868", "data source aggregate document": { "data source document": [ { @@ -19832,8 +19365,7 @@ "data source feature": "sample" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_868" + } }, { "calculated data name": "AssignedQuantity", @@ -19841,6 +19373,7 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_870", "data source aggregate document": { "data source document": [ { @@ -19848,8 +19381,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_870" + } }, { "calculated data name": "CalibratedQuantity", @@ -19857,6 +19389,7 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_871", "data source aggregate document": { "data source document": [ { @@ -19864,8 +19397,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_871" + } }, { "calculated data name": "FromPercent", @@ -19873,6 +19405,7 @@ "value": 80.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_872", "data source aggregate document": { "data source document": [ { @@ -19880,8 +19413,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_872" + } }, { "calculated data name": "Molarity", @@ -19889,6 +19421,7 @@ "value": 4710.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_873", "data source aggregate document": { "data source document": [ { @@ -19896,8 +19429,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_873" + } }, { "calculated data name": "RunDistance", @@ -19905,6 +19437,7 @@ "value": 83.1, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_874", "data source aggregate document": { "data source document": [ { @@ -19912,8 +19445,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_874" + } }, { "calculated data name": "ToPercent", @@ -19921,6 +19453,7 @@ "value": 86.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_875", "data source aggregate document": { "data source document": [ { @@ -19928,8 +19461,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_875" + } }, { "calculated data name": "CalibratedQuantity", @@ -19937,6 +19469,7 @@ "value": 99.5, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_877", "data source aggregate document": { "data source document": [ { @@ -19944,8 +19477,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_877" + } }, { "calculated data name": "FromPercent", @@ -19953,6 +19485,7 @@ "value": 39.8, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_878", "data source aggregate document": { "data source document": [ { @@ -19960,8 +19493,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_878" + } }, { "calculated data name": "Molarity", @@ -19969,6 +19501,7 @@ "value": 151.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_879", "data source aggregate document": { "data source document": [ { @@ -19976,8 +19509,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_879" + } }, { "calculated data name": "RunDistance", @@ -19985,6 +19517,7 @@ "value": 47.8, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_880", "data source aggregate document": { "data source document": [ { @@ -19992,8 +19525,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_880" + } }, { "calculated data name": "ToPercent", @@ -20001,6 +19533,7 @@ "value": 49.9, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_881", "data source aggregate document": { "data source document": [ { @@ -20008,8 +19541,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_881" + } }, { "calculated data name": "CalibratedQuantity", @@ -20017,6 +19549,7 @@ "value": 7.59, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_883", "data source aggregate document": { "data source document": [ { @@ -20024,8 +19557,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_883" + } }, { "calculated data name": "FromPercent", @@ -20033,6 +19565,7 @@ "value": 35.4, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_884", "data source aggregate document": { "data source document": [ { @@ -20040,8 +19573,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_884" + } }, { "calculated data name": "Molarity", @@ -20049,6 +19581,7 @@ "value": 4.04, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_885", "data source aggregate document": { "data source document": [ { @@ -20056,8 +19589,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_885" + } }, { "calculated data name": "RunDistance", @@ -20065,6 +19597,7 @@ "value": 38.8, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_886", "data source aggregate document": { "data source document": [ { @@ -20072,8 +19605,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_886" + } }, { "calculated data name": "ToPercent", @@ -20081,6 +19613,7 @@ "value": 39.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_887", "data source aggregate document": { "data source document": [ { @@ -20088,8 +19621,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_887" + } }, { "calculated data name": "Concentration", @@ -20097,6 +19629,7 @@ "value": 245.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_889", "data source aggregate document": { "data source document": [ { @@ -20104,8 +19637,7 @@ "data source feature": "sample" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_889" + } }, { "calculated data name": "AssignedQuantity", @@ -20113,6 +19645,7 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_891", "data source aggregate document": { "data source document": [ { @@ -20120,8 +19653,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_891" + } }, { "calculated data name": "CalibratedQuantity", @@ -20129,6 +19661,7 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_892", "data source aggregate document": { "data source document": [ { @@ -20136,8 +19669,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_892" + } }, { "calculated data name": "FromPercent", @@ -20145,6 +19677,7 @@ "value": 79.9, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_893", "data source aggregate document": { "data source document": [ { @@ -20152,8 +19685,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_893" + } }, { "calculated data name": "Molarity", @@ -20161,6 +19693,7 @@ "value": 4710.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_894", "data source aggregate document": { "data source document": [ { @@ -20168,8 +19701,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_894" + } }, { "calculated data name": "RunDistance", @@ -20177,6 +19709,7 @@ "value": 83.1, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_895", "data source aggregate document": { "data source document": [ { @@ -20184,8 +19717,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_895" + } }, { "calculated data name": "ToPercent", @@ -20193,6 +19725,7 @@ "value": 85.9, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_896", "data source aggregate document": { "data source document": [ { @@ -20200,8 +19733,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_896" + } }, { "calculated data name": "CalibratedQuantity", @@ -20209,6 +19741,7 @@ "value": 151.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_898", "data source aggregate document": { "data source document": [ { @@ -20216,8 +19749,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_898" + } }, { "calculated data name": "FromPercent", @@ -20225,6 +19757,7 @@ "value": 39.7, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_899", "data source aggregate document": { "data source document": [ { @@ -20232,8 +19765,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_899" + } }, { "calculated data name": "Molarity", @@ -20241,6 +19773,7 @@ "value": 227.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_900", "data source aggregate document": { "data source document": [ { @@ -20248,8 +19781,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_900" + } }, { "calculated data name": "RunDistance", @@ -20257,6 +19789,7 @@ "value": 47.7, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_901", "data source aggregate document": { "data source document": [ { @@ -20264,8 +19797,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_901" + } }, { "calculated data name": "ToPercent", @@ -20273,6 +19805,7 @@ "value": 54.8, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_902", "data source aggregate document": { "data source document": [ { @@ -20280,8 +19813,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_902" + } }, { "calculated data name": "Concentration", @@ -20289,6 +19821,7 @@ "value": 258.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_904", "data source aggregate document": { "data source document": [ { @@ -20296,8 +19829,7 @@ "data source feature": "sample" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_904" + } }, { "calculated data name": "AssignedQuantity", @@ -20305,6 +19837,7 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_906", "data source aggregate document": { "data source document": [ { @@ -20312,8 +19845,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_906" + } }, { "calculated data name": "CalibratedQuantity", @@ -20321,6 +19853,7 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_907", "data source aggregate document": { "data source document": [ { @@ -20328,8 +19861,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_907" + } }, { "calculated data name": "FromPercent", @@ -20337,6 +19869,7 @@ "value": 78.4, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_908", "data source aggregate document": { "data source document": [ { @@ -20344,8 +19877,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_908" + } }, { "calculated data name": "Molarity", @@ -20353,6 +19885,7 @@ "value": 4710.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_909", "data source aggregate document": { "data source document": [ { @@ -20360,8 +19893,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_909" + } }, { "calculated data name": "RunDistance", @@ -20369,6 +19901,7 @@ "value": 81.6, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_910", "data source aggregate document": { "data source document": [ { @@ -20376,8 +19909,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_910" + } }, { "calculated data name": "ToPercent", @@ -20385,6 +19917,7 @@ "value": 84.5, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_911", "data source aggregate document": { "data source document": [ { @@ -20392,8 +19925,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_911" + } }, { "calculated data name": "CalibratedQuantity", @@ -20401,6 +19933,7 @@ "value": 65.7, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_913", "data source aggregate document": { "data source document": [ { @@ -20408,8 +19941,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_913" + } }, { "calculated data name": "FromPercent", @@ -20417,6 +19949,7 @@ "value": 39.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_914", "data source aggregate document": { "data source document": [ { @@ -20424,8 +19957,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_914" + } }, { "calculated data name": "Molarity", @@ -20433,6 +19965,7 @@ "value": 99.5, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_915", "data source aggregate document": { "data source document": [ { @@ -20440,8 +19973,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_915" + } }, { "calculated data name": "RunDistance", @@ -20449,6 +19981,7 @@ "value": 46.8, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_916", "data source aggregate document": { "data source document": [ { @@ -20456,8 +19989,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_916" + } }, { "calculated data name": "ToPercent", @@ -20465,6 +19997,7 @@ "value": 47.7, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_917", "data source aggregate document": { "data source document": [ { @@ -20472,8 +20005,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_917" + } }, { "calculated data name": "Concentration", @@ -20481,6 +20013,7 @@ "value": 274.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_919", "data source aggregate document": { "data source document": [ { @@ -20488,8 +20021,7 @@ "data source feature": "sample" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_919" + } }, { "calculated data name": "AssignedQuantity", @@ -20497,6 +20029,7 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_921", "data source aggregate document": { "data source document": [ { @@ -20504,8 +20037,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_921" + } }, { "calculated data name": "CalibratedQuantity", @@ -20513,6 +20045,7 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_922", "data source aggregate document": { "data source document": [ { @@ -20520,8 +20053,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_922" + } }, { "calculated data name": "FromPercent", @@ -20529,6 +20061,7 @@ "value": 80.1, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_923", "data source aggregate document": { "data source document": [ { @@ -20536,8 +20069,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_923" + } }, { "calculated data name": "Molarity", @@ -20545,6 +20077,7 @@ "value": 4710.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_924", "data source aggregate document": { "data source document": [ { @@ -20552,8 +20085,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_924" + } }, { "calculated data name": "RunDistance", @@ -20561,6 +20093,7 @@ "value": 83.1, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_925", "data source aggregate document": { "data source document": [ { @@ -20568,8 +20101,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_925" + } }, { "calculated data name": "ToPercent", @@ -20577,6 +20109,7 @@ "value": 85.9, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_926", "data source aggregate document": { "data source document": [ { @@ -20584,8 +20117,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_926" + } }, { "calculated data name": "CalibratedQuantity", @@ -20593,6 +20125,7 @@ "value": 67.7, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_928", "data source aggregate document": { "data source document": [ { @@ -20600,8 +20133,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_928" + } }, { "calculated data name": "FromPercent", @@ -20609,6 +20141,7 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_929", "data source aggregate document": { "data source document": [ { @@ -20616,8 +20149,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_929" + } }, { "calculated data name": "Molarity", @@ -20625,6 +20157,7 @@ "value": 102.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_930", "data source aggregate document": { "data source document": [ { @@ -20632,8 +20165,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_930" + } }, { "calculated data name": "RunDistance", @@ -20641,6 +20173,7 @@ "value": 47.8, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_931", "data source aggregate document": { "data source document": [ { @@ -20648,8 +20181,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_931" + } }, { "calculated data name": "ToPercent", @@ -20657,6 +20189,7 @@ "value": 48.6, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_932", "data source aggregate document": { "data source document": [ { @@ -20664,8 +20197,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_932" + } }, { "calculated data name": "Concentration", @@ -20673,6 +20205,7 @@ "value": 159.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_934", "data source aggregate document": { "data source document": [ { @@ -20680,8 +20213,7 @@ "data source feature": "sample" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_934" + } }, { "calculated data name": "AssignedQuantity", @@ -20689,6 +20221,7 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_936", "data source aggregate document": { "data source document": [ { @@ -20696,8 +20229,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_936" + } }, { "calculated data name": "CalibratedQuantity", @@ -20705,6 +20237,7 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_937", "data source aggregate document": { "data source document": [ { @@ -20712,8 +20245,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_937" + } }, { "calculated data name": "FromPercent", @@ -20721,6 +20253,7 @@ "value": 81.7, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_938", "data source aggregate document": { "data source document": [ { @@ -20728,8 +20261,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_938" + } }, { "calculated data name": "Molarity", @@ -20737,6 +20269,7 @@ "value": 4710.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_939", "data source aggregate document": { "data source document": [ { @@ -20744,8 +20277,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_939" + } }, { "calculated data name": "RunDistance", @@ -20753,6 +20285,7 @@ "value": 84.8, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_940", "data source aggregate document": { "data source document": [ { @@ -20760,8 +20293,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_940" + } }, { "calculated data name": "ToPercent", @@ -20769,6 +20301,7 @@ "value": 87.6, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_941", "data source aggregate document": { "data source document": [ { @@ -20776,8 +20309,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_941" + } }, { "calculated data name": "CalibratedQuantity", @@ -20785,6 +20317,7 @@ "value": 37.9, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_943", "data source aggregate document": { "data source document": [ { @@ -20792,8 +20325,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_943" + } }, { "calculated data name": "FromPercent", @@ -20801,6 +20333,7 @@ "value": 47.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_944", "data source aggregate document": { "data source document": [ { @@ -20808,8 +20341,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_944" + } }, { "calculated data name": "Molarity", @@ -20817,6 +20349,7 @@ "value": 57.6, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_945", "data source aggregate document": { "data source document": [ { @@ -20824,8 +20357,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_945" + } }, { "calculated data name": "RunDistance", @@ -20833,6 +20365,7 @@ "value": 48.9, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_946", "data source aggregate document": { "data source document": [ { @@ -20840,8 +20373,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_946" + } }, { "calculated data name": "ToPercent", @@ -20849,6 +20381,7 @@ "value": 53.6, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_947", "data source aggregate document": { "data source document": [ { @@ -20856,8 +20389,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_947" + } }, { "calculated data name": "CalibratedQuantity", @@ -20865,6 +20397,7 @@ "value": 52.6, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_949", "data source aggregate document": { "data source document": [ { @@ -20872,8 +20405,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_949" + } }, { "calculated data name": "FromPercent", @@ -20881,6 +20413,7 @@ "value": 36.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_950", "data source aggregate document": { "data source document": [ { @@ -20888,8 +20421,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_950" + } }, { "calculated data name": "Molarity", @@ -20897,6 +20429,7 @@ "value": 26.9, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_951", "data source aggregate document": { "data source document": [ { @@ -20904,8 +20437,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_951" + } }, { "calculated data name": "RunDistance", @@ -20913,6 +20445,7 @@ "value": 39.3, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_952", "data source aggregate document": { "data source document": [ { @@ -20920,8 +20453,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_952" + } }, { "calculated data name": "ToPercent", @@ -20929,6 +20461,7 @@ "value": 41.9, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_953", "data source aggregate document": { "data source document": [ { @@ -20936,8 +20469,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_953" + } }, { "calculated data name": "Concentration", @@ -20945,6 +20477,7 @@ "value": 129.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_955", "data source aggregate document": { "data source document": [ { @@ -20952,8 +20485,7 @@ "data source feature": "sample" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_955" + } }, { "calculated data name": "AssignedQuantity", @@ -20961,6 +20493,7 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_957", "data source aggregate document": { "data source document": [ { @@ -20968,8 +20501,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_957" + } }, { "calculated data name": "CalibratedQuantity", @@ -20977,6 +20509,7 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_958", "data source aggregate document": { "data source document": [ { @@ -20984,8 +20517,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_958" + } }, { "calculated data name": "FromPercent", @@ -20993,6 +20525,7 @@ "value": 81.2, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_959", "data source aggregate document": { "data source document": [ { @@ -21000,8 +20533,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_959" + } }, { "calculated data name": "Molarity", @@ -21009,6 +20541,7 @@ "value": 4710.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_960", "data source aggregate document": { "data source document": [ { @@ -21016,8 +20549,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_960" + } }, { "calculated data name": "RunDistance", @@ -21025,6 +20557,7 @@ "value": 82.9, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_961", "data source aggregate document": { "data source document": [ { @@ -21032,8 +20565,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_961" + } }, { "calculated data name": "ToPercent", @@ -21041,6 +20573,7 @@ "value": 84.6, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_962", "data source aggregate document": { "data source document": [ { @@ -21048,8 +20581,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_962" + } }, { "calculated data name": "CalibratedQuantity", @@ -21057,6 +20589,7 @@ "value": 50.5, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_964", "data source aggregate document": { "data source document": [ { @@ -21064,8 +20597,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_964" + } }, { "calculated data name": "FromPercent", @@ -21073,6 +20605,7 @@ "value": 44.9, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_965", "data source aggregate document": { "data source document": [ { @@ -21080,8 +20613,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_965" + } }, { "calculated data name": "Molarity", @@ -21089,6 +20621,7 @@ "value": 71.6, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_966", "data source aggregate document": { "data source document": [ { @@ -21096,8 +20629,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_966" + } }, { "calculated data name": "RunDistance", @@ -21105,6 +20637,7 @@ "value": 47.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_967", "data source aggregate document": { "data source document": [ { @@ -21112,8 +20645,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_967" + } }, { "calculated data name": "ToPercent", @@ -21121,6 +20653,7 @@ "value": 50.7, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_968", "data source aggregate document": { "data source document": [ { @@ -21128,8 +20661,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_968" + } }, { "calculated data name": "CalibratedQuantity", @@ -21137,6 +20669,7 @@ "value": 49.8, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_970", "data source aggregate document": { "data source document": [ { @@ -21144,8 +20677,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_970" + } }, { "calculated data name": "FromPercent", @@ -21153,6 +20685,7 @@ "value": 35.1, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_971", "data source aggregate document": { "data source document": [ { @@ -21160,8 +20693,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_971" + } }, { "calculated data name": "Molarity", @@ -21169,6 +20701,7 @@ "value": 22.9, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_972", "data source aggregate document": { "data source document": [ { @@ -21176,8 +20709,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_972" + } }, { "calculated data name": "RunDistance", @@ -21185,6 +20717,7 @@ "value": 37.5, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_973", "data source aggregate document": { "data source document": [ { @@ -21192,8 +20725,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_973" + } }, { "calculated data name": "ToPercent", @@ -21201,6 +20733,7 @@ "value": 40.3, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_974", "data source aggregate document": { "data source document": [ { @@ -21208,8 +20741,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_974" + } }, { "calculated data name": "Concentration", @@ -21217,6 +20749,7 @@ "value": 154.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_976", "data source aggregate document": { "data source document": [ { @@ -21224,8 +20757,7 @@ "data source feature": "sample" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_976" + } }, { "calculated data name": "AssignedQuantity", @@ -21233,6 +20765,7 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_978", "data source aggregate document": { "data source document": [ { @@ -21240,8 +20773,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_978" + } }, { "calculated data name": "CalibratedQuantity", @@ -21249,6 +20781,7 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_979", "data source aggregate document": { "data source document": [ { @@ -21256,8 +20789,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_979" + } }, { "calculated data name": "FromPercent", @@ -21265,6 +20797,7 @@ "value": 78.7, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_980", "data source aggregate document": { "data source document": [ { @@ -21272,8 +20805,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_980" + } }, { "calculated data name": "Molarity", @@ -21281,6 +20813,7 @@ "value": 4710.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_981", "data source aggregate document": { "data source document": [ { @@ -21288,8 +20821,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_981" + } }, { "calculated data name": "RunDistance", @@ -21297,6 +20829,7 @@ "value": 81.9, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_982", "data source aggregate document": { "data source document": [ { @@ -21304,8 +20837,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_982" + } }, { "calculated data name": "ToPercent", @@ -21313,6 +20845,7 @@ "value": 84.7, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_983", "data source aggregate document": { "data source document": [ { @@ -21320,8 +20853,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_983" + } }, { "calculated data name": "CalibratedQuantity", @@ -21329,6 +20861,7 @@ "value": 26.3, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_985", "data source aggregate document": { "data source document": [ { @@ -21336,8 +20869,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_985" + } }, { "calculated data name": "FromPercent", @@ -21345,6 +20877,7 @@ "value": 45.6, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_986", "data source aggregate document": { "data source document": [ { @@ -21352,8 +20885,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_986" + } }, { "calculated data name": "Molarity", @@ -21361,6 +20893,7 @@ "value": 42.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_987", "data source aggregate document": { "data source document": [ { @@ -21368,8 +20901,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_987" + } }, { "calculated data name": "RunDistance", @@ -21377,6 +20909,7 @@ "value": 47.6, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_988", "data source aggregate document": { "data source document": [ { @@ -21384,8 +20917,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_988" + } }, { "calculated data name": "ToPercent", @@ -21393,6 +20925,7 @@ "value": 49.3, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_989", "data source aggregate document": { "data source document": [ { @@ -21400,8 +20933,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_989" + } }, { "calculated data name": "CalibratedQuantity", @@ -21409,6 +20941,7 @@ "value": 54.6, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_991", "data source aggregate document": { "data source document": [ { @@ -21416,8 +20949,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_991" + } }, { "calculated data name": "FromPercent", @@ -21425,6 +20957,7 @@ "value": 35.8, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_992", "data source aggregate document": { "data source document": [ { @@ -21432,8 +20965,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_992" + } }, { "calculated data name": "Molarity", @@ -21441,6 +20973,7 @@ "value": 30.1, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_993", "data source aggregate document": { "data source document": [ { @@ -21448,8 +20981,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_993" + } }, { "calculated data name": "RunDistance", @@ -21457,6 +20989,7 @@ "value": 38.4, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_994", "data source aggregate document": { "data source document": [ { @@ -21464,8 +20997,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_994" + } }, { "calculated data name": "ToPercent", @@ -21473,6 +21005,7 @@ "value": 40.8, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_995", "data source aggregate document": { "data source document": [ { @@ -21480,8 +21013,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_995" + } }, { "calculated data name": "Concentration", @@ -21489,6 +21021,7 @@ "value": 120.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_997", "data source aggregate document": { "data source document": [ { @@ -21496,8 +21029,7 @@ "data source feature": "sample" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_997" + } }, { "calculated data name": "AssignedQuantity", @@ -21505,6 +21037,7 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_999", "data source aggregate document": { "data source document": [ { @@ -21512,8 +21045,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_999" + } }, { "calculated data name": "CalibratedQuantity", @@ -21521,6 +21053,7 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1000", "data source aggregate document": { "data source document": [ { @@ -21528,8 +21061,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1000" + } }, { "calculated data name": "FromPercent", @@ -21537,6 +21069,7 @@ "value": 80.2, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1001", "data source aggregate document": { "data source document": [ { @@ -21544,8 +21077,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1001" + } }, { "calculated data name": "Molarity", @@ -21553,6 +21085,7 @@ "value": 4710.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1002", "data source aggregate document": { "data source document": [ { @@ -21560,8 +21093,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1002" + } }, { "calculated data name": "RunDistance", @@ -21569,6 +21101,7 @@ "value": 83.4, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1003", "data source aggregate document": { "data source document": [ { @@ -21576,8 +21109,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1003" + } }, { "calculated data name": "ToPercent", @@ -21585,6 +21117,7 @@ "value": 86.4, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1004", "data source aggregate document": { "data source document": [ { @@ -21592,8 +21125,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1004" + } }, { "calculated data name": "CalibratedQuantity", @@ -21601,6 +21133,7 @@ "value": 19.2, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1006", "data source aggregate document": { "data source document": [ { @@ -21608,8 +21141,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1006" + } }, { "calculated data name": "FromPercent", @@ -21617,6 +21149,7 @@ "value": 46.7, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1007", "data source aggregate document": { "data source document": [ { @@ -21624,8 +21157,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1007" + } }, { "calculated data name": "Molarity", @@ -21633,6 +21165,7 @@ "value": 30.9, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1008", "data source aggregate document": { "data source document": [ { @@ -21640,8 +21173,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1008" + } }, { "calculated data name": "RunDistance", @@ -21649,6 +21181,7 @@ "value": 48.6, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1009", "data source aggregate document": { "data source document": [ { @@ -21656,8 +21189,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1009" + } }, { "calculated data name": "ToPercent", @@ -21665,6 +21197,7 @@ "value": 50.3, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1010", "data source aggregate document": { "data source document": [ { @@ -21672,8 +21205,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1010" + } }, { "calculated data name": "CalibratedQuantity", @@ -21681,6 +21213,7 @@ "value": 27.5, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1012", "data source aggregate document": { "data source document": [ { @@ -21688,8 +21221,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1012" + } }, { "calculated data name": "FromPercent", @@ -21697,6 +21229,7 @@ "value": 35.8, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1013", "data source aggregate document": { "data source document": [ { @@ -21704,8 +21237,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1013" + } }, { "calculated data name": "Molarity", @@ -21713,6 +21245,7 @@ "value": 14.5, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1014", "data source aggregate document": { "data source document": [ { @@ -21720,8 +21253,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1014" + } }, { "calculated data name": "RunDistance", @@ -21729,6 +21261,7 @@ "value": 38.9, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1015", "data source aggregate document": { "data source document": [ { @@ -21736,8 +21269,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1015" + } }, { "calculated data name": "ToPercent", @@ -21745,6 +21277,7 @@ "value": 41.2, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1016", "data source aggregate document": { "data source document": [ { @@ -21752,8 +21285,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1016" + } }, { "calculated data name": "Concentration", @@ -21761,6 +21293,7 @@ "value": 138.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1018", "data source aggregate document": { "data source document": [ { @@ -21768,8 +21301,7 @@ "data source feature": "sample" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1018" + } }, { "calculated data name": "AssignedQuantity", @@ -21777,6 +21309,7 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1020", "data source aggregate document": { "data source document": [ { @@ -21784,8 +21317,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1020" + } }, { "calculated data name": "CalibratedQuantity", @@ -21793,6 +21325,7 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1021", "data source aggregate document": { "data source document": [ { @@ -21800,8 +21333,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1021" + } }, { "calculated data name": "FromPercent", @@ -21809,6 +21341,7 @@ "value": 79.8, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1022", "data source aggregate document": { "data source document": [ { @@ -21816,8 +21349,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1022" + } }, { "calculated data name": "Molarity", @@ -21825,6 +21357,7 @@ "value": 4710.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1023", "data source aggregate document": { "data source document": [ { @@ -21832,8 +21365,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1023" + } }, { "calculated data name": "RunDistance", @@ -21841,6 +21373,7 @@ "value": 83.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1024", "data source aggregate document": { "data source document": [ { @@ -21848,8 +21381,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1024" + } }, { "calculated data name": "ToPercent", @@ -21857,6 +21389,7 @@ "value": 85.9, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1025", "data source aggregate document": { "data source document": [ { @@ -21864,8 +21397,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1025" + } }, { "calculated data name": "CalibratedQuantity", @@ -21873,6 +21405,7 @@ "value": 25.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1027", "data source aggregate document": { "data source document": [ { @@ -21880,8 +21413,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1027" + } }, { "calculated data name": "FromPercent", @@ -21889,6 +21421,7 @@ "value": 46.5, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1028", "data source aggregate document": { "data source document": [ { @@ -21896,8 +21429,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1028" + } }, { "calculated data name": "Molarity", @@ -21905,6 +21437,7 @@ "value": 41.1, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1029", "data source aggregate document": { "data source document": [ { @@ -21912,8 +21445,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1029" + } }, { "calculated data name": "RunDistance", @@ -21921,6 +21453,7 @@ "value": 48.5, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1030", "data source aggregate document": { "data source document": [ { @@ -21928,8 +21461,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1030" + } }, { "calculated data name": "ToPercent", @@ -21937,6 +21469,7 @@ "value": 50.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1031", "data source aggregate document": { "data source document": [ { @@ -21944,8 +21477,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1031" + } }, { "calculated data name": "CalibratedQuantity", @@ -21953,6 +21485,7 @@ "value": 34.8, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1033", "data source aggregate document": { "data source document": [ { @@ -21960,8 +21493,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1033" + } }, { "calculated data name": "FromPercent", @@ -21969,6 +21501,7 @@ "value": 36.7, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1034", "data source aggregate document": { "data source document": [ { @@ -21976,8 +21509,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1034" + } }, { "calculated data name": "Molarity", @@ -21985,6 +21517,7 @@ "value": 19.5, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1035", "data source aggregate document": { "data source document": [ { @@ -21992,8 +21525,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1035" + } }, { "calculated data name": "RunDistance", @@ -22001,6 +21533,7 @@ "value": 39.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1036", "data source aggregate document": { "data source document": [ { @@ -22008,8 +21541,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1036" + } }, { "calculated data name": "ToPercent", @@ -22017,6 +21549,7 @@ "value": 41.6, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1037", "data source aggregate document": { "data source document": [ { @@ -22024,8 +21557,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1037" + } }, { "calculated data name": "Concentration", @@ -22033,6 +21565,7 @@ "value": 165.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1039", "data source aggregate document": { "data source document": [ { @@ -22040,8 +21573,7 @@ "data source feature": "sample" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1039" + } }, { "calculated data name": "AssignedQuantity", @@ -22049,6 +21581,7 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1041", "data source aggregate document": { "data source document": [ { @@ -22056,8 +21589,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1041" + } }, { "calculated data name": "CalibratedQuantity", @@ -22065,6 +21597,7 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1042", "data source aggregate document": { "data source document": [ { @@ -22072,8 +21605,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1042" + } }, { "calculated data name": "FromPercent", @@ -22081,6 +21613,7 @@ "value": 80.8, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1043", "data source aggregate document": { "data source document": [ { @@ -22088,8 +21621,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1043" + } }, { "calculated data name": "Molarity", @@ -22097,6 +21629,7 @@ "value": 4710.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1044", "data source aggregate document": { "data source document": [ { @@ -22104,8 +21637,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1044" + } }, { "calculated data name": "RunDistance", @@ -22113,6 +21645,7 @@ "value": 84.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1045", "data source aggregate document": { "data source document": [ { @@ -22120,8 +21653,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1045" + } }, { "calculated data name": "ToPercent", @@ -22129,6 +21661,7 @@ "value": 86.9, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1046", "data source aggregate document": { "data source document": [ { @@ -22136,8 +21669,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1046" + } }, { "calculated data name": "CalibratedQuantity", @@ -22145,6 +21677,7 @@ "value": 45.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1048", "data source aggregate document": { "data source document": [ { @@ -22152,8 +21685,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1048" + } }, { "calculated data name": "FromPercent", @@ -22161,6 +21693,7 @@ "value": 47.3, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1049", "data source aggregate document": { "data source document": [ { @@ -22168,8 +21701,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1049" + } }, { "calculated data name": "Molarity", @@ -22177,6 +21709,7 @@ "value": 74.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1050", "data source aggregate document": { "data source document": [ { @@ -22184,8 +21717,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1050" + } }, { "calculated data name": "RunDistance", @@ -22193,6 +21725,7 @@ "value": 49.2, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1051", "data source aggregate document": { "data source document": [ { @@ -22200,8 +21733,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1051" + } }, { "calculated data name": "ToPercent", @@ -22209,6 +21741,7 @@ "value": 53.6, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1052", "data source aggregate document": { "data source document": [ { @@ -22216,8 +21749,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1052" + } }, { "calculated data name": "CalibratedQuantity", @@ -22225,6 +21757,7 @@ "value": 51.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1054", "data source aggregate document": { "data source document": [ { @@ -22232,8 +21765,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1054" + } }, { "calculated data name": "FromPercent", @@ -22241,6 +21773,7 @@ "value": 36.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1055", "data source aggregate document": { "data source document": [ { @@ -22248,8 +21781,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1055" + } }, { "calculated data name": "Molarity", @@ -22257,6 +21789,7 @@ "value": 29.4, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1056", "data source aggregate document": { "data source document": [ { @@ -22264,8 +21797,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1056" + } }, { "calculated data name": "RunDistance", @@ -22273,6 +21805,7 @@ "value": 39.8, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1057", "data source aggregate document": { "data source document": [ { @@ -22280,8 +21813,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1057" + } }, { "calculated data name": "ToPercent", @@ -22289,6 +21821,7 @@ "value": 42.2, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1058", "data source aggregate document": { "data source document": [ { @@ -22296,8 +21829,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1058" + } }, { "calculated data name": "Concentration", @@ -22305,6 +21837,7 @@ "value": 140.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1060", "data source aggregate document": { "data source document": [ { @@ -22312,8 +21845,7 @@ "data source feature": "sample" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1060" + } }, { "calculated data name": "AssignedQuantity", @@ -22321,6 +21853,7 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1062", "data source aggregate document": { "data source document": [ { @@ -22328,8 +21861,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1062" + } }, { "calculated data name": "CalibratedQuantity", @@ -22337,6 +21869,7 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1063", "data source aggregate document": { "data source document": [ { @@ -22344,8 +21877,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1063" + } }, { "calculated data name": "FromPercent", @@ -22353,6 +21885,7 @@ "value": 77.4, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1064", "data source aggregate document": { "data source document": [ { @@ -22360,8 +21893,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1064" + } }, { "calculated data name": "Molarity", @@ -22369,6 +21901,7 @@ "value": 4710.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1065", "data source aggregate document": { "data source document": [ { @@ -22376,8 +21909,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1065" + } }, { "calculated data name": "RunDistance", @@ -22385,6 +21917,7 @@ "value": 80.5, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1066", "data source aggregate document": { "data source document": [ { @@ -22392,8 +21925,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1066" + } }, { "calculated data name": "ToPercent", @@ -22401,6 +21933,7 @@ "value": 83.4, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1067", "data source aggregate document": { "data source document": [ { @@ -22408,8 +21941,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1067" + } }, { "calculated data name": "CalibratedQuantity", @@ -22417,6 +21949,7 @@ "value": 27.1, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1069", "data source aggregate document": { "data source document": [ { @@ -22424,8 +21957,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1069" + } }, { "calculated data name": "FromPercent", @@ -22433,6 +21965,7 @@ "value": 45.9, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1070", "data source aggregate document": { "data source document": [ { @@ -22440,8 +21973,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1070" + } }, { "calculated data name": "Molarity", @@ -22449,6 +21981,7 @@ "value": 46.4, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1071", "data source aggregate document": { "data source document": [ { @@ -22456,8 +21989,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1071" + } }, { "calculated data name": "RunDistance", @@ -22465,6 +21997,7 @@ "value": 47.4, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1072", "data source aggregate document": { "data source document": [ { @@ -22472,8 +22005,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1072" + } }, { "calculated data name": "ToPercent", @@ -22481,6 +22013,7 @@ "value": 49.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1073", "data source aggregate document": { "data source document": [ { @@ -22488,8 +22021,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1073" + } }, { "calculated data name": "CalibratedQuantity", @@ -22497,6 +22029,7 @@ "value": 35.3, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1075", "data source aggregate document": { "data source document": [ { @@ -22504,8 +22037,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1075" + } }, { "calculated data name": "FromPercent", @@ -22513,6 +22045,7 @@ "value": 34.8, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1076", "data source aggregate document": { "data source document": [ { @@ -22520,8 +22053,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1076" + } }, { "calculated data name": "Molarity", @@ -22529,6 +22061,7 @@ "value": 20.9, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1077", "data source aggregate document": { "data source document": [ { @@ -22536,8 +22069,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1077" + } }, { "calculated data name": "RunDistance", @@ -22545,6 +22077,7 @@ "value": 38.2, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1078", "data source aggregate document": { "data source document": [ { @@ -22552,8 +22085,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1078" + } }, { "calculated data name": "ToPercent", @@ -22561,6 +22093,7 @@ "value": 40.5, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1079", "data source aggregate document": { "data source document": [ { @@ -22568,8 +22101,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1079" + } }, { "calculated data name": "Concentration", @@ -22577,6 +22109,7 @@ "value": 282.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1081", "data source aggregate document": { "data source document": [ { @@ -22584,8 +22117,7 @@ "data source feature": "sample" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1081" + } }, { "calculated data name": "AssignedQuantity", @@ -22593,6 +22125,7 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1083", "data source aggregate document": { "data source document": [ { @@ -22600,8 +22133,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1083" + } }, { "calculated data name": "CalibratedQuantity", @@ -22609,6 +22141,7 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1084", "data source aggregate document": { "data source document": [ { @@ -22616,8 +22149,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1084" + } }, { "calculated data name": "FromPercent", @@ -22625,6 +22157,7 @@ "value": 79.8, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1085", "data source aggregate document": { "data source document": [ { @@ -22632,8 +22165,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1085" + } }, { "calculated data name": "Molarity", @@ -22641,6 +22173,7 @@ "value": 4710.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1086", "data source aggregate document": { "data source document": [ { @@ -22648,8 +22181,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1086" + } }, { "calculated data name": "RunDistance", @@ -22657,6 +22189,7 @@ "value": 82.9, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1087", "data source aggregate document": { "data source document": [ { @@ -22664,8 +22197,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1087" + } }, { "calculated data name": "ToPercent", @@ -22673,6 +22205,7 @@ "value": 85.6, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1088", "data source aggregate document": { "data source document": [ { @@ -22680,8 +22213,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1088" + } }, { "calculated data name": "CalibratedQuantity", @@ -22689,6 +22221,7 @@ "value": 54.8, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1090", "data source aggregate document": { "data source document": [ { @@ -22696,8 +22229,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1090" + } }, { "calculated data name": "FromPercent", @@ -22705,6 +22237,7 @@ "value": 46.1, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1091", "data source aggregate document": { "data source document": [ { @@ -22712,8 +22245,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1091" + } }, { "calculated data name": "Molarity", @@ -22721,6 +22253,7 @@ "value": 87.3, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1092", "data source aggregate document": { "data source document": [ { @@ -22728,8 +22261,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1092" + } }, { "calculated data name": "RunDistance", @@ -22737,6 +22269,7 @@ "value": 48.1, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1093", "data source aggregate document": { "data source document": [ { @@ -22744,8 +22277,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1093" + } }, { "calculated data name": "ToPercent", @@ -22753,6 +22285,7 @@ "value": 49.6, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1094", "data source aggregate document": { "data source document": [ { @@ -22760,8 +22293,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1094" + } }, { "calculated data name": "CalibratedQuantity", @@ -22769,6 +22301,7 @@ "value": 104.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1096", "data source aggregate document": { "data source document": [ { @@ -22776,8 +22309,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1096" + } }, { "calculated data name": "FromPercent", @@ -22785,6 +22317,7 @@ "value": 35.9, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1097", "data source aggregate document": { "data source document": [ { @@ -22792,8 +22325,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1097" + } }, { "calculated data name": "Molarity", @@ -22801,6 +22333,7 @@ "value": 61.2, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1098", "data source aggregate document": { "data source document": [ { @@ -22808,8 +22341,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1098" + } }, { "calculated data name": "RunDistance", @@ -22817,6 +22349,7 @@ "value": 39.3, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1099", "data source aggregate document": { "data source document": [ { @@ -22824,8 +22357,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1099" + } }, { "calculated data name": "ToPercent", @@ -22833,6 +22365,7 @@ "value": 41.5, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1100", "data source aggregate document": { "data source document": [ { @@ -22840,8 +22373,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1100" + } }, { "calculated data name": "Concentration", @@ -22849,6 +22381,7 @@ "value": 141.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1102", "data source aggregate document": { "data source document": [ { @@ -22856,8 +22389,7 @@ "data source feature": "sample" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1102" + } }, { "calculated data name": "AssignedQuantity", @@ -22865,6 +22397,7 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1104", "data source aggregate document": { "data source document": [ { @@ -22872,8 +22405,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1104" + } }, { "calculated data name": "CalibratedQuantity", @@ -22881,6 +22413,7 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1105", "data source aggregate document": { "data source document": [ { @@ -22888,8 +22421,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1105" + } }, { "calculated data name": "FromPercent", @@ -22897,6 +22429,7 @@ "value": 80.3, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1106", "data source aggregate document": { "data source document": [ { @@ -22904,8 +22437,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1106" + } }, { "calculated data name": "Molarity", @@ -22913,6 +22445,7 @@ "value": 4710.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1107", "data source aggregate document": { "data source document": [ { @@ -22920,8 +22453,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1107" + } }, { "calculated data name": "RunDistance", @@ -22929,6 +22461,7 @@ "value": 83.4, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1108", "data source aggregate document": { "data source document": [ { @@ -22936,8 +22469,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1108" + } }, { "calculated data name": "ToPercent", @@ -22945,6 +22477,7 @@ "value": 86.2, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1109", "data source aggregate document": { "data source document": [ { @@ -22952,8 +22485,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1109" + } }, { "calculated data name": "CalibratedQuantity", @@ -22961,6 +22493,7 @@ "value": 38.7, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1111", "data source aggregate document": { "data source document": [ { @@ -22968,8 +22501,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1111" + } }, { "calculated data name": "FromPercent", @@ -22977,6 +22509,7 @@ "value": 46.1, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1112", "data source aggregate document": { "data source document": [ { @@ -22984,8 +22517,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1112" + } }, { "calculated data name": "Molarity", @@ -22993,6 +22525,7 @@ "value": 57.9, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1113", "data source aggregate document": { "data source document": [ { @@ -23000,8 +22533,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1113" + } }, { "calculated data name": "RunDistance", @@ -23009,6 +22541,7 @@ "value": 47.8, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1114", "data source aggregate document": { "data source document": [ { @@ -23016,8 +22549,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1114" + } }, { "calculated data name": "ToPercent", @@ -23025,6 +22557,7 @@ "value": 52.4, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1115", "data source aggregate document": { "data source document": [ { @@ -23032,8 +22565,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1115" + } }, { "calculated data name": "CalibratedQuantity", @@ -23041,6 +22573,7 @@ "value": 40.9, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1117", "data source aggregate document": { "data source document": [ { @@ -23048,8 +22581,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1117" + } }, { "calculated data name": "FromPercent", @@ -23057,6 +22589,7 @@ "value": 34.9, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1118", "data source aggregate document": { "data source document": [ { @@ -23064,8 +22597,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1118" + } }, { "calculated data name": "Molarity", @@ -23073,6 +22605,7 @@ "value": 20.1, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1119", "data source aggregate document": { "data source document": [ { @@ -23080,8 +22613,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1119" + } }, { "calculated data name": "RunDistance", @@ -23089,6 +22621,7 @@ "value": 38.3, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1120", "data source aggregate document": { "data source document": [ { @@ -23096,8 +22629,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1120" + } }, { "calculated data name": "ToPercent", @@ -23105,6 +22637,7 @@ "value": 40.7, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1121", "data source aggregate document": { "data source document": [ { @@ -23112,8 +22645,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1121" + } }, { "calculated data name": "Concentration", @@ -23121,6 +22653,7 @@ "value": 139.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1123", "data source aggregate document": { "data source document": [ { @@ -23128,8 +22661,7 @@ "data source feature": "sample" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1123" + } }, { "calculated data name": "AssignedQuantity", @@ -23137,6 +22669,7 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1125", "data source aggregate document": { "data source document": [ { @@ -23144,8 +22677,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1125" + } }, { "calculated data name": "CalibratedQuantity", @@ -23153,6 +22685,7 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1126", "data source aggregate document": { "data source document": [ { @@ -23160,8 +22693,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1126" + } }, { "calculated data name": "FromPercent", @@ -23169,6 +22701,7 @@ "value": 79.5, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1127", "data source aggregate document": { "data source document": [ { @@ -23176,8 +22709,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1127" + } }, { "calculated data name": "Molarity", @@ -23185,6 +22717,7 @@ "value": 4710.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1128", "data source aggregate document": { "data source document": [ { @@ -23192,8 +22725,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1128" + } }, { "calculated data name": "RunDistance", @@ -23201,6 +22733,7 @@ "value": 82.6, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1129", "data source aggregate document": { "data source document": [ { @@ -23208,8 +22741,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1129" + } }, { "calculated data name": "ToPercent", @@ -23217,6 +22749,7 @@ "value": 85.4, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1130", "data source aggregate document": { "data source document": [ { @@ -23224,8 +22757,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1130" + } }, { "calculated data name": "CalibratedQuantity", @@ -23233,6 +22765,7 @@ "value": 24.5, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1132", "data source aggregate document": { "data source document": [ { @@ -23240,8 +22773,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1132" + } }, { "calculated data name": "FromPercent", @@ -23249,6 +22781,7 @@ "value": 45.9, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1133", "data source aggregate document": { "data source document": [ { @@ -23256,8 +22789,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1133" + } }, { "calculated data name": "Molarity", @@ -23265,6 +22797,7 @@ "value": 38.5, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1134", "data source aggregate document": { "data source document": [ { @@ -23272,8 +22805,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1134" + } }, { "calculated data name": "RunDistance", @@ -23281,6 +22813,7 @@ "value": 47.8, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1135", "data source aggregate document": { "data source document": [ { @@ -23288,8 +22821,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1135" + } }, { "calculated data name": "ToPercent", @@ -23297,6 +22829,7 @@ "value": 49.3, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1136", "data source aggregate document": { "data source document": [ { @@ -23304,8 +22837,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1136" + } }, { "calculated data name": "CalibratedQuantity", @@ -23313,6 +22845,7 @@ "value": 34.9, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1138", "data source aggregate document": { "data source document": [ { @@ -23320,8 +22853,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1138" + } }, { "calculated data name": "FromPercent", @@ -23329,6 +22861,7 @@ "value": 35.2, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1139", "data source aggregate document": { "data source document": [ { @@ -23336,8 +22869,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1139" + } }, { "calculated data name": "Molarity", @@ -23345,6 +22877,7 @@ "value": 18.4, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1140", "data source aggregate document": { "data source document": [ { @@ -23352,8 +22885,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1140" + } }, { "calculated data name": "RunDistance", @@ -23361,6 +22893,7 @@ "value": 38.4, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1141", "data source aggregate document": { "data source document": [ { @@ -23368,8 +22901,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1141" + } }, { "calculated data name": "ToPercent", @@ -23377,6 +22909,7 @@ "value": 40.7, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1142", "data source aggregate document": { "data source document": [ { @@ -23384,8 +22917,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1142" + } }, { "calculated data name": "Concentration", @@ -23393,6 +22925,7 @@ "value": 162.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1144", "data source aggregate document": { "data source document": [ { @@ -23400,8 +22933,7 @@ "data source feature": "sample" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1144" + } }, { "calculated data name": "AssignedQuantity", @@ -23409,6 +22941,7 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1146", "data source aggregate document": { "data source document": [ { @@ -23416,8 +22949,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1146" + } }, { "calculated data name": "CalibratedQuantity", @@ -23425,6 +22957,7 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1147", "data source aggregate document": { "data source document": [ { @@ -23432,8 +22965,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1147" + } }, { "calculated data name": "FromPercent", @@ -23441,6 +22973,7 @@ "value": 78.9, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1148", "data source aggregate document": { "data source document": [ { @@ -23448,8 +22981,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1148" + } }, { "calculated data name": "Molarity", @@ -23457,6 +22989,7 @@ "value": 4710.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1149", "data source aggregate document": { "data source document": [ { @@ -23464,8 +22997,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1149" + } }, { "calculated data name": "RunDistance", @@ -23473,6 +23005,7 @@ "value": 82.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1150", "data source aggregate document": { "data source document": [ { @@ -23480,8 +23013,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1150" + } }, { "calculated data name": "ToPercent", @@ -23489,6 +23021,7 @@ "value": 84.8, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1151", "data source aggregate document": { "data source document": [ { @@ -23496,8 +23029,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1151" + } }, { "calculated data name": "CalibratedQuantity", @@ -23505,6 +23037,7 @@ "value": 39.6, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1153", "data source aggregate document": { "data source document": [ { @@ -23512,8 +23045,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1153" + } }, { "calculated data name": "FromPercent", @@ -23521,6 +23053,7 @@ "value": 45.9, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1154", "data source aggregate document": { "data source document": [ { @@ -23528,8 +23061,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1154" + } }, { "calculated data name": "Molarity", @@ -23537,6 +23069,7 @@ "value": 63.5, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1155", "data source aggregate document": { "data source document": [ { @@ -23544,8 +23077,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1155" + } }, { "calculated data name": "RunDistance", @@ -23553,6 +23085,7 @@ "value": 47.7, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1156", "data source aggregate document": { "data source document": [ { @@ -23560,8 +23093,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1156" + } }, { "calculated data name": "ToPercent", @@ -23569,6 +23101,7 @@ "value": 52.1, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1157", "data source aggregate document": { "data source document": [ { @@ -23576,8 +23109,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1157" + } }, { "calculated data name": "CalibratedQuantity", @@ -23585,6 +23117,7 @@ "value": 64.7, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1159", "data source aggregate document": { "data source document": [ { @@ -23592,8 +23125,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1159" + } }, { "calculated data name": "FromPercent", @@ -23601,6 +23133,7 @@ "value": 34.8, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1160", "data source aggregate document": { "data source document": [ { @@ -23608,8 +23141,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1160" + } }, { "calculated data name": "Molarity", @@ -23617,6 +23149,7 @@ "value": 35.9, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1161", "data source aggregate document": { "data source document": [ { @@ -23624,8 +23157,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1161" + } }, { "calculated data name": "RunDistance", @@ -23633,6 +23165,7 @@ "value": 38.5, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1162", "data source aggregate document": { "data source document": [ { @@ -23640,8 +23173,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1162" + } }, { "calculated data name": "ToPercent", @@ -23649,6 +23181,7 @@ "value": 42.4, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1163", "data source aggregate document": { "data source document": [ { @@ -23656,8 +23189,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1163" + } }, { "calculated data name": "Concentration", @@ -23665,6 +23197,7 @@ "value": 152.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1165", "data source aggregate document": { "data source document": [ { @@ -23672,8 +23205,7 @@ "data source feature": "sample" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1165" + } }, { "calculated data name": "AssignedQuantity", @@ -23681,6 +23213,7 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1167", "data source aggregate document": { "data source document": [ { @@ -23688,8 +23221,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1167" + } }, { "calculated data name": "CalibratedQuantity", @@ -23697,6 +23229,7 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1168", "data source aggregate document": { "data source document": [ { @@ -23704,8 +23237,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1168" + } }, { "calculated data name": "FromPercent", @@ -23713,6 +23245,7 @@ "value": 80.1, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1169", "data source aggregate document": { "data source document": [ { @@ -23720,8 +23253,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1169" + } }, { "calculated data name": "Molarity", @@ -23729,6 +23261,7 @@ "value": 4710.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1170", "data source aggregate document": { "data source document": [ { @@ -23736,8 +23269,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1170" + } }, { "calculated data name": "RunDistance", @@ -23745,6 +23277,7 @@ "value": 83.2, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1171", "data source aggregate document": { "data source document": [ { @@ -23752,8 +23285,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1171" + } }, { "calculated data name": "ToPercent", @@ -23761,6 +23293,7 @@ "value": 86.1, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1172", "data source aggregate document": { "data source document": [ { @@ -23768,8 +23301,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1172" + } }, { "calculated data name": "CalibratedQuantity", @@ -23777,6 +23309,7 @@ "value": 28.7, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1174", "data source aggregate document": { "data source document": [ { @@ -23784,8 +23317,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1174" + } }, { "calculated data name": "FromPercent", @@ -23793,6 +23325,7 @@ "value": 46.3, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1175", "data source aggregate document": { "data source document": [ { @@ -23800,8 +23333,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1175" + } }, { "calculated data name": "Molarity", @@ -23809,6 +23341,7 @@ "value": 44.6, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1176", "data source aggregate document": { "data source document": [ { @@ -23816,8 +23349,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1176" + } }, { "calculated data name": "RunDistance", @@ -23825,6 +23357,7 @@ "value": 48.1, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1177", "data source aggregate document": { "data source document": [ { @@ -23832,8 +23365,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1177" + } }, { "calculated data name": "ToPercent", @@ -23841,6 +23373,7 @@ "value": 49.8, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1178", "data source aggregate document": { "data source document": [ { @@ -23848,8 +23381,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1178" + } }, { "calculated data name": "CalibratedQuantity", @@ -23857,6 +23389,7 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1180", "data source aggregate document": { "data source document": [ { @@ -23864,8 +23397,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1180" + } }, { "calculated data name": "FromPercent", @@ -23873,6 +23405,7 @@ "value": 35.7, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1181", "data source aggregate document": { "data source document": [ { @@ -23880,8 +23413,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1181" + } }, { "calculated data name": "Molarity", @@ -23889,6 +23421,7 @@ "value": 20.6, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1182", "data source aggregate document": { "data source document": [ { @@ -23896,8 +23429,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1182" + } }, { "calculated data name": "RunDistance", @@ -23905,6 +23437,7 @@ "value": 38.6, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1183", "data source aggregate document": { "data source document": [ { @@ -23912,8 +23445,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1183" + } }, { "calculated data name": "ToPercent", @@ -23921,6 +23453,7 @@ "value": 41.2, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1184", "data source aggregate document": { "data source document": [ { @@ -23928,8 +23461,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1184" + } }, { "calculated data name": "Concentration", @@ -23937,6 +23469,7 @@ "value": 127.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1186", "data source aggregate document": { "data source document": [ { @@ -23944,8 +23477,7 @@ "data source feature": "sample" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1186" + } }, { "calculated data name": "AssignedQuantity", @@ -23953,6 +23485,7 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1188", "data source aggregate document": { "data source document": [ { @@ -23960,8 +23493,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1188" + } }, { "calculated data name": "CalibratedQuantity", @@ -23969,6 +23501,7 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1189", "data source aggregate document": { "data source document": [ { @@ -23976,8 +23509,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1189" + } }, { "calculated data name": "FromPercent", @@ -23985,6 +23517,7 @@ "value": 79.5, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1190", "data source aggregate document": { "data source document": [ { @@ -23992,8 +23525,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1190" + } }, { "calculated data name": "Molarity", @@ -24001,6 +23533,7 @@ "value": 4710.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1191", "data source aggregate document": { "data source document": [ { @@ -24008,8 +23541,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1191" + } }, { "calculated data name": "RunDistance", @@ -24017,6 +23549,7 @@ "value": 82.7, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1192", "data source aggregate document": { "data source document": [ { @@ -24024,8 +23557,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1192" + } }, { "calculated data name": "ToPercent", @@ -24033,6 +23565,7 @@ "value": 85.6, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1193", "data source aggregate document": { "data source document": [ { @@ -24040,8 +23573,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1193" + } }, { "calculated data name": "CalibratedQuantity", @@ -24049,6 +23581,7 @@ "value": 24.6, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1195", "data source aggregate document": { "data source document": [ { @@ -24056,8 +23589,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1195" + } }, { "calculated data name": "FromPercent", @@ -24065,6 +23597,7 @@ "value": 46.1, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1196", "data source aggregate document": { "data source document": [ { @@ -24072,8 +23605,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1196" + } }, { "calculated data name": "Molarity", @@ -24081,6 +23613,7 @@ "value": 38.5, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1197", "data source aggregate document": { "data source document": [ { @@ -24088,8 +23621,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1197" + } }, { "calculated data name": "RunDistance", @@ -24097,6 +23629,7 @@ "value": 47.8, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1198", "data source aggregate document": { "data source document": [ { @@ -24104,8 +23637,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1198" + } }, { "calculated data name": "ToPercent", @@ -24113,6 +23645,7 @@ "value": 49.6, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1199", "data source aggregate document": { "data source document": [ { @@ -24120,8 +23653,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1199" + } }, { "calculated data name": "CalibratedQuantity", @@ -24129,6 +23661,7 @@ "value": 32.8, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1201", "data source aggregate document": { "data source document": [ { @@ -24136,8 +23669,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1201" + } }, { "calculated data name": "FromPercent", @@ -24145,6 +23677,7 @@ "value": 35.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1202", "data source aggregate document": { "data source document": [ { @@ -24152,8 +23685,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1202" + } }, { "calculated data name": "Molarity", @@ -24161,6 +23693,7 @@ "value": 16.7, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1203", "data source aggregate document": { "data source document": [ { @@ -24168,8 +23701,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1203" + } }, { "calculated data name": "RunDistance", @@ -24177,6 +23709,7 @@ "value": 38.2, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1204", "data source aggregate document": { "data source document": [ { @@ -24184,8 +23717,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1204" + } }, { "calculated data name": "ToPercent", @@ -24193,6 +23725,7 @@ "value": 40.6, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1205", "data source aggregate document": { "data source document": [ { @@ -24200,8 +23733,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1205" + } }, { "calculated data name": "Concentration", @@ -24209,6 +23741,7 @@ "value": 261.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1207", "data source aggregate document": { "data source document": [ { @@ -24216,8 +23749,7 @@ "data source feature": "sample" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1207" + } }, { "calculated data name": "AssignedQuantity", @@ -24225,6 +23757,7 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1209", "data source aggregate document": { "data source document": [ { @@ -24232,8 +23765,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1209" + } }, { "calculated data name": "CalibratedQuantity", @@ -24241,6 +23773,7 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1210", "data source aggregate document": { "data source document": [ { @@ -24248,8 +23781,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1210" + } }, { "calculated data name": "FromPercent", @@ -24257,6 +23789,7 @@ "value": 79.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1211", "data source aggregate document": { "data source document": [ { @@ -24264,8 +23797,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1211" + } }, { "calculated data name": "Molarity", @@ -24273,6 +23805,7 @@ "value": 4710.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1212", "data source aggregate document": { "data source document": [ { @@ -24280,8 +23813,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1212" + } }, { "calculated data name": "RunDistance", @@ -24289,6 +23821,7 @@ "value": 82.2, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1213", "data source aggregate document": { "data source document": [ { @@ -24296,8 +23829,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1213" + } }, { "calculated data name": "ToPercent", @@ -24305,6 +23837,7 @@ "value": 84.8, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1214", "data source aggregate document": { "data source document": [ { @@ -24312,8 +23845,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1214" + } }, { "calculated data name": "CalibratedQuantity", @@ -24321,6 +23853,7 @@ "value": 54.8, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1216", "data source aggregate document": { "data source document": [ { @@ -24328,8 +23861,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1216" + } }, { "calculated data name": "FromPercent", @@ -24337,6 +23869,7 @@ "value": 45.5, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1217", "data source aggregate document": { "data source document": [ { @@ -24344,8 +23877,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1217" + } }, { "calculated data name": "Molarity", @@ -24353,6 +23885,7 @@ "value": 85.1, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1218", "data source aggregate document": { "data source document": [ { @@ -24360,8 +23893,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1218" + } }, { "calculated data name": "RunDistance", @@ -24369,6 +23901,7 @@ "value": 47.5, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1219", "data source aggregate document": { "data source document": [ { @@ -24376,8 +23909,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1219" + } }, { "calculated data name": "ToPercent", @@ -24385,6 +23917,7 @@ "value": 51.7, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1220", "data source aggregate document": { "data source document": [ { @@ -24392,8 +23925,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1220" + } }, { "calculated data name": "CalibratedQuantity", @@ -24401,6 +23933,7 @@ "value": 129.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1222", "data source aggregate document": { "data source document": [ { @@ -24408,8 +23941,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1222" + } }, { "calculated data name": "FromPercent", @@ -24417,6 +23949,7 @@ "value": 34.7, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1223", "data source aggregate document": { "data source document": [ { @@ -24424,8 +23957,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1223" + } }, { "calculated data name": "Molarity", @@ -24433,6 +23965,7 @@ "value": 71.8, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1224", "data source aggregate document": { "data source document": [ { @@ -24440,8 +23973,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1224" + } }, { "calculated data name": "RunDistance", @@ -24449,6 +23981,7 @@ "value": 38.6, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1225", "data source aggregate document": { "data source document": [ { @@ -24456,8 +23989,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1225" + } }, { "calculated data name": "ToPercent", @@ -24465,6 +23997,7 @@ "value": 41.1, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1226", "data source aggregate document": { "data source document": [ { @@ -24472,8 +24005,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1226" + } }, { "calculated data name": "Concentration", @@ -24481,6 +24013,7 @@ "value": 84.7, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1228", "data source aggregate document": { "data source document": [ { @@ -24488,8 +24021,7 @@ "data source feature": "sample" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1228" + } }, { "calculated data name": "AssignedQuantity", @@ -24497,6 +24029,7 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1230", "data source aggregate document": { "data source document": [ { @@ -24504,8 +24037,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1230" + } }, { "calculated data name": "CalibratedQuantity", @@ -24513,6 +24045,7 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1231", "data source aggregate document": { "data source document": [ { @@ -24520,8 +24053,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1231" + } }, { "calculated data name": "FromPercent", @@ -24529,6 +24061,7 @@ "value": 81.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1232", "data source aggregate document": { "data source document": [ { @@ -24536,8 +24069,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1232" + } }, { "calculated data name": "Molarity", @@ -24545,6 +24077,7 @@ "value": 4710.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1233", "data source aggregate document": { "data source document": [ { @@ -24552,8 +24085,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1233" + } }, { "calculated data name": "RunDistance", @@ -24561,6 +24093,7 @@ "value": 84.2, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1234", "data source aggregate document": { "data source document": [ { @@ -24568,8 +24101,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1234" + } }, { "calculated data name": "ToPercent", @@ -24577,6 +24109,7 @@ "value": 87.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1235", "data source aggregate document": { "data source document": [ { @@ -24584,8 +24117,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1235" + } }, { "calculated data name": "CalibratedQuantity", @@ -24593,6 +24125,7 @@ "value": 16.9, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1237", "data source aggregate document": { "data source document": [ { @@ -24600,8 +24133,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1237" + } }, { "calculated data name": "FromPercent", @@ -24609,6 +24141,7 @@ "value": 46.3, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1238", "data source aggregate document": { "data source document": [ { @@ -24616,8 +24149,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1238" + } }, { "calculated data name": "Molarity", @@ -24625,6 +24157,7 @@ "value": 26.4, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1239", "data source aggregate document": { "data source document": [ { @@ -24632,8 +24165,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1239" + } }, { "calculated data name": "RunDistance", @@ -24641,6 +24173,7 @@ "value": 48.8, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1240", "data source aggregate document": { "data source document": [ { @@ -24648,8 +24181,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1240" + } }, { "calculated data name": "ToPercent", @@ -24657,6 +24189,7 @@ "value": 50.1, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1241", "data source aggregate document": { "data source document": [ { @@ -24664,8 +24197,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1241" + } }, { "calculated data name": "CalibratedQuantity", @@ -24673,6 +24205,7 @@ "value": 35.4, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1243", "data source aggregate document": { "data source document": [ { @@ -24680,8 +24213,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1243" + } }, { "calculated data name": "FromPercent", @@ -24689,6 +24221,7 @@ "value": 36.1, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1244", "data source aggregate document": { "data source document": [ { @@ -24696,8 +24229,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1244" + } }, { "calculated data name": "Molarity", @@ -24705,6 +24237,7 @@ "value": 18.9, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1245", "data source aggregate document": { "data source document": [ { @@ -24712,8 +24245,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1245" + } }, { "calculated data name": "RunDistance", @@ -24721,6 +24253,7 @@ "value": 39.3, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1246", "data source aggregate document": { "data source document": [ { @@ -24728,8 +24261,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1246" + } }, { "calculated data name": "ToPercent", @@ -24737,6 +24269,7 @@ "value": 42.8, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1247", "data source aggregate document": { "data source document": [ { @@ -24744,8 +24277,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1247" + } }, { "calculated data name": "Concentration", @@ -24753,6 +24285,7 @@ "value": 346.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1249", "data source aggregate document": { "data source document": [ { @@ -24760,8 +24293,7 @@ "data source feature": "sample" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1249" + } }, { "calculated data name": "AssignedQuantity", @@ -24769,6 +24301,7 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1251", "data source aggregate document": { "data source document": [ { @@ -24776,8 +24309,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1251" + } }, { "calculated data name": "CalibratedQuantity", @@ -24785,6 +24317,7 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1252", "data source aggregate document": { "data source document": [ { @@ -24792,8 +24325,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1252" + } }, { "calculated data name": "FromPercent", @@ -24801,6 +24333,7 @@ "value": 77.2, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1253", "data source aggregate document": { "data source document": [ { @@ -24808,8 +24341,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1253" + } }, { "calculated data name": "Molarity", @@ -24817,6 +24349,7 @@ "value": 4710.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1254", "data source aggregate document": { "data source document": [ { @@ -24824,8 +24357,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1254" + } }, { "calculated data name": "RunDistance", @@ -24833,6 +24365,7 @@ "value": 80.1, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1255", "data source aggregate document": { "data source document": [ { @@ -24840,8 +24373,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1255" + } }, { "calculated data name": "ToPercent", @@ -24849,6 +24381,7 @@ "value": 82.7, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1256", "data source aggregate document": { "data source document": [ { @@ -24856,8 +24389,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1256" + } }, { "calculated data name": "CalibratedQuantity", @@ -24865,6 +24397,7 @@ "value": 56.2, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1258", "data source aggregate document": { "data source document": [ { @@ -24872,8 +24405,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1258" + } }, { "calculated data name": "FromPercent", @@ -24881,6 +24413,7 @@ "value": 45.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1259", "data source aggregate document": { "data source document": [ { @@ -24888,8 +24421,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1259" + } }, { "calculated data name": "Molarity", @@ -24897,6 +24429,7 @@ "value": 95.6, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1260", "data source aggregate document": { "data source document": [ { @@ -24904,8 +24437,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1260" + } }, { "calculated data name": "RunDistance", @@ -24913,6 +24445,7 @@ "value": 47.1, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1261", "data source aggregate document": { "data source document": [ { @@ -24920,8 +24453,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1261" + } }, { "calculated data name": "ToPercent", @@ -24929,6 +24461,7 @@ "value": 48.7, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1262", "data source aggregate document": { "data source document": [ { @@ -24936,8 +24469,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1262" + } }, { "calculated data name": "CalibratedQuantity", @@ -24945,6 +24477,7 @@ "value": 153.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1264", "data source aggregate document": { "data source document": [ { @@ -24952,8 +24485,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1264" + } }, { "calculated data name": "FromPercent", @@ -24961,6 +24493,7 @@ "value": 35.7, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1265", "data source aggregate document": { "data source document": [ { @@ -24968,8 +24501,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1265" + } }, { "calculated data name": "Molarity", @@ -24977,6 +24509,7 @@ "value": 104.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1266", "data source aggregate document": { "data source document": [ { @@ -24984,8 +24517,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1266" + } }, { "calculated data name": "RunDistance", @@ -24993,6 +24525,7 @@ "value": 39.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1267", "data source aggregate document": { "data source document": [ { @@ -25000,8 +24533,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1267" + } }, { "calculated data name": "ToPercent", @@ -25009,6 +24541,7 @@ "value": 41.4, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1268", "data source aggregate document": { "data source document": [ { @@ -25016,11 +24549,25 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1268" + } } ] + }, + "data system document": { + "ASM file identifier": "agilent_tapestation_analysis_example_01.json", + "data system instance identifier": "TapeStation PC", + "file name": "agilent_tapestation_analysis_example_01.xml", + "UNC path": "N/A", + "ASM converter name": "allotropy_agilent_tapestation_analysis", + "ASM converter version": "0.1.56", + "software name": "TapeStation Analysis Software", + "software version": "2.1.17.8091" + }, + "device system document": { + "brand name": "TapeStation", + "device identifier": "32768", + "equipment serial number": "DEDAA00054", + "product manufacturer": "Agilent" } - }, - "$asm.manifest": "http://purl.allotrope.org/manifests/electrophoresis/BENCHLING/2024/06/electrophoresis.manifest" + } } diff --git a/tests/parsers/agilent_tapestation_analysis/testdata/agilent_tapestation_analysis_example_03.json b/tests/parsers/agilent_tapestation_analysis/testdata/agilent_tapestation_analysis_example_03.json index 74f12d167..9b9a8164a 100644 --- a/tests/parsers/agilent_tapestation_analysis/testdata/agilent_tapestation_analysis_example_03.json +++ b/tests/parsers/agilent_tapestation_analysis/testdata/agilent_tapestation_analysis_example_03.json @@ -1,25 +1,18 @@ { + "$asm.manifest": "http://purl.allotrope.org/manifests/electrophoresis/BENCHLING/2024/09/electrophoresis.manifest", "electrophoresis aggregate document": { - "data system document": { - "data system instance identifier": "TAPESTATIONPC", - "file name": "agilent_tapestation_analysis_example_03.xml", - "software name": "TapeStation Analysis Software", - "software version": "3.2.0.22472", - "ASM converter name": "allotropy_agilent_tapestation_analysis", - "ASM converter version": "0.1.45" - }, "electrophoresis document": [ { + "analyst": "TapeStation User", "measurement aggregate document": { "measurement document": [ { - "measurement time": "2019-06-28T03:39:18-04:00", - "measurement identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_0", "device control aggregate document": { "device control document": [ { "device type": "electrophoresis device", - "detection type": "fluorescence" + "detection type": "fluorescence", + "device identifier": "65536" } ] }, @@ -28,22 +21,14 @@ "description": "Ladder Ladder", "location identifier": "A1" }, + "measurement identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_0", + "measurement time": "2019-06-28T03:39:18-04:00", "processed data aggregate document": { "processed data document": [ { "peak list": { "peak": [ { - "peak identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_2", - "peak name": "-", - "peak height": { - "value": 60.282, - "unit": "RFU" - }, - "peak start": { - "value": 30.0, - "unit": "#" - }, "peak end": { "value": 43.0, "unit": "#" @@ -52,31 +37,23 @@ "value": 35.0, "unit": "#" }, + "peak name": "-", + "identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_2", + "peak height": { + "value": 60.282, + "unit": "RFU" + }, "peak area": { "value": 1.0, "unit": "(unitless)" }, - "relative peak area": { - "value": "NaN", - "unit": "%" - }, - "relative corrected peak area": { - "value": "NaN", - "unit": "%" - }, - "comment": "Lower Marker" - }, - { - "peak identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_9", - "peak name": "1", - "peak height": { - "value": 48.805, - "unit": "RFU" - }, + "comment": "Lower Marker", "peak start": { - "value": 43.0, + "value": 30.0, "unit": "#" - }, + } + }, + { "peak end": { "value": 65.0, "unit": "#" @@ -85,6 +62,12 @@ "value": 50.0, "unit": "#" }, + "peak name": "1", + "identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_9", + "peak height": { + "value": 48.805, + "unit": "RFU" + }, "peak area": { "value": 0.829, "unit": "(unitless)" @@ -96,19 +79,13 @@ "relative corrected peak area": { "value": 7.74, "unit": "%" - } - }, - { - "peak identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_15", - "peak name": "2", - "peak height": { - "value": 57.036, - "unit": "RFU" }, "peak start": { - "value": 65.0, + "value": 43.0, "unit": "#" - }, + } + }, + { "peak end": { "value": 87.0, "unit": "#" @@ -117,6 +94,12 @@ "value": 75.0, "unit": "#" }, + "peak name": "2", + "identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_15", + "peak height": { + "value": 57.036, + "unit": "RFU" + }, "peak area": { "value": 0.889, "unit": "(unitless)" @@ -128,19 +111,13 @@ "relative corrected peak area": { "value": 8.3, "unit": "%" - } - }, - { - "peak identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_21", - "peak name": "3", - "peak height": { - "value": 60.966, - "unit": "RFU" }, "peak start": { - "value": 87.0, + "value": 65.0, "unit": "#" - }, + } + }, + { "peak end": { "value": 129.0, "unit": "#" @@ -149,6 +126,12 @@ "value": 100.0, "unit": "#" }, + "peak name": "3", + "identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_21", + "peak height": { + "value": 60.966, + "unit": "RFU" + }, "peak area": { "value": 0.971, "unit": "(unitless)" @@ -160,19 +143,13 @@ "relative corrected peak area": { "value": 9.06, "unit": "%" - } - }, - { - "peak identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_27", - "peak name": "4", - "peak height": { - "value": 60.895, - "unit": "RFU" }, "peak start": { - "value": 129.0, + "value": 87.0, "unit": "#" - }, + } + }, + { "peak end": { "value": 178.0, "unit": "#" @@ -181,6 +158,12 @@ "value": 150.0, "unit": "#" }, + "peak name": "4", + "identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_27", + "peak height": { + "value": 60.895, + "unit": "RFU" + }, "peak area": { "value": 0.883, "unit": "(unitless)" @@ -192,19 +175,13 @@ "relative corrected peak area": { "value": 8.24, "unit": "%" - } - }, - { - "peak identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_33", - "peak name": "5", - "peak height": { - "value": 64.166, - "unit": "RFU" }, "peak start": { - "value": 178.0, + "value": 129.0, "unit": "#" - }, + } + }, + { "peak end": { "value": 251.0, "unit": "#" @@ -213,6 +190,12 @@ "value": 200.0, "unit": "#" }, + "peak name": "5", + "identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_33", + "peak height": { + "value": 64.166, + "unit": "RFU" + }, "peak area": { "value": 0.886, "unit": "(unitless)" @@ -224,19 +207,13 @@ "relative corrected peak area": { "value": 8.27, "unit": "%" - } - }, - { - "peak identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_39", - "peak name": "6", - "peak height": { - "value": 70.9, - "unit": "RFU" }, "peak start": { - "value": 251.0, + "value": 178.0, "unit": "#" - }, + } + }, + { "peak end": { "value": 362.0, "unit": "#" @@ -245,6 +222,12 @@ "value": 300.0, "unit": "#" }, + "peak name": "6", + "identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_39", + "peak height": { + "value": 70.9, + "unit": "RFU" + }, "peak area": { "value": 1.082, "unit": "(unitless)" @@ -256,19 +239,13 @@ "relative corrected peak area": { "value": 10.1, "unit": "%" - } - }, - { - "peak identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_45", - "peak name": "7", - "peak height": { - "value": 72.792, - "unit": "RFU" }, "peak start": { - "value": 362.0, + "value": 251.0, "unit": "#" - }, + } + }, + { "peak end": { "value": 450.0, "unit": "#" @@ -277,6 +254,12 @@ "value": 400.0, "unit": "#" }, + "peak name": "7", + "identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_45", + "peak height": { + "value": 72.792, + "unit": "RFU" + }, "peak area": { "value": 0.877, "unit": "(unitless)" @@ -288,19 +271,13 @@ "relative corrected peak area": { "value": 8.18, "unit": "%" - } - }, - { - "peak identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_51", - "peak name": "8", - "peak height": { - "value": 73.799, - "unit": "RFU" }, "peak start": { - "value": 450.0, + "value": 362.0, "unit": "#" - }, + } + }, + { "peak end": { "value": 563.0, "unit": "#" @@ -309,6 +286,12 @@ "value": 500.0, "unit": "#" }, + "peak name": "8", + "identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_51", + "peak height": { + "value": 73.799, + "unit": "RFU" + }, "peak area": { "value": 1.131, "unit": "(unitless)" @@ -320,19 +303,13 @@ "relative corrected peak area": { "value": 10.55, "unit": "%" - } - }, - { - "peak identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_57", - "peak name": "9", - "peak height": { - "value": 90.767, - "unit": "RFU" }, "peak start": { - "value": 563.0, + "value": 450.0, "unit": "#" - }, + } + }, + { "peak end": { "value": 653.0, "unit": "#" @@ -341,6 +318,12 @@ "value": 600.0, "unit": "#" }, + "peak name": "9", + "identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_57", + "peak height": { + "value": 90.767, + "unit": "RFU" + }, "peak area": { "value": 1.003, "unit": "(unitless)" @@ -352,19 +335,13 @@ "relative corrected peak area": { "value": 9.36, "unit": "%" - } - }, - { - "peak identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_63", - "peak name": "10", - "peak height": { - "value": 72.53, - "unit": "RFU" }, "peak start": { - "value": 653.0, + "value": 563.0, "unit": "#" - }, + } + }, + { "peak end": { "value": 885.0, "unit": "#" @@ -373,6 +350,12 @@ "value": 700.0, "unit": "#" }, + "peak name": "10", + "identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_63", + "peak height": { + "value": 72.53, + "unit": "RFU" + }, "peak area": { "value": 1.154, "unit": "(unitless)" @@ -384,19 +367,13 @@ "relative corrected peak area": { "value": 10.76, "unit": "%" - } - }, - { - "peak identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_69", - "peak name": "11", - "peak height": { - "value": 91.902, - "unit": "RFU" }, "peak start": { - "value": 885.0, + "value": 653.0, "unit": "#" - }, + } + }, + { "peak end": { "value": 1305.0, "unit": "#" @@ -405,6 +382,12 @@ "value": 1000.0, "unit": "#" }, + "peak name": "11", + "identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_69", + "peak height": { + "value": 91.902, + "unit": "RFU" + }, "peak area": { "value": 1.013, "unit": "(unitless)" @@ -416,6 +399,10 @@ "relative corrected peak area": { "value": 9.45, "unit": "%" + }, + "peak start": { + "value": 885.0, + "unit": "#" } } ] @@ -428,23 +415,22 @@ "unit": "degC" } } - ] - }, - "analyst": "TapeStation User", - "analytical method identifier": "cfDNA", - "experimental data identifier": "C:\\Users\\JoeNegri\\Downloads\\cfDNA-Tubes-16.cfDNA" + ], + "analytical method identifier": "cfDNA", + "experimental data identifier": "C:\\Users\\JoeNegri\\Downloads\\cfDNA-Tubes-16.cfDNA" + } }, { + "analyst": "TapeStation User", "measurement aggregate document": { "measurement document": [ { - "measurement time": "2019-06-28T03:39:18-04:00", - "measurement identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_75", "device control aggregate document": { "device control document": [ { "device type": "electrophoresis device", - "detection type": "fluorescence" + "detection type": "fluorescence", + "device identifier": "65536" } ] }, @@ -453,22 +439,14 @@ "description": "Bovine Plasma Tube B Extraction Kit A", "location identifier": "B1" }, + "measurement identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_75", + "measurement time": "2019-06-28T03:39:18-04:00", "processed data aggregate document": { "processed data document": [ { "peak list": { "peak": [ { - "peak identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_78", - "peak name": "-", - "peak height": { - "value": 146.242, - "unit": "RFU" - }, - "peak start": { - "value": 29.0, - "unit": "#" - }, "peak end": { "value": 47.0, "unit": "#" @@ -477,31 +455,23 @@ "value": 35.0, "unit": "#" }, + "peak name": "-", + "identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_78", + "peak height": { + "value": 146.242, + "unit": "RFU" + }, "peak area": { "value": 1.0, "unit": "(unitless)" }, - "relative peak area": { - "value": "NaN", - "unit": "%" - }, - "relative corrected peak area": { - "value": "NaN", - "unit": "%" - }, - "comment": "Lower Marker" - }, - { - "peak identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_85", - "peak name": "1", - "peak height": { - "value": 20.174, - "unit": "RFU" - }, + "comment": "Lower Marker", "peak start": { - "value": 125.0, + "value": 29.0, "unit": "#" - }, + } + }, + { "peak end": { "value": 309.0, "unit": "#" @@ -510,6 +480,12 @@ "value": 194.0, "unit": "#" }, + "peak name": "1", + "identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_85", + "peak height": { + "value": 20.174, + "unit": "RFU" + }, "peak area": { "value": 0.452, "unit": "(unitless)" @@ -521,19 +497,13 @@ "relative corrected peak area": { "value": 24.77, "unit": "%" - } - }, - { - "peak identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_91", - "peak name": "2", - "peak height": { - "value": 19.298, - "unit": "RFU" }, "peak start": { - "value": 309.0, + "value": 125.0, "unit": "#" - }, + } + }, + { "peak end": { "value": 523.0, "unit": "#" @@ -542,6 +512,12 @@ "value": 422.0, "unit": "#" }, + "peak name": "2", + "identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_91", + "peak height": { + "value": 19.298, + "unit": "RFU" + }, "peak area": { "value": 0.408, "unit": "(unitless)" @@ -553,19 +529,13 @@ "relative corrected peak area": { "value": 22.33, "unit": "%" - } - }, - { - "peak identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_97", - "peak name": "3", - "peak height": { - "value": 14.391, - "unit": "RFU" }, "peak start": { - "value": 523.0, + "value": 309.0, "unit": "#" - }, + } + }, + { "peak end": { "value": 635.0, "unit": "#" @@ -574,6 +544,12 @@ "value": 625.0, "unit": "#" }, + "peak name": "3", + "identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_97", + "peak height": { + "value": 14.391, + "unit": "RFU" + }, "peak area": { "value": 0.168, "unit": "(unitless)" @@ -585,27 +561,19 @@ "relative corrected peak area": { "value": 9.19, "unit": "%" + }, + "peak start": { + "value": 523.0, + "unit": "#" } }, { - "peak identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_103", "peak name": "4", + "identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_103", "peak height": { "value": 68.711, "unit": "RFU" }, - "peak start": { - "value": "NaN", - "unit": "#" - }, - "peak end": { - "value": "NaN", - "unit": "#" - }, - "peak position": { - "value": "NaN", - "unit": "#" - }, "peak area": { "value": 0.798, "unit": "(unitless)" @@ -624,25 +592,25 @@ "data region aggregate document": { "data region document": [ { - "region identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_108", - "region name": "1", - "region start": { - "value": 50.0, - "unit": "#" - }, - "region end": { + "data region end": { "value": 700.0, "unit": "#" }, - "region area": { + "data region identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_108", + "data region name": "1", + "data region area": { "value": 1.15, "unit": "(unitless)" }, - "relative region area": { + "relative data region area": { "value": 48.96, "unit": "%" }, - "comment": "%cfDNA" + "comment": "%cfDNA", + "data region start": { + "value": 50.0, + "unit": "#" + } } ] } @@ -654,23 +622,22 @@ "unit": "degC" } } - ] - }, - "analyst": "TapeStation User", - "analytical method identifier": "cfDNA", - "experimental data identifier": "C:\\Users\\JoeNegri\\Downloads\\cfDNA-Tubes-16.cfDNA" + ], + "analytical method identifier": "cfDNA", + "experimental data identifier": "C:\\Users\\JoeNegri\\Downloads\\cfDNA-Tubes-16.cfDNA" + } }, { + "analyst": "TapeStation User", "measurement aggregate document": { "measurement document": [ { - "measurement time": "2019-06-28T03:39:18-04:00", - "measurement identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_112", "device control aggregate document": { "device control document": [ { "device type": "electrophoresis device", - "detection type": "fluorescence" + "detection type": "fluorescence", + "device identifier": "65536" } ] }, @@ -679,22 +646,14 @@ "description": "FCS Tube B Extraction Kit A", "location identifier": "C1" }, + "measurement identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_112", + "measurement time": "2019-06-28T03:39:18-04:00", "processed data aggregate document": { "processed data document": [ { "peak list": { "peak": [ { - "peak identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_115", - "peak name": "-", - "peak height": { - "value": 36.203, - "unit": "RFU" - }, - "peak start": { - "value": 29.0, - "unit": "#" - }, "peak end": { "value": 44.0, "unit": "#" @@ -703,31 +662,23 @@ "value": 35.0, "unit": "#" }, + "peak name": "-", + "identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_115", + "peak height": { + "value": 36.203, + "unit": "RFU" + }, "peak area": { "value": 1.0, "unit": "(unitless)" }, - "relative peak area": { - "value": "NaN", - "unit": "%" - }, - "relative corrected peak area": { - "value": "NaN", - "unit": "%" - }, - "comment": "Lower Marker" - }, - { - "peak identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_122", - "peak name": "1", - "peak height": { - "value": 51.869, - "unit": "RFU" - }, + "comment": "Lower Marker", "peak start": { - "value": 109.0, + "value": 29.0, "unit": "#" - }, + } + }, + { "peak end": { "value": 309.0, "unit": "#" @@ -736,6 +687,12 @@ "value": 176.0, "unit": "#" }, + "peak name": "1", + "identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_122", + "peak height": { + "value": 51.869, + "unit": "RFU" + }, "peak area": { "value": 3.48, "unit": "(unitless)" @@ -747,19 +704,13 @@ "relative corrected peak area": { "value": 90.04, "unit": "%" - } - }, - { - "peak identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_128", - "peak name": "2", - "peak height": { - "value": 7.866, - "unit": "RFU" }, "peak start": { - "value": 346.0, + "value": 109.0, "unit": "#" - }, + } + }, + { "peak end": { "value": 470.0, "unit": "#" @@ -768,6 +719,12 @@ "value": 356.0, "unit": "#" }, + "peak name": "2", + "identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_128", + "peak height": { + "value": 7.866, + "unit": "RFU" + }, "peak area": { "value": 0.385, "unit": "(unitless)" @@ -779,6 +736,10 @@ "relative corrected peak area": { "value": 9.96, "unit": "%" + }, + "peak start": { + "value": 346.0, + "unit": "#" } } ] @@ -786,25 +747,25 @@ "data region aggregate document": { "data region document": [ { - "region identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_134", - "region name": "1", - "region start": { - "value": 50.0, - "unit": "#" - }, - "region end": { + "data region end": { "value": 700.0, "unit": "#" }, - "region area": { + "data region identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_134", + "data region name": "1", + "data region area": { "value": 4.359, "unit": "(unitless)" }, - "relative region area": { + "relative data region area": { "value": 93.27, "unit": "%" }, - "comment": "%cfDNA" + "comment": "%cfDNA", + "data region start": { + "value": 50.0, + "unit": "#" + } } ] } @@ -816,23 +777,22 @@ "unit": "degC" } } - ] - }, - "analyst": "TapeStation User", - "analytical method identifier": "cfDNA", - "experimental data identifier": "C:\\Users\\JoeNegri\\Downloads\\cfDNA-Tubes-16.cfDNA" + ], + "analytical method identifier": "cfDNA", + "experimental data identifier": "C:\\Users\\JoeNegri\\Downloads\\cfDNA-Tubes-16.cfDNA" + } }, { + "analyst": "TapeStation User", "measurement aggregate document": { "measurement document": [ { - "measurement time": "2019-06-28T03:39:18-04:00", - "measurement identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_138", "device control aggregate document": { "device control document": [ { "device type": "electrophoresis device", - "detection type": "fluorescence" + "detection type": "fluorescence", + "device identifier": "65536" } ] }, @@ -841,22 +801,14 @@ "description": "Rat Plasma Tube B Extraction Kit A", "location identifier": "D1" }, + "measurement identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_138", + "measurement time": "2019-06-28T03:39:18-04:00", "processed data aggregate document": { "processed data document": [ { "peak list": { "peak": [ { - "peak identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_141", - "peak name": "-", - "peak height": { - "value": 98.771, - "unit": "RFU" - }, - "peak start": { - "value": 28.0, - "unit": "#" - }, "peak end": { "value": 50.0, "unit": "#" @@ -865,31 +817,23 @@ "value": 35.0, "unit": "#" }, + "peak name": "-", + "identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_141", + "peak height": { + "value": 98.771, + "unit": "RFU" + }, "peak area": { "value": 1.0, "unit": "(unitless)" }, - "relative peak area": { - "value": "NaN", - "unit": "%" - }, - "relative corrected peak area": { - "value": "NaN", - "unit": "%" - }, - "comment": "Lower Marker" - }, - { - "peak identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_148", - "peak name": "1", - "peak height": { - "value": 284.339, - "unit": "RFU" - }, + "comment": "Lower Marker", "peak start": { - "value": 89.0, + "value": 28.0, "unit": "#" - }, + } + }, + { "peak end": { "value": 359.0, "unit": "#" @@ -898,6 +842,12 @@ "value": 156.0, "unit": "#" }, + "peak name": "1", + "identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_148", + "peak height": { + "value": 284.339, + "unit": "RFU" + }, "peak area": { "value": 7.511, "unit": "(unitless)" @@ -909,27 +859,19 @@ "relative corrected peak area": { "value": 97.25, "unit": "%" + }, + "peak start": { + "value": 89.0, + "unit": "#" } }, { - "peak identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_154", "peak name": "2", + "identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_154", "peak height": { "value": 18.705, "unit": "RFU" }, - "peak start": { - "value": "NaN", - "unit": "#" - }, - "peak end": { - "value": "NaN", - "unit": "#" - }, - "peak position": { - "value": "NaN", - "unit": "#" - }, "peak area": { "value": 0.212, "unit": "(unitless)" @@ -948,25 +890,25 @@ "data region aggregate document": { "data region document": [ { - "region identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_159", - "region name": "1", - "region start": { - "value": 50.0, - "unit": "#" - }, - "region end": { + "data region end": { "value": 700.0, "unit": "#" }, - "region area": { + "data region identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_159", + "data region name": "1", + "data region area": { "value": 7.844, "unit": "(unitless)" }, - "relative region area": { + "relative data region area": { "value": 96.56, "unit": "%" }, - "comment": "%cfDNA" + "comment": "%cfDNA", + "data region start": { + "value": 50.0, + "unit": "#" + } } ] } @@ -978,23 +920,22 @@ "unit": "degC" } } - ] - }, - "analyst": "TapeStation User", - "analytical method identifier": "cfDNA", - "experimental data identifier": "C:\\Users\\JoeNegri\\Downloads\\cfDNA-Tubes-16.cfDNA" + ], + "analytical method identifier": "cfDNA", + "experimental data identifier": "C:\\Users\\JoeNegri\\Downloads\\cfDNA-Tubes-16.cfDNA" + } }, { + "analyst": "TapeStation User", "measurement aggregate document": { "measurement document": [ { - "measurement time": "2019-06-28T03:39:18-04:00", - "measurement identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_163", "device control aggregate document": { "device control document": [ { "device type": "electrophoresis device", - "detection type": "fluorescence" + "detection type": "fluorescence", + "device identifier": "65536" } ] }, @@ -1003,22 +944,14 @@ "description": "Rabbit Plasma Tube B Extraction Kit A", "location identifier": "E1" }, + "measurement identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_163", + "measurement time": "2019-06-28T03:39:18-04:00", "processed data aggregate document": { "processed data document": [ { "peak list": { "peak": [ { - "peak identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_166", - "peak name": "-", - "peak height": { - "value": 44.744, - "unit": "RFU" - }, - "peak start": { - "value": 29.0, - "unit": "#" - }, "peak end": { "value": 44.0, "unit": "#" @@ -1027,31 +960,23 @@ "value": 35.0, "unit": "#" }, + "peak name": "-", + "identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_166", + "peak height": { + "value": 44.744, + "unit": "RFU" + }, "peak area": { "value": 1.0, "unit": "(unitless)" }, - "relative peak area": { - "value": "NaN", - "unit": "%" - }, - "relative corrected peak area": { - "value": "NaN", - "unit": "%" - }, - "comment": "Lower Marker" - }, - { - "peak identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_173", - "peak name": "1", - "peak height": { - "value": 10.905, - "unit": "RFU" - }, + "comment": "Lower Marker", "peak start": { - "value": 115.0, + "value": 29.0, "unit": "#" - }, + } + }, + { "peak end": { "value": 228.0, "unit": "#" @@ -1060,6 +985,12 @@ "value": 221.0, "unit": "#" }, + "peak name": "1", + "identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_173", + "peak height": { + "value": 10.905, + "unit": "RFU" + }, "peak area": { "value": 0.712, "unit": "(unitless)" @@ -1071,27 +1002,19 @@ "relative corrected peak area": { "value": 9.89, "unit": "%" + }, + "peak start": { + "value": 115.0, + "unit": "#" } }, { - "peak identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_179", "peak name": "2", + "identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_179", "peak height": { "value": 101.936, "unit": "RFU" }, - "peak start": { - "value": "NaN", - "unit": "#" - }, - "peak end": { - "value": "NaN", - "unit": "#" - }, - "peak position": { - "value": "NaN", - "unit": "#" - }, "peak area": { "value": 6.485, "unit": "(unitless)" @@ -1110,25 +1033,25 @@ "data region aggregate document": { "data region document": [ { - "region identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_184", - "region name": "1", - "region start": { - "value": 50.0, - "unit": "#" - }, - "region end": { + "data region end": { "value": 700.0, "unit": "#" }, - "region area": { + "data region identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_184", + "data region name": "1", + "data region area": { "value": 4.061, "unit": "(unitless)" }, - "relative region area": { + "relative data region area": { "value": 36.42, "unit": "%" }, - "comment": "%cfDNA" + "comment": "%cfDNA", + "data region start": { + "value": 50.0, + "unit": "#" + } } ] } @@ -1140,23 +1063,22 @@ "unit": "degC" } } - ] - }, - "analyst": "TapeStation User", - "analytical method identifier": "cfDNA", - "experimental data identifier": "C:\\Users\\JoeNegri\\Downloads\\cfDNA-Tubes-16.cfDNA" + ], + "analytical method identifier": "cfDNA", + "experimental data identifier": "C:\\Users\\JoeNegri\\Downloads\\cfDNA-Tubes-16.cfDNA" + } }, { + "analyst": "TapeStation User", "measurement aggregate document": { "measurement document": [ { - "measurement time": "2019-06-28T03:39:18-04:00", - "measurement identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_188", "device control aggregate document": { "device control document": [ { "device type": "electrophoresis device", - "detection type": "fluorescence" + "detection type": "fluorescence", + "device identifier": "65536" } ] }, @@ -1165,22 +1087,14 @@ "description": "Human Urine no Tube Extraction Kit C", "location identifier": "F1" }, + "measurement identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_188", + "measurement time": "2019-06-28T03:39:18-04:00", "processed data aggregate document": { "processed data document": [ { "peak list": { "peak": [ { - "peak identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_191", - "peak name": "-", - "peak height": { - "value": 231.724, - "unit": "RFU" - }, - "peak start": { - "value": 31.0, - "unit": "#" - }, "peak end": { "value": 47.0, "unit": "#" @@ -1189,31 +1103,23 @@ "value": 35.0, "unit": "#" }, + "peak name": "-", + "identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_191", + "peak height": { + "value": 231.724, + "unit": "RFU" + }, "peak area": { "value": 1.0, "unit": "(unitless)" }, - "relative peak area": { - "value": "NaN", - "unit": "%" - }, - "relative corrected peak area": { - "value": "NaN", - "unit": "%" - }, - "comment": "Lower Marker" - }, - { - "peak identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_198", - "peak name": "1", - "peak height": { - "value": 12.317, - "unit": "RFU" - }, + "comment": "Lower Marker", "peak start": { - "value": 276.0, + "value": 31.0, "unit": "#" - }, + } + }, + { "peak end": { "value": 296.0, "unit": "#" @@ -1222,6 +1128,12 @@ "value": 286.0, "unit": "#" }, + "peak name": "1", + "identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_198", + "peak height": { + "value": 12.317, + "unit": "RFU" + }, "peak area": { "value": 0.026, "unit": "(unitless)" @@ -1233,27 +1145,19 @@ "relative corrected peak area": { "value": 3.62, "unit": "%" + }, + "peak start": { + "value": 276.0, + "unit": "#" } }, { - "peak identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_204", "peak name": "2", + "identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_204", "peak height": { "value": 91.553, "unit": "RFU" }, - "peak start": { - "value": "NaN", - "unit": "#" - }, - "peak end": { - "value": "NaN", - "unit": "#" - }, - "peak position": { - "value": "NaN", - "unit": "#" - }, "peak area": { "value": 0.696, "unit": "(unitless)" @@ -1272,25 +1176,25 @@ "data region aggregate document": { "data region document": [ { - "region identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_209", - "region name": "1", - "region start": { - "value": 50.0, - "unit": "#" - }, - "region end": { + "data region end": { "value": 700.0, "unit": "#" }, - "region area": { + "data region identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_209", + "data region name": "1", + "data region area": { "value": 0.556, "unit": "(unitless)" }, - "relative region area": { + "relative data region area": { "value": 40.84, "unit": "%" }, - "comment": "%cfDNA" + "comment": "%cfDNA", + "data region start": { + "value": 50.0, + "unit": "#" + } } ] } @@ -1302,23 +1206,22 @@ "unit": "degC" } } - ] - }, - "analyst": "TapeStation User", - "analytical method identifier": "cfDNA", - "experimental data identifier": "C:\\Users\\JoeNegri\\Downloads\\cfDNA-Tubes-16.cfDNA" + ], + "analytical method identifier": "cfDNA", + "experimental data identifier": "C:\\Users\\JoeNegri\\Downloads\\cfDNA-Tubes-16.cfDNA" + } }, { + "analyst": "TapeStation User", "measurement aggregate document": { "measurement document": [ { - "measurement time": "2019-06-28T03:39:18-04:00", - "measurement identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_213", "device control aggregate document": { "device control document": [ { "device type": "electrophoresis device", - "detection type": "fluorescence" + "detection type": "fluorescence", + "device identifier": "65536" } ] }, @@ -1327,22 +1230,14 @@ "description": "Bovine Plasma Tube A Extraction Kit C", "location identifier": "G1" }, + "measurement identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_213", + "measurement time": "2019-06-28T03:39:18-04:00", "processed data aggregate document": { "processed data document": [ { "peak list": { "peak": [ { - "peak identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_216", - "peak name": "-", - "peak height": { - "value": 301.674, - "unit": "RFU" - }, - "peak start": { - "value": 30.0, - "unit": "#" - }, "peak end": { "value": 44.0, "unit": "#" @@ -1351,31 +1246,23 @@ "value": 35.0, "unit": "#" }, + "peak name": "-", + "identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_216", + "peak height": { + "value": 301.674, + "unit": "RFU" + }, "peak area": { "value": 1.0, "unit": "(unitless)" }, - "relative peak area": { - "value": "NaN", - "unit": "%" - }, - "relative corrected peak area": { - "value": "NaN", - "unit": "%" - }, - "comment": "Lower Marker" - }, - { - "peak identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_223", - "peak name": "1", - "peak height": { - "value": 26.727, - "unit": "RFU" - }, + "comment": "Lower Marker", "peak start": { - "value": 111.0, + "value": 30.0, "unit": "#" - }, + } + }, + { "peak end": { "value": 323.0, "unit": "#" @@ -1384,6 +1271,12 @@ "value": 188.0, "unit": "#" }, + "peak name": "1", + "identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_223", + "peak height": { + "value": 26.727, + "unit": "RFU" + }, "peak area": { "value": 0.278, "unit": "(unitless)" @@ -1395,19 +1288,13 @@ "relative corrected peak area": { "value": 41.19, "unit": "%" - } - }, - { - "peak identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_229", - "peak name": "2", - "peak height": { - "value": 18.565, - "unit": "RFU" }, "peak start": { - "value": 323.0, + "value": 111.0, "unit": "#" - }, + } + }, + { "peak end": { "value": 542.0, "unit": "#" @@ -1416,6 +1303,12 @@ "value": 426.0, "unit": "#" }, + "peak name": "2", + "identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_229", + "peak height": { + "value": 18.565, + "unit": "RFU" + }, "peak area": { "value": 0.168, "unit": "(unitless)" @@ -1427,19 +1320,13 @@ "relative corrected peak area": { "value": 24.96, "unit": "%" - } - }, - { - "peak identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_235", - "peak name": "3", - "peak height": { - "value": 11.783, - "unit": "RFU" }, "peak start": { - "value": 542.0, + "value": 323.0, "unit": "#" - }, + } + }, + { "peak end": { "value": 737.0, "unit": "#" @@ -1448,6 +1335,12 @@ "value": 654.0, "unit": "#" }, + "peak name": "3", + "identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_235", + "peak height": { + "value": 11.783, + "unit": "RFU" + }, "peak area": { "value": 0.1, "unit": "(unitless)" @@ -1459,27 +1352,19 @@ "relative corrected peak area": { "value": 14.9, "unit": "%" + }, + "peak start": { + "value": 542.0, + "unit": "#" } }, { - "peak identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_241", "peak name": "4", + "identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_241", "peak height": { "value": 22.99, "unit": "RFU" }, - "peak start": { - "value": "NaN", - "unit": "#" - }, - "peak end": { - "value": "NaN", - "unit": "#" - }, - "peak position": { - "value": "NaN", - "unit": "#" - }, "peak area": { "value": 0.128, "unit": "(unitless)" @@ -1498,25 +1383,25 @@ "data region aggregate document": { "data region document": [ { - "region identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_246", - "region name": "1", - "region start": { - "value": 50.0, - "unit": "#" - }, - "region end": { + "data region end": { "value": 700.0, "unit": "#" }, - "region area": { + "data region identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_246", + "data region name": "1", + "data region area": { "value": 0.543, "unit": "(unitless)" }, - "relative region area": { + "relative data region area": { "value": 63.81, "unit": "%" }, - "comment": "%cfDNA" + "comment": "%cfDNA", + "data region start": { + "value": 50.0, + "unit": "#" + } } ] } @@ -1528,23 +1413,22 @@ "unit": "degC" } } - ] - }, - "analyst": "TapeStation User", - "analytical method identifier": "cfDNA", - "experimental data identifier": "C:\\Users\\JoeNegri\\Downloads\\cfDNA-Tubes-16.cfDNA" + ], + "analytical method identifier": "cfDNA", + "experimental data identifier": "C:\\Users\\JoeNegri\\Downloads\\cfDNA-Tubes-16.cfDNA" + } }, { + "analyst": "TapeStation User", "measurement aggregate document": { "measurement document": [ { - "measurement time": "2019-06-28T03:39:18-04:00", - "measurement identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_250", "device control aggregate document": { "device control document": [ { "device type": "electrophoresis device", - "detection type": "fluorescence" + "detection type": "fluorescence", + "device identifier": "65536" } ] }, @@ -1553,22 +1437,14 @@ "description": "Bovine Plasma Tube B Extraction Kit C", "location identifier": "H1" }, + "measurement identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_250", + "measurement time": "2019-06-28T03:39:18-04:00", "processed data aggregate document": { "processed data document": [ { "peak list": { "peak": [ { - "peak identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_253", - "peak name": "-", - "peak height": { - "value": 265.393, - "unit": "RFU" - }, - "peak start": { - "value": 30.0, - "unit": "#" - }, "peak end": { "value": 53.0, "unit": "#" @@ -1577,31 +1453,23 @@ "value": 35.0, "unit": "#" }, + "peak name": "-", + "identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_253", + "peak height": { + "value": 265.393, + "unit": "RFU" + }, "peak area": { "value": 1.0, "unit": "(unitless)" }, - "relative peak area": { - "value": "NaN", - "unit": "%" - }, - "relative corrected peak area": { - "value": "NaN", - "unit": "%" - }, - "comment": "Lower Marker" - }, - { - "peak identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_260", - "peak name": "1", - "peak height": { - "value": 27.165, - "unit": "RFU" - }, + "comment": "Lower Marker", "peak start": { - "value": 105.0, + "value": 30.0, "unit": "#" - }, + } + }, + { "peak end": { "value": 301.0, "unit": "#" @@ -1610,6 +1478,12 @@ "value": 182.0, "unit": "#" }, + "peak name": "1", + "identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_260", + "peak height": { + "value": 27.165, + "unit": "RFU" + }, "peak area": { "value": 0.328, "unit": "(unitless)" @@ -1621,19 +1495,13 @@ "relative corrected peak area": { "value": 22.38, "unit": "%" - } - }, - { - "peak identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_266", - "peak name": "2", - "peak height": { - "value": 25.351, - "unit": "RFU" }, "peak start": { - "value": 301.0, + "value": 105.0, "unit": "#" - }, + } + }, + { "peak end": { "value": 509.0, "unit": "#" @@ -1642,6 +1510,12 @@ "value": 400.0, "unit": "#" }, + "peak name": "2", + "identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_266", + "peak height": { + "value": 25.351, + "unit": "RFU" + }, "peak area": { "value": 0.273, "unit": "(unitless)" @@ -1653,19 +1527,13 @@ "relative corrected peak area": { "value": 18.62, "unit": "%" - } - }, - { - "peak identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_272", - "peak name": "3", - "peak height": { - "value": 19.814, - "unit": "RFU" }, "peak start": { - "value": 509.0, + "value": 301.0, "unit": "#" - }, + } + }, + { "peak end": { "value": 710.0, "unit": "#" @@ -1674,6 +1542,12 @@ "value": 627.0, "unit": "#" }, + "peak name": "3", + "identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_272", + "peak height": { + "value": 19.814, + "unit": "RFU" + }, "peak area": { "value": 0.208, "unit": "(unitless)" @@ -1685,27 +1559,19 @@ "relative corrected peak area": { "value": 14.19, "unit": "%" + }, + "peak start": { + "value": 509.0, + "unit": "#" } }, { - "peak identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_278", "peak name": "4", + "identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_278", "peak height": { "value": 104.627, "unit": "RFU" }, - "peak start": { - "value": "NaN", - "unit": "#" - }, - "peak end": { - "value": "NaN", - "unit": "#" - }, - "peak position": { - "value": "NaN", - "unit": "#" - }, "peak area": { "value": 0.657, "unit": "(unitless)" @@ -1724,25 +1590,25 @@ "data region aggregate document": { "data region document": [ { - "region identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_283", - "region name": "1", - "region start": { - "value": 50.0, - "unit": "#" - }, - "region end": { + "data region end": { "value": 700.0, "unit": "#" }, - "region area": { + "data region identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_283", + "data region name": "1", + "data region area": { "value": 0.805, "unit": "(unitless)" }, - "relative region area": { + "relative data region area": { "value": 47.01, "unit": "%" }, - "comment": "%cfDNA" + "comment": "%cfDNA", + "data region start": { + "value": 50.0, + "unit": "#" + } } ] } @@ -1754,23 +1620,22 @@ "unit": "degC" } } - ] - }, - "analyst": "TapeStation User", - "analytical method identifier": "cfDNA", - "experimental data identifier": "C:\\Users\\JoeNegri\\Downloads\\cfDNA-Tubes-16.cfDNA" + ], + "analytical method identifier": "cfDNA", + "experimental data identifier": "C:\\Users\\JoeNegri\\Downloads\\cfDNA-Tubes-16.cfDNA" + } }, { + "analyst": "TapeStation User", "measurement aggregate document": { "measurement document": [ { - "measurement time": "2019-06-28T03:39:18-04:00", - "measurement identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_287", "device control aggregate document": { "device control document": [ { "device type": "electrophoresis device", - "detection type": "fluorescence" + "detection type": "fluorescence", + "device identifier": "65536" } ] }, @@ -1779,22 +1644,14 @@ "description": "Bovine Plasma Tube C Extraction Kit C", "location identifier": "A2" }, + "measurement identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_287", + "measurement time": "2019-06-28T03:39:18-04:00", "processed data aggregate document": { "processed data document": [ { "peak list": { "peak": [ { - "peak identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_290", - "peak name": "-", - "peak height": { - "value": 177.897, - "unit": "RFU" - }, - "peak start": { - "value": 30.0, - "unit": "#" - }, "peak end": { "value": 48.0, "unit": "#" @@ -1803,31 +1660,23 @@ "value": 35.0, "unit": "#" }, + "peak name": "-", + "identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_290", + "peak height": { + "value": 177.897, + "unit": "RFU" + }, "peak area": { "value": 1.0, "unit": "(unitless)" }, - "relative peak area": { - "value": "NaN", - "unit": "%" - }, - "relative corrected peak area": { - "value": "NaN", - "unit": "%" - }, - "comment": "Lower Marker" - }, - { - "peak identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_297", - "peak name": "1", - "peak height": { - "value": 19.739, - "unit": "RFU" - }, + "comment": "Lower Marker", "peak start": { - "value": 109.0, + "value": 30.0, "unit": "#" - }, + } + }, + { "peak end": { "value": 294.0, "unit": "#" @@ -1836,6 +1685,12 @@ "value": 182.0, "unit": "#" }, + "peak name": "1", + "identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_297", + "peak height": { + "value": 19.739, + "unit": "RFU" + }, "peak area": { "value": 0.309, "unit": "(unitless)" @@ -1847,19 +1702,13 @@ "relative corrected peak area": { "value": 25.2, "unit": "%" - } - }, - { - "peak identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_303", - "peak name": "2", - "peak height": { - "value": 18.011, - "unit": "RFU" }, "peak start": { - "value": 294.0, + "value": 109.0, "unit": "#" - }, + } + }, + { "peak end": { "value": 487.0, "unit": "#" @@ -1868,6 +1717,12 @@ "value": 392.0, "unit": "#" }, + "peak name": "2", + "identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_303", + "peak height": { + "value": 18.011, + "unit": "RFU" + }, "peak area": { "value": 0.247, "unit": "(unitless)" @@ -1879,19 +1734,13 @@ "relative corrected peak area": { "value": 20.14, "unit": "%" - } - }, - { - "peak identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_309", - "peak name": "3", - "peak height": { - "value": 13.707, - "unit": "RFU" }, "peak start": { - "value": 487.0, + "value": 294.0, "unit": "#" - }, + } + }, + { "peak end": { "value": 668.0, "unit": "#" @@ -1900,6 +1749,12 @@ "value": 601.0, "unit": "#" }, + "peak name": "3", + "identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_309", + "peak height": { + "value": 13.707, + "unit": "RFU" + }, "peak area": { "value": 0.176, "unit": "(unitless)" @@ -1911,26 +1766,18 @@ "relative corrected peak area": { "value": 14.33, "unit": "%" + }, + "peak start": { + "value": 487.0, + "unit": "#" } }, { - "peak identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_315", "peak name": "4", - "peak height": { - "value": 60.254, - "unit": "RFU" - }, - "peak start": { - "value": "NaN", - "unit": "#" - }, - "peak end": { - "value": "NaN", - "unit": "#" - }, - "peak position": { - "value": "NaN", - "unit": "#" + "identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_315", + "peak height": { + "value": 60.254, + "unit": "RFU" }, "peak area": { "value": 0.495, @@ -1950,25 +1797,25 @@ "data region aggregate document": { "data region document": [ { - "region identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_320", - "region name": "1", - "region start": { - "value": 50.0, - "unit": "#" - }, - "region end": { + "data region end": { "value": 700.0, "unit": "#" }, - "region area": { + "data region identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_320", + "data region name": "1", + "data region area": { "value": 0.765, "unit": "(unitless)" }, - "relative region area": { + "relative data region area": { "value": 52.0, "unit": "%" }, - "comment": "%cfDNA" + "comment": "%cfDNA", + "data region start": { + "value": 50.0, + "unit": "#" + } } ] } @@ -1980,23 +1827,22 @@ "unit": "degC" } } - ] - }, - "analyst": "TapeStation User", - "analytical method identifier": "cfDNA", - "experimental data identifier": "C:\\Users\\JoeNegri\\Downloads\\cfDNA-Tubes-16.cfDNA" + ], + "analytical method identifier": "cfDNA", + "experimental data identifier": "C:\\Users\\JoeNegri\\Downloads\\cfDNA-Tubes-16.cfDNA" + } }, { + "analyst": "TapeStation User", "measurement aggregate document": { "measurement document": [ { - "measurement time": "2019-06-28T03:39:18-04:00", - "measurement identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_324", "device control aggregate document": { "device control document": [ { "device type": "electrophoresis device", - "detection type": "fluorescence" + "detection type": "fluorescence", + "device identifier": "65536" } ] }, @@ -2005,22 +1851,14 @@ "description": "Bovine Plasma Tube D Extraction Kit C", "location identifier": "B2" }, + "measurement identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_324", + "measurement time": "2019-06-28T03:39:18-04:00", "processed data aggregate document": { "processed data document": [ { "peak list": { "peak": [ { - "peak identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_327", - "peak name": "-", - "peak height": { - "value": 219.608, - "unit": "RFU" - }, - "peak start": { - "value": 28.0, - "unit": "#" - }, "peak end": { "value": 44.0, "unit": "#" @@ -2029,31 +1867,23 @@ "value": 35.0, "unit": "#" }, + "peak name": "-", + "identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_327", + "peak height": { + "value": 219.608, + "unit": "RFU" + }, "peak area": { "value": 1.0, "unit": "(unitless)" }, - "relative peak area": { - "value": "NaN", - "unit": "%" - }, - "relative corrected peak area": { - "value": "NaN", - "unit": "%" - }, - "comment": "Lower Marker" - }, - { - "peak identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_334", - "peak name": "1", - "peak height": { - "value": 23.053, - "unit": "RFU" - }, + "comment": "Lower Marker", "peak start": { - "value": 111.0, + "value": 28.0, "unit": "#" - }, + } + }, + { "peak end": { "value": 305.0, "unit": "#" @@ -2062,6 +1892,12 @@ "value": 188.0, "unit": "#" }, + "peak name": "1", + "identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_334", + "peak height": { + "value": 23.053, + "unit": "RFU" + }, "peak area": { "value": 0.309, "unit": "(unitless)" @@ -2073,19 +1909,13 @@ "relative corrected peak area": { "value": 37.69, "unit": "%" - } - }, - { - "peak identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_340", - "peak name": "2", - "peak height": { - "value": 17.397, - "unit": "RFU" }, "peak start": { - "value": 305.0, + "value": 111.0, "unit": "#" - }, + } + }, + { "peak end": { "value": 513.0, "unit": "#" @@ -2094,6 +1924,12 @@ "value": 412.0, "unit": "#" }, + "peak name": "2", + "identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_340", + "peak height": { + "value": 17.397, + "unit": "RFU" + }, "peak area": { "value": 0.217, "unit": "(unitless)" @@ -2105,27 +1941,19 @@ "relative corrected peak area": { "value": 26.49, "unit": "%" + }, + "peak start": { + "value": 305.0, + "unit": "#" } }, { - "peak identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_346", "peak name": "3", + "identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_346", "peak height": { "value": 35.728, "unit": "RFU" }, - "peak start": { - "value": "NaN", - "unit": "#" - }, - "peak end": { - "value": "NaN", - "unit": "#" - }, - "peak position": { - "value": "NaN", - "unit": "#" - }, "peak area": { "value": 0.294, "unit": "(unitless)" @@ -2144,25 +1972,25 @@ "data region aggregate document": { "data region document": [ { - "region identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_351", - "region name": "1", - "region start": { - "value": 50.0, - "unit": "#" - }, - "region end": { + "data region end": { "value": 700.0, "unit": "#" }, - "region area": { + "data region identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_351", + "data region name": "1", + "data region area": { "value": 0.679, "unit": "(unitless)" }, - "relative region area": { + "relative data region area": { "value": 55.92, "unit": "%" }, - "comment": "%cfDNA" + "comment": "%cfDNA", + "data region start": { + "value": 50.0, + "unit": "#" + } } ] } @@ -2174,23 +2002,22 @@ "unit": "degC" } } - ] - }, - "analyst": "TapeStation User", - "analytical method identifier": "cfDNA", - "experimental data identifier": "C:\\Users\\JoeNegri\\Downloads\\cfDNA-Tubes-16.cfDNA" + ], + "analytical method identifier": "cfDNA", + "experimental data identifier": "C:\\Users\\JoeNegri\\Downloads\\cfDNA-Tubes-16.cfDNA" + } }, { + "analyst": "TapeStation User", "measurement aggregate document": { "measurement document": [ { - "measurement time": "2019-06-28T03:39:18-04:00", - "measurement identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_355", "device control aggregate document": { "device control document": [ { "device type": "electrophoresis device", - "detection type": "fluorescence" + "detection type": "fluorescence", + "device identifier": "65536" } ] }, @@ -2199,22 +2026,14 @@ "description": "Human Plasma Tube B Extraction Kit A", "location identifier": "C2" }, + "measurement identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_355", + "measurement time": "2019-06-28T03:39:18-04:00", "processed data aggregate document": { "processed data document": [ { "peak list": { "peak": [ { - "peak identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_358", - "peak name": "-", - "peak height": { - "value": 166.202, - "unit": "RFU" - }, - "peak start": { - "value": 28.0, - "unit": "#" - }, "peak end": { "value": 47.0, "unit": "#" @@ -2223,31 +2042,23 @@ "value": 35.0, "unit": "#" }, + "peak name": "-", + "identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_358", + "peak height": { + "value": 166.202, + "unit": "RFU" + }, "peak area": { "value": 1.0, "unit": "(unitless)" }, - "relative peak area": { - "value": "NaN", - "unit": "%" - }, - "relative corrected peak area": { - "value": "NaN", - "unit": "%" - }, - "comment": "Lower Marker" - }, - { - "peak identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_365", - "peak name": "1", - "peak height": { - "value": 114.533, - "unit": "RFU" - }, + "comment": "Lower Marker", "peak start": { - "value": 111.0, + "value": 28.0, "unit": "#" - }, + } + }, + { "peak end": { "value": 315.0, "unit": "#" @@ -2256,6 +2067,12 @@ "value": 183.0, "unit": "#" }, + "peak name": "1", + "identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_365", + "peak height": { + "value": 114.533, + "unit": "RFU" + }, "peak area": { "value": 1.628, "unit": "(unitless)" @@ -2267,19 +2084,13 @@ "relative corrected peak area": { "value": 77.72, "unit": "%" - } - }, - { - "peak identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_371", - "peak name": "2", - "peak height": { - "value": 16.75, - "unit": "RFU" }, "peak start": { - "value": 315.0, + "value": 111.0, "unit": "#" - }, + } + }, + { "peak end": { "value": 521.0, "unit": "#" @@ -2288,6 +2099,12 @@ "value": 364.0, "unit": "#" }, + "peak name": "2", + "identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_371", + "peak height": { + "value": 16.75, + "unit": "RFU" + }, "peak area": { "value": 0.293, "unit": "(unitless)" @@ -2299,27 +2116,19 @@ "relative corrected peak area": { "value": 14.0, "unit": "%" + }, + "peak start": { + "value": 315.0, + "unit": "#" } }, { - "peak identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_377", "peak name": "3", + "identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_377", "peak height": { "value": 19.29, "unit": "RFU" }, - "peak start": { - "value": "NaN", - "unit": "#" - }, - "peak end": { - "value": "NaN", - "unit": "#" - }, - "peak position": { - "value": "NaN", - "unit": "#" - }, "peak area": { "value": 0.174, "unit": "(unitless)" @@ -2338,25 +2147,25 @@ "data region aggregate document": { "data region document": [ { - "region identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_382", - "region name": "1", - "region start": { - "value": 50.0, - "unit": "#" - }, - "region end": { + "data region end": { "value": 700.0, "unit": "#" }, - "region area": { + "data region identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_382", + "data region name": "1", + "data region area": { "value": 2.041, "unit": "(unitless)" }, - "relative region area": { + "relative data region area": { "value": 86.75, "unit": "%" }, - "comment": "%cfDNA" + "comment": "%cfDNA", + "data region start": { + "value": 50.0, + "unit": "#" + } } ] } @@ -2368,23 +2177,22 @@ "unit": "degC" } } - ] - }, - "analyst": "TapeStation User", - "analytical method identifier": "cfDNA", - "experimental data identifier": "C:\\Users\\JoeNegri\\Downloads\\cfDNA-Tubes-16.cfDNA" + ], + "analytical method identifier": "cfDNA", + "experimental data identifier": "C:\\Users\\JoeNegri\\Downloads\\cfDNA-Tubes-16.cfDNA" + } }, { + "analyst": "TapeStation User", "measurement aggregate document": { "measurement document": [ { - "measurement time": "2019-06-28T03:39:18-04:00", - "measurement identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_386", "device control aggregate document": { "device control document": [ { "device type": "electrophoresis device", - "detection type": "fluorescence" + "detection type": "fluorescence", + "device identifier": "65536" } ] }, @@ -2393,22 +2201,14 @@ "description": "Human Plasma Tube B Extraction Kit B", "location identifier": "D2" }, + "measurement identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_386", + "measurement time": "2019-06-28T03:39:18-04:00", "processed data aggregate document": { "processed data document": [ { "peak list": { "peak": [ { - "peak identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_389", - "peak name": "-", - "peak height": { - "value": 204.676, - "unit": "RFU" - }, - "peak start": { - "value": 27.0, - "unit": "#" - }, "peak end": { "value": 47.0, "unit": "#" @@ -2417,31 +2217,23 @@ "value": 35.0, "unit": "#" }, + "peak name": "-", + "identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_389", + "peak height": { + "value": 204.676, + "unit": "RFU" + }, "peak area": { "value": 1.0, "unit": "(unitless)" }, - "relative peak area": { - "value": "NaN", - "unit": "%" - }, - "relative corrected peak area": { - "value": "NaN", - "unit": "%" - }, - "comment": "Lower Marker" - }, - { - "peak identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_396", - "peak name": "1", - "peak height": { - "value": 197.872, - "unit": "RFU" - }, + "comment": "Lower Marker", "peak start": { - "value": 91.0, + "value": 27.0, "unit": "#" - }, + } + }, + { "peak end": { "value": 268.0, "unit": "#" @@ -2450,6 +2242,12 @@ "value": 160.0, "unit": "#" }, + "peak name": "1", + "identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_396", + "peak height": { + "value": 197.872, + "unit": "RFU" + }, "peak area": { "value": 2.509, "unit": "(unitless)" @@ -2461,19 +2259,13 @@ "relative corrected peak area": { "value": 79.91, "unit": "%" - } - }, - { - "peak identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_402", - "peak name": "2", - "peak height": { - "value": 26.143, - "unit": "RFU" }, "peak start": { - "value": 268.0, + "value": 91.0, "unit": "#" - }, + } + }, + { "peak end": { "value": 481.0, "unit": "#" @@ -2482,6 +2274,12 @@ "value": 329.0, "unit": "#" }, + "peak name": "2", + "identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_402", + "peak height": { + "value": 26.143, + "unit": "RFU" + }, "peak area": { "value": 0.452, "unit": "(unitless)" @@ -2493,19 +2291,13 @@ "relative corrected peak area": { "value": 14.41, "unit": "%" - } - }, - { - "peak identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_408", - "peak name": "3", - "peak height": { - "value": 11.577, - "unit": "RFU" }, "peak start": { - "value": 586.0, + "value": 268.0, "unit": "#" - }, + } + }, + { "peak end": { "value": 609.0, "unit": "#" @@ -2514,6 +2306,12 @@ "value": 597.0, "unit": "#" }, + "peak name": "3", + "identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_408", + "peak height": { + "value": 11.577, + "unit": "RFU" + }, "peak area": { "value": 0.027, "unit": "(unitless)" @@ -2525,27 +2323,19 @@ "relative corrected peak area": { "value": 0.86, "unit": "%" + }, + "peak start": { + "value": 586.0, + "unit": "#" } }, { - "peak identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_414", "peak name": "4", + "identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_414", "peak height": { "value": 14.908, "unit": "RFU" }, - "peak start": { - "value": "NaN", - "unit": "#" - }, - "peak end": { - "value": "NaN", - "unit": "#" - }, - "peak position": { - "value": "NaN", - "unit": "#" - }, "peak area": { "value": 0.151, "unit": "(unitless)" @@ -2564,25 +2354,25 @@ "data region aggregate document": { "data region document": [ { - "region identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_419", - "region name": "1", - "region start": { - "value": 50.0, - "unit": "#" - }, - "region end": { + "data region end": { "value": 700.0, "unit": "#" }, - "region area": { + "data region identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_419", + "data region name": "1", + "data region area": { "value": 3.175, "unit": "(unitless)" }, - "relative region area": { + "relative data region area": { "value": 90.67, "unit": "%" }, - "comment": "%cfDNA" + "comment": "%cfDNA", + "data region start": { + "value": 50.0, + "unit": "#" + } } ] } @@ -2594,23 +2384,22 @@ "unit": "degC" } } - ] - }, - "analyst": "TapeStation User", - "analytical method identifier": "cfDNA", - "experimental data identifier": "C:\\Users\\JoeNegri\\Downloads\\cfDNA-Tubes-16.cfDNA" + ], + "analytical method identifier": "cfDNA", + "experimental data identifier": "C:\\Users\\JoeNegri\\Downloads\\cfDNA-Tubes-16.cfDNA" + } }, { + "analyst": "TapeStation User", "measurement aggregate document": { "measurement document": [ { - "measurement time": "2019-06-28T03:39:18-04:00", - "measurement identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_423", "device control aggregate document": { "device control document": [ { "device type": "electrophoresis device", - "detection type": "fluorescence" + "detection type": "fluorescence", + "device identifier": "65536" } ] }, @@ -2619,22 +2408,14 @@ "description": "Human Plasma Tube B Extraction Kit C", "location identifier": "E2" }, + "measurement identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_423", + "measurement time": "2019-06-28T03:39:18-04:00", "processed data aggregate document": { "processed data document": [ { "peak list": { "peak": [ { - "peak identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_426", - "peak name": "-", - "peak height": { - "value": 183.43, - "unit": "RFU" - }, - "peak start": { - "value": 28.0, - "unit": "#" - }, "peak end": { "value": 47.0, "unit": "#" @@ -2643,31 +2424,23 @@ "value": 35.0, "unit": "#" }, + "peak name": "-", + "identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_426", + "peak height": { + "value": 183.43, + "unit": "RFU" + }, "peak area": { "value": 1.0, "unit": "(unitless)" }, - "relative peak area": { - "value": "NaN", - "unit": "%" - }, - "relative corrected peak area": { - "value": "NaN", - "unit": "%" - }, - "comment": "Lower Marker" - }, - { - "peak identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_433", - "peak name": "1", - "peak height": { - "value": 140.314, - "unit": "RFU" - }, + "comment": "Lower Marker", "peak start": { - "value": 107.0, + "value": 28.0, "unit": "#" - }, + } + }, + { "peak end": { "value": 329.0, "unit": "#" @@ -2676,6 +2449,12 @@ "value": 189.0, "unit": "#" }, + "peak name": "1", + "identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_433", + "peak height": { + "value": 140.314, + "unit": "RFU" + }, "peak area": { "value": 1.683, "unit": "(unitless)" @@ -2687,27 +2466,19 @@ "relative corrected peak area": { "value": 97.54, "unit": "%" + }, + "peak start": { + "value": 107.0, + "unit": "#" } }, { - "peak identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_439", "peak name": "2", + "identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_439", "peak height": { "value": 5.926, "unit": "RFU" }, - "peak start": { - "value": "NaN", - "unit": "#" - }, - "peak end": { - "value": "NaN", - "unit": "#" - }, - "peak position": { - "value": "NaN", - "unit": "#" - }, "peak area": { "value": 0.042, "unit": "(unitless)" @@ -2726,25 +2497,25 @@ "data region aggregate document": { "data region document": [ { - "region identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_444", - "region name": "1", - "region start": { - "value": 50.0, - "unit": "#" - }, - "region end": { + "data region end": { "value": 700.0, "unit": "#" }, - "region area": { + "data region identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_444", + "data region name": "1", + "data region area": { "value": 1.979, "unit": "(unitless)" }, - "relative region area": { + "relative data region area": { "value": 94.59, "unit": "%" }, - "comment": "%cfDNA" + "comment": "%cfDNA", + "data region start": { + "value": 50.0, + "unit": "#" + } } ] } @@ -2756,23 +2527,22 @@ "unit": "degC" } } - ] - }, - "analyst": "TapeStation User", - "analytical method identifier": "cfDNA", - "experimental data identifier": "C:\\Users\\JoeNegri\\Downloads\\cfDNA-Tubes-16.cfDNA" + ], + "analytical method identifier": "cfDNA", + "experimental data identifier": "C:\\Users\\JoeNegri\\Downloads\\cfDNA-Tubes-16.cfDNA" + } }, { + "analyst": "TapeStation User", "measurement aggregate document": { "measurement document": [ { - "measurement time": "2019-06-28T03:39:18-04:00", - "measurement identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_448", "device control aggregate document": { "device control document": [ { "device type": "electrophoresis device", - "detection type": "fluorescence" + "detection type": "fluorescence", + "device identifier": "65536" } ] }, @@ -2781,22 +2551,14 @@ "description": "Human Plasma Tube B Extraction Kit D", "location identifier": "F2" }, + "measurement identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_448", + "measurement time": "2019-06-28T03:39:18-04:00", "processed data aggregate document": { "processed data document": [ { "peak list": { "peak": [ { - "peak identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_451", - "peak name": "-", - "peak height": { - "value": 95.681, - "unit": "RFU" - }, - "peak start": { - "value": 29.0, - "unit": "#" - }, "peak end": { "value": 45.0, "unit": "#" @@ -2805,31 +2567,23 @@ "value": 35.0, "unit": "#" }, + "peak name": "-", + "identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_451", + "peak height": { + "value": 95.681, + "unit": "RFU" + }, "peak area": { "value": 1.0, "unit": "(unitless)" }, - "relative peak area": { - "value": "NaN", - "unit": "%" - }, - "relative corrected peak area": { - "value": "NaN", - "unit": "%" - }, - "comment": "Lower Marker" - }, - { - "peak identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_458", - "peak name": "1", - "peak height": { - "value": 130.024, - "unit": "RFU" - }, + "comment": "Lower Marker", "peak start": { - "value": 96.0, + "value": 29.0, "unit": "#" - }, + } + }, + { "peak end": { "value": 287.0, "unit": "#" @@ -2838,6 +2592,12 @@ "value": 166.0, "unit": "#" }, + "peak name": "1", + "identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_458", + "peak height": { + "value": 130.024, + "unit": "RFU" + }, "peak area": { "value": 3.537, "unit": "(unitless)" @@ -2849,19 +2609,13 @@ "relative corrected peak area": { "value": 82.98, "unit": "%" - } - }, - { - "peak identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_464", - "peak name": "2", - "peak height": { - "value": 16.291, - "unit": "RFU" }, "peak start": { - "value": 287.0, + "value": 96.0, "unit": "#" - }, + } + }, + { "peak end": { "value": 478.0, "unit": "#" @@ -2870,6 +2624,12 @@ "value": 330.0, "unit": "#" }, + "peak name": "2", + "identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_464", + "peak height": { + "value": 16.291, + "unit": "RFU" + }, "peak area": { "value": 0.513, "unit": "(unitless)" @@ -2881,27 +2641,19 @@ "relative corrected peak area": { "value": 12.03, "unit": "%" + }, + "peak start": { + "value": 287.0, + "unit": "#" } }, { - "peak identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_470", "peak name": "3", + "identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_470", "peak height": { "value": 16.333, "unit": "RFU" }, - "peak start": { - "value": "NaN", - "unit": "#" - }, - "peak end": { - "value": "NaN", - "unit": "#" - }, - "peak position": { - "value": "NaN", - "unit": "#" - }, "peak area": { "value": 0.213, "unit": "(unitless)" @@ -2920,25 +2672,25 @@ "data region aggregate document": { "data region document": [ { - "region identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_475", - "region name": "1", - "region start": { - "value": 50.0, - "unit": "#" - }, - "region end": { + "data region end": { "value": 700.0, "unit": "#" }, - "region area": { + "data region identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_475", + "data region name": "1", + "data region area": { "value": 4.256, "unit": "(unitless)" }, - "relative region area": { + "relative data region area": { "value": 91.18, "unit": "%" }, - "comment": "%cfDNA" + "comment": "%cfDNA", + "data region start": { + "value": 50.0, + "unit": "#" + } } ] } @@ -2950,23 +2702,22 @@ "unit": "degC" } } - ] - }, - "analyst": "TapeStation User", - "analytical method identifier": "cfDNA", - "experimental data identifier": "C:\\Users\\JoeNegri\\Downloads\\cfDNA-Tubes-16.cfDNA" + ], + "analytical method identifier": "cfDNA", + "experimental data identifier": "C:\\Users\\JoeNegri\\Downloads\\cfDNA-Tubes-16.cfDNA" + } }, { + "analyst": "TapeStation User", "measurement aggregate document": { "measurement document": [ { - "measurement time": "2019-06-28T03:39:18-04:00", - "measurement identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_479", "device control aggregate document": { "device control document": [ { "device type": "electrophoresis device", - "detection type": "fluorescence" + "detection type": "fluorescence", + "device identifier": "65536" } ] }, @@ -2975,22 +2726,14 @@ "description": "Human Plasma Tube B Extraction Kit E", "location identifier": "G2" }, + "measurement identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_479", + "measurement time": "2019-06-28T03:39:18-04:00", "processed data aggregate document": { "processed data document": [ { "peak list": { "peak": [ { - "peak identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_482", - "peak name": "-", - "peak height": { - "value": 117.535, - "unit": "RFU" - }, - "peak start": { - "value": 29.0, - "unit": "#" - }, "peak end": { "value": 46.0, "unit": "#" @@ -2999,31 +2742,23 @@ "value": 35.0, "unit": "#" }, + "peak name": "-", + "identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_482", + "peak height": { + "value": 117.535, + "unit": "RFU" + }, "peak area": { "value": 1.0, "unit": "(unitless)" }, - "relative peak area": { - "value": "NaN", - "unit": "%" - }, - "relative corrected peak area": { - "value": "NaN", - "unit": "%" - }, - "comment": "Lower Marker" - }, - { - "peak identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_489", - "peak name": "1", - "peak height": { - "value": 55.026, - "unit": "RFU" - }, + "comment": "Lower Marker", "peak start": { - "value": 109.0, + "value": 29.0, "unit": "#" - }, + } + }, + { "peak end": { "value": 320.0, "unit": "#" @@ -3032,6 +2767,12 @@ "value": 182.0, "unit": "#" }, + "peak name": "1", + "identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_489", + "peak height": { + "value": 55.026, + "unit": "RFU" + }, "peak area": { "value": 1.16, "unit": "(unitless)" @@ -3043,6 +2784,10 @@ "relative corrected peak area": { "value": 100.0, "unit": "%" + }, + "peak start": { + "value": 109.0, + "unit": "#" } } ] @@ -3050,25 +2795,25 @@ "data region aggregate document": { "data region document": [ { - "region identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_495", - "region name": "1", - "region start": { - "value": 50.0, - "unit": "#" - }, - "region end": { + "data region end": { "value": 700.0, "unit": "#" }, - "region area": { + "data region identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_495", + "data region name": "1", + "data region area": { "value": 1.386, "unit": "(unitless)" }, - "relative region area": { + "relative data region area": { "value": 90.98, "unit": "%" }, - "comment": "%cfDNA" + "comment": "%cfDNA", + "data region start": { + "value": 50.0, + "unit": "#" + } } ] } @@ -3080,23 +2825,22 @@ "unit": "degC" } } - ] - }, - "analyst": "TapeStation User", - "analytical method identifier": "cfDNA", - "experimental data identifier": "C:\\Users\\JoeNegri\\Downloads\\cfDNA-Tubes-16.cfDNA" + ], + "analytical method identifier": "cfDNA", + "experimental data identifier": "C:\\Users\\JoeNegri\\Downloads\\cfDNA-Tubes-16.cfDNA" + } }, { + "analyst": "TapeStation User", "measurement aggregate document": { "measurement document": [ { - "measurement time": "2019-06-28T03:39:18-04:00", - "measurement identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_499", "device control aggregate document": { "device control document": [ { "device type": "electrophoresis device", - "detection type": "fluorescence" + "detection type": "fluorescence", + "device identifier": "65536" } ] }, @@ -3105,22 +2849,14 @@ "description": "Human Plasma Tube B Extraction Kit F", "location identifier": "H2" }, + "measurement identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_499", + "measurement time": "2019-06-28T03:39:18-04:00", "processed data aggregate document": { "processed data document": [ { "peak list": { "peak": [ { - "peak identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_502", - "peak name": "-", - "peak height": { - "value": 76.513, - "unit": "RFU" - }, - "peak start": { - "value": 28.0, - "unit": "#" - }, "peak end": { "value": 45.0, "unit": "#" @@ -3129,31 +2865,23 @@ "value": 35.0, "unit": "#" }, - "peak area": { - "value": 1.0, - "unit": "(unitless)" - }, - "relative peak area": { - "value": "NaN", - "unit": "%" - }, - "relative corrected peak area": { - "value": "NaN", - "unit": "%" - }, - "comment": "Lower Marker" - }, - { - "peak identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_509", - "peak name": "1", + "peak name": "-", + "identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_502", "peak height": { - "value": 113.98, + "value": 76.513, "unit": "RFU" }, + "peak area": { + "value": 1.0, + "unit": "(unitless)" + }, + "comment": "Lower Marker", "peak start": { - "value": 103.0, + "value": 28.0, "unit": "#" - }, + } + }, + { "peak end": { "value": 300.0, "unit": "#" @@ -3162,6 +2890,12 @@ "value": 178.0, "unit": "#" }, + "peak name": "1", + "identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_509", + "peak height": { + "value": 113.98, + "unit": "RFU" + }, "peak area": { "value": 3.527, "unit": "(unitless)" @@ -3173,19 +2907,13 @@ "relative corrected peak area": { "value": 82.96, "unit": "%" - } - }, - { - "peak identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_515", - "peak name": "2", - "peak height": { - "value": 14.171, - "unit": "RFU" }, "peak start": { - "value": 300.0, + "value": 103.0, "unit": "#" - }, + } + }, + { "peak end": { "value": 507.0, "unit": "#" @@ -3194,6 +2922,12 @@ "value": 356.0, "unit": "#" }, + "peak name": "2", + "identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_515", + "peak height": { + "value": 14.171, + "unit": "RFU" + }, "peak area": { "value": 0.546, "unit": "(unitless)" @@ -3205,27 +2939,19 @@ "relative corrected peak area": { "value": 12.83, "unit": "%" + }, + "peak start": { + "value": 300.0, + "unit": "#" } }, { - "peak identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_521", "peak name": "3", + "identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_521", "peak height": { "value": 6.271, "unit": "RFU" }, - "peak start": { - "value": "NaN", - "unit": "#" - }, - "peak end": { - "value": "NaN", - "unit": "#" - }, - "peak position": { - "value": "NaN", - "unit": "#" - }, "peak area": { "value": 0.054, "unit": "(unitless)" @@ -3240,24 +2966,12 @@ } }, { - "peak identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_526", "peak name": "4", + "identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_526", "peak height": { "value": 5.809, "unit": "RFU" }, - "peak start": { - "value": "NaN", - "unit": "#" - }, - "peak end": { - "value": "NaN", - "unit": "#" - }, - "peak position": { - "value": "NaN", - "unit": "#" - }, "peak area": { "value": 0.125, "unit": "(unitless)" @@ -3276,25 +2990,25 @@ "data region aggregate document": { "data region document": [ { - "region identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_531", - "region name": "1", - "region start": { - "value": 50.0, - "unit": "#" - }, - "region end": { + "data region end": { "value": 700.0, "unit": "#" }, - "region area": { + "data region identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_531", + "data region name": "1", + "data region area": { "value": 4.318, "unit": "(unitless)" }, - "relative region area": { + "relative data region area": { "value": 92.9, "unit": "%" }, - "comment": "%cfDNA" + "comment": "%cfDNA", + "data region start": { + "value": 50.0, + "unit": "#" + } } ] } @@ -3306,19 +3020,12 @@ "unit": "degC" } } - ] - }, - "analyst": "TapeStation User", - "analytical method identifier": "cfDNA", - "experimental data identifier": "C:\\Users\\JoeNegri\\Downloads\\cfDNA-Tubes-16.cfDNA" + ], + "analytical method identifier": "cfDNA", + "experimental data identifier": "C:\\Users\\JoeNegri\\Downloads\\cfDNA-Tubes-16.cfDNA" + } } ], - "device system document": { - "brand name": "TapeStation", - "product manufacturer": "Agilent", - "device identifier": "65536", - "equipment serial number": "DEDAB00201" - }, "calculated data aggregate document": { "calculated data document": [ { @@ -3327,6 +3034,7 @@ "value": 2970.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1", "data source aggregate document": { "data source document": [ { @@ -3334,8 +3042,7 @@ "data source feature": "sample" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_1" + } }, { "calculated data name": "AssignedQuantity", @@ -3343,6 +3050,7 @@ "value": 275.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_3", "data source aggregate document": { "data source document": [ { @@ -3350,8 +3058,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_3" + } }, { "calculated data name": "CalibratedQuantity", @@ -3359,6 +3066,7 @@ "value": 275.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_4", "data source aggregate document": { "data source document": [ { @@ -3366,8 +3074,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_4" + } }, { "calculated data name": "FromPercent", @@ -3375,6 +3082,7 @@ "value": 82.4, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_5", "data source aggregate document": { "data source document": [ { @@ -3382,8 +3090,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_5" + } }, { "calculated data name": "Molarity", @@ -3391,6 +3098,7 @@ "value": 12100.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_6", "data source aggregate document": { "data source document": [ { @@ -3398,8 +3106,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_6" + } }, { "calculated data name": "RunDistance", @@ -3407,6 +3114,7 @@ "value": 86.5, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_7", "data source aggregate document": { "data source document": [ { @@ -3414,8 +3122,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_7" + } }, { "calculated data name": "ToPercent", @@ -3423,6 +3130,7 @@ "value": 89.4, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_8", "data source aggregate document": { "data source document": [ { @@ -3430,8 +3138,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_8" + } }, { "calculated data name": "CalibratedQuantity", @@ -3439,6 +3146,7 @@ "value": 228.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_10", "data source aggregate document": { "data source document": [ { @@ -3446,8 +3154,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_10" + } }, { "calculated data name": "FromPercent", @@ -3455,6 +3162,7 @@ "value": 74.8, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_11", "data source aggregate document": { "data source document": [ { @@ -3462,8 +3170,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_11" + } }, { "calculated data name": "Molarity", @@ -3471,6 +3178,7 @@ "value": 7020.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_12", "data source aggregate document": { "data source document": [ { @@ -3478,8 +3186,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_12" + } }, { "calculated data name": "RunDistance", @@ -3487,6 +3194,7 @@ "value": 79.4, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_13", "data source aggregate document": { "data source document": [ { @@ -3494,8 +3202,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_13" + } }, { "calculated data name": "ToPercent", @@ -3503,6 +3210,7 @@ "value": 82.4, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_14", "data source aggregate document": { "data source document": [ { @@ -3510,8 +3218,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_14" + } }, { "calculated data name": "CalibratedQuantity", @@ -3519,6 +3226,7 @@ "value": 245.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_16", "data source aggregate document": { "data source document": [ { @@ -3526,8 +3234,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_16" + } }, { "calculated data name": "FromPercent", @@ -3535,6 +3242,7 @@ "value": 69.8, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_17", "data source aggregate document": { "data source document": [ { @@ -3542,8 +3250,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_17" + } }, { "calculated data name": "Molarity", @@ -3551,6 +3258,7 @@ "value": 5020.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_18", "data source aggregate document": { "data source document": [ { @@ -3558,8 +3266,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_18" + } }, { "calculated data name": "RunDistance", @@ -3567,6 +3274,7 @@ "value": 72.1, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_19", "data source aggregate document": { "data source document": [ { @@ -3574,8 +3282,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_19" + } }, { "calculated data name": "ToPercent", @@ -3583,6 +3290,7 @@ "value": 74.8, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_20", "data source aggregate document": { "data source document": [ { @@ -3590,8 +3298,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_20" + } }, { "calculated data name": "CalibratedQuantity", @@ -3599,6 +3306,7 @@ "value": 267.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_22", "data source aggregate document": { "data source document": [ { @@ -3606,8 +3314,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_22" + } }, { "calculated data name": "FromPercent", @@ -3615,6 +3322,7 @@ "value": 64.3, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_23", "data source aggregate document": { "data source document": [ { @@ -3622,8 +3330,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_23" + } }, { "calculated data name": "Molarity", @@ -3631,6 +3338,7 @@ "value": 4110.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_24", "data source aggregate document": { "data source document": [ { @@ -3638,8 +3346,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_24" + } }, { "calculated data name": "RunDistance", @@ -3647,6 +3354,7 @@ "value": 67.8, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_25", "data source aggregate document": { "data source document": [ { @@ -3654,8 +3362,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_25" + } }, { "calculated data name": "ToPercent", @@ -3663,6 +3370,7 @@ "value": 69.8, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_26", "data source aggregate document": { "data source document": [ { @@ -3670,8 +3378,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_26" + } }, { "calculated data name": "CalibratedQuantity", @@ -3679,6 +3386,7 @@ "value": 243.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_28", "data source aggregate document": { "data source document": [ { @@ -3686,8 +3394,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_28" + } }, { "calculated data name": "FromPercent", @@ -3695,6 +3402,7 @@ "value": 59.9, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_29", "data source aggregate document": { "data source document": [ { @@ -3702,8 +3410,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_29" + } }, { "calculated data name": "Molarity", @@ -3711,6 +3418,7 @@ "value": 2490.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_30", "data source aggregate document": { "data source document": [ { @@ -3718,8 +3426,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_30" + } }, { "calculated data name": "RunDistance", @@ -3727,6 +3434,7 @@ "value": 62.3, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_31", "data source aggregate document": { "data source document": [ { @@ -3734,8 +3442,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_31" + } }, { "calculated data name": "ToPercent", @@ -3743,6 +3450,7 @@ "value": 64.3, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_32", "data source aggregate document": { "data source document": [ { @@ -3750,8 +3458,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_32" + } }, { "calculated data name": "CalibratedQuantity", @@ -3759,6 +3466,7 @@ "value": 244.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_34", "data source aggregate document": { "data source document": [ { @@ -3766,8 +3474,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_34" + } }, { "calculated data name": "FromPercent", @@ -3775,6 +3482,7 @@ "value": 55.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_35", "data source aggregate document": { "data source document": [ { @@ -3782,8 +3490,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_35" + } }, { "calculated data name": "Molarity", @@ -3791,6 +3498,7 @@ "value": 1880.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_36", "data source aggregate document": { "data source document": [ { @@ -3798,8 +3506,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_36" + } }, { "calculated data name": "RunDistance", @@ -3807,6 +3514,7 @@ "value": 58.1, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_37", "data source aggregate document": { "data source document": [ { @@ -3814,8 +3522,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_37" + } }, { "calculated data name": "ToPercent", @@ -3823,6 +3530,7 @@ "value": 59.9, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_38", "data source aggregate document": { "data source document": [ { @@ -3830,8 +3538,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_38" + } }, { "calculated data name": "CalibratedQuantity", @@ -3839,6 +3546,7 @@ "value": 298.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_40", "data source aggregate document": { "data source document": [ { @@ -3846,8 +3554,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_40" + } }, { "calculated data name": "FromPercent", @@ -3855,6 +3562,7 @@ "value": 49.4, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_41", "data source aggregate document": { "data source document": [ { @@ -3862,8 +3570,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_41" + } }, { "calculated data name": "Molarity", @@ -3871,6 +3578,7 @@ "value": 1530.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_42", "data source aggregate document": { "data source document": [ { @@ -3878,8 +3586,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_42" + } }, { "calculated data name": "RunDistance", @@ -3887,6 +3594,7 @@ "value": 52.5, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_43", "data source aggregate document": { "data source document": [ { @@ -3894,8 +3602,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_43" + } }, { "calculated data name": "ToPercent", @@ -3903,6 +3610,7 @@ "value": 55.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_44", "data source aggregate document": { "data source document": [ { @@ -3910,8 +3618,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_44" + } }, { "calculated data name": "CalibratedQuantity", @@ -3919,6 +3626,7 @@ "value": 241.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_46", "data source aggregate document": { "data source document": [ { @@ -3926,8 +3634,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_46" + } }, { "calculated data name": "FromPercent", @@ -3935,6 +3642,7 @@ "value": 45.4, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_47", "data source aggregate document": { "data source document": [ { @@ -3942,8 +3650,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_47" + } }, { "calculated data name": "Molarity", @@ -3951,6 +3658,7 @@ "value": 927.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_48", "data source aggregate document": { "data source document": [ { @@ -3958,8 +3666,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_48" + } }, { "calculated data name": "RunDistance", @@ -3967,6 +3674,7 @@ "value": 47.8, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_49", "data source aggregate document": { "data source document": [ { @@ -3974,8 +3682,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_49" + } }, { "calculated data name": "ToPercent", @@ -3983,6 +3690,7 @@ "value": 49.4, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_50", "data source aggregate document": { "data source document": [ { @@ -3990,8 +3698,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_50" + } }, { "calculated data name": "CalibratedQuantity", @@ -3999,6 +3706,7 @@ "value": 311.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_52", "data source aggregate document": { "data source document": [ { @@ -4006,8 +3714,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_52" + } }, { "calculated data name": "FromPercent", @@ -4015,6 +3722,7 @@ "value": 40.9, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_53", "data source aggregate document": { "data source document": [ { @@ -4022,8 +3730,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_53" + } }, { "calculated data name": "Molarity", @@ -4031,6 +3738,7 @@ "value": 957.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_54", "data source aggregate document": { "data source document": [ { @@ -4038,8 +3746,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_54" + } }, { "calculated data name": "RunDistance", @@ -4047,6 +3754,7 @@ "value": 43.3, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_55", "data source aggregate document": { "data source document": [ { @@ -4054,8 +3762,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_55" + } }, { "calculated data name": "ToPercent", @@ -4063,6 +3770,7 @@ "value": 45.4, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_56", "data source aggregate document": { "data source document": [ { @@ -4070,8 +3778,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_56" + } }, { "calculated data name": "CalibratedQuantity", @@ -4079,6 +3786,7 @@ "value": 276.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_58", "data source aggregate document": { "data source document": [ { @@ -4086,8 +3794,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_58" + } }, { "calculated data name": "FromPercent", @@ -4095,6 +3802,7 @@ "value": 37.6, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_59", "data source aggregate document": { "data source document": [ { @@ -4102,8 +3810,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_59" + } }, { "calculated data name": "Molarity", @@ -4111,6 +3818,7 @@ "value": 708.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_60", "data source aggregate document": { "data source document": [ { @@ -4118,8 +3826,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_60" + } }, { "calculated data name": "RunDistance", @@ -4127,6 +3834,7 @@ "value": 39.7, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_61", "data source aggregate document": { "data source document": [ { @@ -4134,8 +3842,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_61" + } }, { "calculated data name": "ToPercent", @@ -4143,6 +3850,7 @@ "value": 40.9, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_62", "data source aggregate document": { "data source document": [ { @@ -4150,8 +3858,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_62" + } }, { "calculated data name": "CalibratedQuantity", @@ -4159,6 +3866,7 @@ "value": 317.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_64", "data source aggregate document": { "data source document": [ { @@ -4166,8 +3874,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_64" + } }, { "calculated data name": "FromPercent", @@ -4175,6 +3882,7 @@ "value": 31.8, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_65", "data source aggregate document": { "data source document": [ { @@ -4182,8 +3890,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_65" + } }, { "calculated data name": "Molarity", @@ -4191,6 +3898,7 @@ "value": 697.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_66", "data source aggregate document": { "data source document": [ { @@ -4198,8 +3906,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_66" + } }, { "calculated data name": "RunDistance", @@ -4207,6 +3914,7 @@ "value": 35.9, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_67", "data source aggregate document": { "data source document": [ { @@ -4214,8 +3922,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_67" + } }, { "calculated data name": "ToPercent", @@ -4223,6 +3930,7 @@ "value": 37.6, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_68", "data source aggregate document": { "data source document": [ { @@ -4230,8 +3938,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_68" + } }, { "calculated data name": "CalibratedQuantity", @@ -4239,6 +3946,7 @@ "value": 279.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_70", "data source aggregate document": { "data source document": [ { @@ -4246,8 +3954,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_70" + } }, { "calculated data name": "FromPercent", @@ -4255,6 +3962,7 @@ "value": 25.2, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_71", "data source aggregate document": { "data source document": [ { @@ -4262,8 +3970,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_71" + } }, { "calculated data name": "Molarity", @@ -4271,6 +3978,7 @@ "value": 429.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_72", "data source aggregate document": { "data source document": [ { @@ -4278,8 +3986,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_72" + } }, { "calculated data name": "RunDistance", @@ -4287,6 +3994,7 @@ "value": 29.8, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_73", "data source aggregate document": { "data source document": [ { @@ -4294,8 +4002,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_73" + } }, { "calculated data name": "ToPercent", @@ -4303,6 +4010,7 @@ "value": 31.8, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_74", "data source aggregate document": { "data source document": [ { @@ -4310,8 +4018,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_74" + } }, { "calculated data name": "Concentration", @@ -4319,6 +4026,7 @@ "value": 646.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_76", "data source aggregate document": { "data source document": [ { @@ -4326,8 +4034,7 @@ "data source feature": "sample" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_76" + } }, { "calculated data name": "PercentageCfDNA", @@ -4335,6 +4042,7 @@ "value": 49.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_77", "data source aggregate document": { "data source document": [ { @@ -4342,8 +4050,7 @@ "data source feature": "sample" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_77" + } }, { "calculated data name": "AssignedQuantity", @@ -4351,6 +4058,7 @@ "value": 275.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_79", "data source aggregate document": { "data source document": [ { @@ -4358,8 +4066,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_79" + } }, { "calculated data name": "CalibratedQuantity", @@ -4367,6 +4074,7 @@ "value": 275.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_80", "data source aggregate document": { "data source document": [ { @@ -4374,8 +4082,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_80" + } }, { "calculated data name": "FromPercent", @@ -4383,6 +4090,7 @@ "value": 80.3, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_81", "data source aggregate document": { "data source document": [ { @@ -4390,8 +4098,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_81" + } }, { "calculated data name": "Molarity", @@ -4399,6 +4106,7 @@ "value": 12100.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_82", "data source aggregate document": { "data source document": [ { @@ -4406,8 +4114,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_82" + } }, { "calculated data name": "RunDistance", @@ -4415,6 +4122,7 @@ "value": 86.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_83", "data source aggregate document": { "data source document": [ { @@ -4422,8 +4130,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_83" + } }, { "calculated data name": "ToPercent", @@ -4431,6 +4138,7 @@ "value": 90.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_84", "data source aggregate document": { "data source document": [ { @@ -4438,8 +4146,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_84" + } }, { "calculated data name": "CalibratedQuantity", @@ -4447,6 +4154,7 @@ "value": 124.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_86", "data source aggregate document": { "data source document": [ { @@ -4454,8 +4162,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_86" + } }, { "calculated data name": "FromPercent", @@ -4463,6 +4170,7 @@ "value": 51.7, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_87", "data source aggregate document": { "data source document": [ { @@ -4470,8 +4178,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_87" + } }, { "calculated data name": "Molarity", @@ -4479,6 +4186,7 @@ "value": 987.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_88", "data source aggregate document": { "data source document": [ { @@ -4486,8 +4194,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_88" + } }, { "calculated data name": "RunDistance", @@ -4495,6 +4202,7 @@ "value": 58.2, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_89", "data source aggregate document": { "data source document": [ { @@ -4502,8 +4210,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_89" + } }, { "calculated data name": "ToPercent", @@ -4511,6 +4218,7 @@ "value": 64.3, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_90", "data source aggregate document": { "data source document": [ { @@ -4518,8 +4226,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_90" + } }, { "calculated data name": "CalibratedQuantity", @@ -4527,6 +4234,7 @@ "value": 112.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_92", "data source aggregate document": { "data source document": [ { @@ -4534,8 +4242,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_92" + } }, { "calculated data name": "FromPercent", @@ -4543,6 +4250,7 @@ "value": 42.1, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_93", "data source aggregate document": { "data source document": [ { @@ -4550,8 +4258,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_93" + } }, { "calculated data name": "Molarity", @@ -4559,6 +4266,7 @@ "value": 409.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_94", "data source aggregate document": { "data source document": [ { @@ -4566,8 +4274,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_94" + } }, { "calculated data name": "RunDistance", @@ -4575,6 +4282,7 @@ "value": 46.4, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_95", "data source aggregate document": { "data source document": [ { @@ -4582,8 +4290,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_95" + } }, { "calculated data name": "ToPercent", @@ -4591,6 +4298,7 @@ "value": 51.7, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_96", "data source aggregate document": { "data source document": [ { @@ -4598,8 +4306,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_96" + } }, { "calculated data name": "CalibratedQuantity", @@ -4607,6 +4314,7 @@ "value": 46.1, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_98", "data source aggregate document": { "data source document": [ { @@ -4614,8 +4322,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_98" + } }, { "calculated data name": "FromPercent", @@ -4623,6 +4330,7 @@ "value": 38.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_99", "data source aggregate document": { "data source document": [ { @@ -4630,8 +4338,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_99" + } }, { "calculated data name": "Molarity", @@ -4639,6 +4346,7 @@ "value": 114.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_100", "data source aggregate document": { "data source document": [ { @@ -4646,8 +4354,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_100" + } }, { "calculated data name": "RunDistance", @@ -4655,6 +4362,7 @@ "value": 38.4, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_101", "data source aggregate document": { "data source document": [ { @@ -4662,8 +4370,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_101" + } }, { "calculated data name": "ToPercent", @@ -4671,6 +4378,7 @@ "value": 42.1, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_102", "data source aggregate document": { "data source document": [ { @@ -4678,8 +4386,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_102" + } }, { "calculated data name": "CalibratedQuantity", @@ -4687,6 +4394,7 @@ "value": 219.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_104", "data source aggregate document": { "data source document": [ { @@ -4694,8 +4402,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_104" + } }, { "calculated data name": "FromPercent", @@ -4703,6 +4410,7 @@ "value": 14.2, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_105", "data source aggregate document": { "data source document": [ { @@ -4710,8 +4418,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_105" + } }, { "calculated data name": "RunDistance", @@ -4719,6 +4426,7 @@ "value": 21.7, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_106", "data source aggregate document": { "data source document": [ { @@ -4726,8 +4434,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_106" + } }, { "calculated data name": "ToPercent", @@ -4735,6 +4442,7 @@ "value": 26.8, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_107", "data source aggregate document": { "data source document": [ { @@ -4742,8 +4450,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_107" + } }, { "calculated data name": "AverageSize", @@ -4751,6 +4458,7 @@ "value": 375.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_109", "data source aggregate document": { "data source document": [ { @@ -4758,8 +4466,7 @@ "data source feature": "data region" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_109" + } }, { "calculated data name": "Concentration", @@ -4767,6 +4474,7 @@ "value": 316.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_110", "data source aggregate document": { "data source document": [ { @@ -4774,8 +4482,7 @@ "data source feature": "data region" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_110" + } }, { "calculated data name": "Molarity", @@ -4783,6 +4490,7 @@ "value": 1770.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_111", "data source aggregate document": { "data source document": [ { @@ -4790,8 +4498,7 @@ "data source feature": "data region" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_111" + } }, { "calculated data name": "Concentration", @@ -4799,6 +4506,7 @@ "value": 1290.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_113", "data source aggregate document": { "data source document": [ { @@ -4806,8 +4514,7 @@ "data source feature": "sample" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_113" + } }, { "calculated data name": "PercentageCfDNA", @@ -4815,6 +4522,7 @@ "value": 93.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_114", "data source aggregate document": { "data source document": [ { @@ -4822,8 +4530,7 @@ "data source feature": "sample" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_114" + } }, { "calculated data name": "AssignedQuantity", @@ -4831,6 +4538,7 @@ "value": 275.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_116", "data source aggregate document": { "data source document": [ { @@ -4838,8 +4546,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_116" + } }, { "calculated data name": "CalibratedQuantity", @@ -4847,6 +4554,7 @@ "value": 275.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_117", "data source aggregate document": { "data source document": [ { @@ -4854,8 +4562,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_117" + } }, { "calculated data name": "FromPercent", @@ -4863,6 +4570,7 @@ "value": 77.2, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_118", "data source aggregate document": { "data source document": [ { @@ -4870,8 +4578,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_118" + } }, { "calculated data name": "Molarity", @@ -4879,6 +4586,7 @@ "value": 12100.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_119", "data source aggregate document": { "data source document": [ { @@ -4886,8 +4594,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_119" + } }, { "calculated data name": "RunDistance", @@ -4895,6 +4602,7 @@ "value": 81.6, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_120", "data source aggregate document": { "data source document": [ { @@ -4902,8 +4610,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_120" + } }, { "calculated data name": "ToPercent", @@ -4911,6 +4618,7 @@ "value": 85.4, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_121", "data source aggregate document": { "data source document": [ { @@ -4918,8 +4626,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_121" + } }, { "calculated data name": "CalibratedQuantity", @@ -4927,6 +4634,7 @@ "value": 957.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_123", "data source aggregate document": { "data source document": [ { @@ -4934,8 +4642,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_123" + } }, { "calculated data name": "FromPercent", @@ -4943,6 +4650,7 @@ "value": 49.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_124", "data source aggregate document": { "data source document": [ { @@ -4950,8 +4658,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_124" + } }, { "calculated data name": "Molarity", @@ -4959,6 +4666,7 @@ "value": 8370.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_125", "data source aggregate document": { "data source document": [ { @@ -4966,8 +4674,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_125" + } }, { "calculated data name": "RunDistance", @@ -4975,6 +4682,7 @@ "value": 56.6, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_126", "data source aggregate document": { "data source document": [ { @@ -4982,8 +4690,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_126" + } }, { "calculated data name": "ToPercent", @@ -4991,6 +4698,7 @@ "value": 62.9, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_127", "data source aggregate document": { "data source document": [ { @@ -4998,8 +4706,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_127" + } }, { "calculated data name": "CalibratedQuantity", @@ -5007,6 +4714,7 @@ "value": 106.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_129", "data source aggregate document": { "data source document": [ { @@ -5014,8 +4722,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_129" + } }, { "calculated data name": "FromPercent", @@ -5023,6 +4730,7 @@ "value": 42.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_130", "data source aggregate document": { "data source document": [ { @@ -5030,8 +4738,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_130" + } }, { "calculated data name": "Molarity", @@ -5039,6 +4746,7 @@ "value": 457.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_131", "data source aggregate document": { "data source document": [ { @@ -5046,8 +4754,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_131" + } }, { "calculated data name": "RunDistance", @@ -5055,6 +4762,7 @@ "value": 46.9, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_132", "data source aggregate document": { "data source document": [ { @@ -5062,8 +4770,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_132" + } }, { "calculated data name": "ToPercent", @@ -5071,6 +4778,7 @@ "value": 47.3, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_133", "data source aggregate document": { "data source document": [ { @@ -5078,8 +4786,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_133" + } }, { "calculated data name": "AverageSize", @@ -5087,6 +4794,7 @@ "value": 249.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_135", "data source aggregate document": { "data source document": [ { @@ -5094,8 +4802,7 @@ "data source feature": "data region" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_135" + } }, { "calculated data name": "Concentration", @@ -5103,6 +4810,7 @@ "value": 1200.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_136", "data source aggregate document": { "data source document": [ { @@ -5110,8 +4818,7 @@ "data source feature": "data region" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_136" + } }, { "calculated data name": "Molarity", @@ -5119,6 +4826,7 @@ "value": 8960.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_137", "data source aggregate document": { "data source document": [ { @@ -5126,8 +4834,7 @@ "data source feature": "data region" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_137" + } }, { "calculated data name": "Concentration", @@ -5135,6 +4842,7 @@ "value": 2230.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_139", "data source aggregate document": { "data source document": [ { @@ -5142,8 +4850,7 @@ "data source feature": "sample" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_139" + } }, { "calculated data name": "PercentageCfDNA", @@ -5151,6 +4858,7 @@ "value": 97.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_140", "data source aggregate document": { "data source document": [ { @@ -5158,8 +4866,7 @@ "data source feature": "sample" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_140" + } }, { "calculated data name": "AssignedQuantity", @@ -5167,6 +4874,7 @@ "value": 275.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_142", "data source aggregate document": { "data source document": [ { @@ -5174,8 +4882,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_142" + } }, { "calculated data name": "CalibratedQuantity", @@ -5183,6 +4890,7 @@ "value": 275.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_143", "data source aggregate document": { "data source document": [ { @@ -5190,8 +4898,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_143" + } }, { "calculated data name": "FromPercent", @@ -5199,6 +4906,7 @@ "value": 76.8, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_144", "data source aggregate document": { "data source document": [ { @@ -5206,8 +4914,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_144" + } }, { "calculated data name": "Molarity", @@ -5215,6 +4922,7 @@ "value": 12100.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_145", "data source aggregate document": { "data source document": [ { @@ -5222,8 +4930,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_145" + } }, { "calculated data name": "RunDistance", @@ -5231,6 +4938,7 @@ "value": 83.7, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_146", "data source aggregate document": { "data source document": [ { @@ -5238,8 +4946,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_146" + } }, { "calculated data name": "ToPercent", @@ -5247,6 +4954,7 @@ "value": 87.9, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_147", "data source aggregate document": { "data source document": [ { @@ -5254,8 +4962,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_147" + } }, { "calculated data name": "CalibratedQuantity", @@ -5263,6 +4970,7 @@ "value": 2070.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_149", "data source aggregate document": { "data source document": [ { @@ -5270,8 +4978,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_149" + } }, { "calculated data name": "FromPercent", @@ -5279,6 +4986,7 @@ "value": 48.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_150", "data source aggregate document": { "data source document": [ { @@ -5286,8 +4994,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_150" + } }, { "calculated data name": "Molarity", @@ -5295,6 +5002,7 @@ "value": 20400.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_151", "data source aggregate document": { "data source document": [ { @@ -5302,8 +5010,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_151" + } }, { "calculated data name": "RunDistance", @@ -5311,6 +5018,7 @@ "value": 59.8, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_152", "data source aggregate document": { "data source document": [ { @@ -5318,8 +5026,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_152" + } }, { "calculated data name": "ToPercent", @@ -5327,6 +5034,7 @@ "value": 67.2, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_153", "data source aggregate document": { "data source document": [ { @@ -5334,8 +5042,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_153" + } }, { "calculated data name": "CalibratedQuantity", @@ -5343,6 +5050,7 @@ "value": 58.4, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_155", "data source aggregate document": { "data source document": [ { @@ -5350,8 +5058,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_155" + } }, { "calculated data name": "FromPercent", @@ -5359,6 +5066,7 @@ "value": 17.5, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_156", "data source aggregate document": { "data source document": [ { @@ -5366,8 +5074,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_156" + } }, { "calculated data name": "RunDistance", @@ -5375,6 +5082,7 @@ "value": 22.7, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_157", "data source aggregate document": { "data source document": [ { @@ -5382,8 +5090,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_157" + } }, { "calculated data name": "ToPercent", @@ -5391,6 +5098,7 @@ "value": 26.8, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_158", "data source aggregate document": { "data source document": [ { @@ -5398,8 +5106,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_158" + } }, { "calculated data name": "AverageSize", @@ -5407,6 +5114,7 @@ "value": 194.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_160", "data source aggregate document": { "data source document": [ { @@ -5414,8 +5122,7 @@ "data source feature": "data region" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_160" + } }, { "calculated data name": "Concentration", @@ -5423,6 +5130,7 @@ "value": 2160.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_161", "data source aggregate document": { "data source document": [ { @@ -5430,8 +5138,7 @@ "data source feature": "data region" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_161" + } }, { "calculated data name": "Molarity", @@ -5439,6 +5146,7 @@ "value": 19800.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_162", "data source aggregate document": { "data source document": [ { @@ -5446,8 +5154,7 @@ "data source feature": "data region" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_162" + } }, { "calculated data name": "Concentration", @@ -5455,6 +5162,7 @@ "value": 3070.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_164", "data source aggregate document": { "data source document": [ { @@ -5462,8 +5170,7 @@ "data source feature": "sample" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_164" + } }, { "calculated data name": "PercentageCfDNA", @@ -5471,6 +5178,7 @@ "value": 36.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_165", "data source aggregate document": { "data source document": [ { @@ -5478,8 +5186,7 @@ "data source feature": "sample" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_165" + } }, { "calculated data name": "AssignedQuantity", @@ -5487,6 +5194,7 @@ "value": 275.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_167", "data source aggregate document": { "data source document": [ { @@ -5494,8 +5202,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_167" + } }, { "calculated data name": "CalibratedQuantity", @@ -5503,6 +5210,7 @@ "value": 275.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_168", "data source aggregate document": { "data source document": [ { @@ -5510,8 +5218,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_168" + } }, { "calculated data name": "FromPercent", @@ -5519,6 +5226,7 @@ "value": 84.2, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_169", "data source aggregate document": { "data source document": [ { @@ -5526,8 +5234,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_169" + } }, { "calculated data name": "Molarity", @@ -5535,6 +5242,7 @@ "value": 12100.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_170", "data source aggregate document": { "data source document": [ { @@ -5542,8 +5250,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_170" + } }, { "calculated data name": "RunDistance", @@ -5551,6 +5258,7 @@ "value": 89.1, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_171", "data source aggregate document": { "data source document": [ { @@ -5558,8 +5266,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_171" + } }, { "calculated data name": "ToPercent", @@ -5567,6 +5274,7 @@ "value": 92.7, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_172", "data source aggregate document": { "data source document": [ { @@ -5574,8 +5282,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_172" + } }, { "calculated data name": "CalibratedQuantity", @@ -5583,6 +5290,7 @@ "value": 196.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_174", "data source aggregate document": { "data source document": [ { @@ -5590,8 +5298,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_174" + } }, { "calculated data name": "FromPercent", @@ -5599,6 +5306,7 @@ "value": 58.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_175", "data source aggregate document": { "data source document": [ { @@ -5606,8 +5314,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_175" + } }, { "calculated data name": "Molarity", @@ -5615,6 +5322,7 @@ "value": 1360.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_176", "data source aggregate document": { "data source document": [ { @@ -5622,8 +5330,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_176" + } }, { "calculated data name": "RunDistance", @@ -5631,6 +5338,7 @@ "value": 58.4, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_177", "data source aggregate document": { "data source document": [ { @@ -5638,8 +5346,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_177" + } }, { "calculated data name": "ToPercent", @@ -5647,6 +5354,7 @@ "value": 67.8, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_178", "data source aggregate document": { "data source document": [ { @@ -5654,8 +5362,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_178" + } }, { "calculated data name": "CalibratedQuantity", @@ -5663,6 +5370,7 @@ "value": 1780.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_180", "data source aggregate document": { "data source document": [ { @@ -5670,8 +5378,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_180" + } }, { "calculated data name": "FromPercent", @@ -5679,6 +5386,7 @@ "value": 14.7, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_181", "data source aggregate document": { "data source document": [ { @@ -5686,8 +5394,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_181" + } }, { "calculated data name": "RunDistance", @@ -5695,6 +5402,7 @@ "value": 23.7, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_182", "data source aggregate document": { "data source document": [ { @@ -5702,8 +5410,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_182" + } }, { "calculated data name": "ToPercent", @@ -5711,6 +5418,7 @@ "value": 34.1, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_183", "data source aggregate document": { "data source document": [ { @@ -5718,8 +5426,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_183" + } }, { "calculated data name": "AverageSize", @@ -5727,6 +5434,7 @@ "value": 419.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_185", "data source aggregate document": { "data source document": [ { @@ -5734,8 +5442,7 @@ "data source feature": "data region" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_185" + } }, { "calculated data name": "Concentration", @@ -5743,6 +5450,7 @@ "value": 1120.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_186", "data source aggregate document": { "data source document": [ { @@ -5750,8 +5458,7 @@ "data source feature": "data region" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_186" + } }, { "calculated data name": "Molarity", @@ -5759,6 +5466,7 @@ "value": 5260.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_187", "data source aggregate document": { "data source document": [ { @@ -5766,8 +5474,7 @@ "data source feature": "data region" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_187" + } }, { "calculated data name": "Concentration", @@ -5775,6 +5482,7 @@ "value": 375.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_189", "data source aggregate document": { "data source document": [ { @@ -5782,8 +5490,7 @@ "data source feature": "sample" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_189" + } }, { "calculated data name": "PercentageCfDNA", @@ -5791,6 +5498,7 @@ "value": 41.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_190", "data source aggregate document": { "data source document": [ { @@ -5798,8 +5506,7 @@ "data source feature": "sample" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_190" + } }, { "calculated data name": "AssignedQuantity", @@ -5807,6 +5514,7 @@ "value": 275.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_192", "data source aggregate document": { "data source document": [ { @@ -5814,8 +5522,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_192" + } }, { "calculated data name": "CalibratedQuantity", @@ -5823,6 +5530,7 @@ "value": 275.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_193", "data source aggregate document": { "data source document": [ { @@ -5830,8 +5538,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_193" + } }, { "calculated data name": "FromPercent", @@ -5839,6 +5546,7 @@ "value": 74.1, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_194", "data source aggregate document": { "data source document": [ { @@ -5846,8 +5554,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_194" + } }, { "calculated data name": "Molarity", @@ -5855,6 +5562,7 @@ "value": 12100.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_195", "data source aggregate document": { "data source document": [ { @@ -5862,8 +5570,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_195" + } }, { "calculated data name": "RunDistance", @@ -5871,6 +5578,7 @@ "value": 79.5, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_196", "data source aggregate document": { "data source document": [ { @@ -5878,8 +5586,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_196" + } }, { "calculated data name": "ToPercent", @@ -5887,6 +5594,7 @@ "value": 81.9, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_197", "data source aggregate document": { "data source document": [ { @@ -5894,8 +5602,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_197" + } }, { "calculated data name": "CalibratedQuantity", @@ -5903,6 +5610,7 @@ "value": 7.2, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_199", "data source aggregate document": { "data source document": [ { @@ -5910,8 +5618,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_199" + } }, { "calculated data name": "FromPercent", @@ -5919,6 +5626,7 @@ "value": 48.4, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_200", "data source aggregate document": { "data source document": [ { @@ -5926,8 +5634,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_200" + } }, { "calculated data name": "Molarity", @@ -5935,6 +5642,7 @@ "value": 38.7, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_201", "data source aggregate document": { "data source document": [ { @@ -5942,8 +5650,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_201" + } }, { "calculated data name": "RunDistance", @@ -5951,6 +5658,7 @@ "value": 48.9, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_202", "data source aggregate document": { "data source document": [ { @@ -5958,8 +5666,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_202" + } }, { "calculated data name": "ToPercent", @@ -5967,6 +5674,7 @@ "value": 49.3, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_203", "data source aggregate document": { "data source document": [ { @@ -5974,8 +5682,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_203" + } }, { "calculated data name": "CalibratedQuantity", @@ -5983,6 +5690,7 @@ "value": 191.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_205", "data source aggregate document": { "data source document": [ { @@ -5990,8 +5698,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_205" + } }, { "calculated data name": "FromPercent", @@ -5999,6 +5706,7 @@ "value": 15.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_206", "data source aggregate document": { "data source document": [ { @@ -6006,8 +5714,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_206" + } }, { "calculated data name": "RunDistance", @@ -6015,6 +5722,7 @@ "value": 19.2, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_207", "data source aggregate document": { "data source document": [ { @@ -6022,8 +5730,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_207" + } }, { "calculated data name": "ToPercent", @@ -6031,6 +5738,7 @@ "value": 26.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_208", "data source aggregate document": { "data source document": [ { @@ -6038,8 +5746,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_208" + } }, { "calculated data name": "AverageSize", @@ -6047,6 +5754,7 @@ "value": 334.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_210", "data source aggregate document": { "data source document": [ { @@ -6054,8 +5762,7 @@ "data source feature": "data region" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_210" + } }, { "calculated data name": "Concentration", @@ -6063,6 +5770,7 @@ "value": 153.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_211", "data source aggregate document": { "data source document": [ { @@ -6070,8 +5778,7 @@ "data source feature": "data region" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_211" + } }, { "calculated data name": "Molarity", @@ -6079,6 +5786,7 @@ "value": 951.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_212", "data source aggregate document": { "data source document": [ { @@ -6086,8 +5794,7 @@ "data source feature": "data region" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_212" + } }, { "calculated data name": "Concentration", @@ -6095,6 +5802,7 @@ "value": 234.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_214", "data source aggregate document": { "data source document": [ { @@ -6102,8 +5810,7 @@ "data source feature": "sample" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_214" + } }, { "calculated data name": "PercentageCfDNA", @@ -6111,6 +5818,7 @@ "value": 64.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_215", "data source aggregate document": { "data source document": [ { @@ -6118,8 +5826,7 @@ "data source feature": "sample" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_215" + } }, { "calculated data name": "AssignedQuantity", @@ -6127,6 +5834,7 @@ "value": 275.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_217", "data source aggregate document": { "data source document": [ { @@ -6134,8 +5842,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_217" + } }, { "calculated data name": "CalibratedQuantity", @@ -6143,6 +5850,7 @@ "value": 275.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_218", "data source aggregate document": { "data source document": [ { @@ -6150,8 +5858,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_218" + } }, { "calculated data name": "FromPercent", @@ -6159,6 +5866,7 @@ "value": 80.7, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_219", "data source aggregate document": { "data source document": [ { @@ -6166,8 +5874,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_219" + } }, { "calculated data name": "Molarity", @@ -6175,6 +5882,7 @@ "value": 12100.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_220", "data source aggregate document": { "data source document": [ { @@ -6182,8 +5890,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_220" + } }, { "calculated data name": "RunDistance", @@ -6191,6 +5898,7 @@ "value": 85.4, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_221", "data source aggregate document": { "data source document": [ { @@ -6198,8 +5906,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_221" + } }, { "calculated data name": "ToPercent", @@ -6207,6 +5914,7 @@ "value": 88.4, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_222", "data source aggregate document": { "data source document": [ { @@ -6214,8 +5922,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_222" + } }, { "calculated data name": "CalibratedQuantity", @@ -6223,6 +5930,7 @@ "value": 76.3, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_224", "data source aggregate document": { "data source document": [ { @@ -6230,8 +5938,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_224" + } }, { "calculated data name": "FromPercent", @@ -6239,6 +5946,7 @@ "value": 50.6, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_225", "data source aggregate document": { "data source document": [ { @@ -6246,8 +5954,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_225" + } }, { "calculated data name": "Molarity", @@ -6255,6 +5962,7 @@ "value": 625.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_226", "data source aggregate document": { "data source document": [ { @@ -6262,8 +5970,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_226" + } }, { "calculated data name": "RunDistance", @@ -6271,6 +5978,7 @@ "value": 58.2, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_227", "data source aggregate document": { "data source document": [ { @@ -6278,8 +5986,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_227" + } }, { "calculated data name": "ToPercent", @@ -6287,6 +5994,7 @@ "value": 65.5, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_228", "data source aggregate document": { "data source document": [ { @@ -6294,8 +6002,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_228" + } }, { "calculated data name": "CalibratedQuantity", @@ -6303,6 +6010,7 @@ "value": 46.3, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_230", "data source aggregate document": { "data source document": [ { @@ -6310,8 +6018,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_230" + } }, { "calculated data name": "FromPercent", @@ -6319,6 +6026,7 @@ "value": 41.1, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_231", "data source aggregate document": { "data source document": [ { @@ -6326,8 +6034,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_231" + } }, { "calculated data name": "Molarity", @@ -6335,6 +6042,7 @@ "value": 167.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_232", "data source aggregate document": { "data source document": [ { @@ -6342,8 +6050,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_232" + } }, { "calculated data name": "RunDistance", @@ -6351,6 +6058,7 @@ "value": 45.9, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_233", "data source aggregate document": { "data source document": [ { @@ -6358,8 +6066,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_233" + } }, { "calculated data name": "ToPercent", @@ -6367,6 +6074,7 @@ "value": 50.6, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_234", "data source aggregate document": { "data source document": [ { @@ -6374,8 +6082,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_234" + } }, { "calculated data name": "CalibratedQuantity", @@ -6383,6 +6090,7 @@ "value": 27.6, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_236", "data source aggregate document": { "data source document": [ { @@ -6390,8 +6098,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_236" + } }, { "calculated data name": "FromPercent", @@ -6399,6 +6106,7 @@ "value": 34.5, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_237", "data source aggregate document": { "data source document": [ { @@ -6406,8 +6114,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_237" + } }, { "calculated data name": "Molarity", @@ -6415,6 +6122,7 @@ "value": 65.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_238", "data source aggregate document": { "data source document": [ { @@ -6422,8 +6130,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_238" + } }, { "calculated data name": "RunDistance", @@ -6431,6 +6138,7 @@ "value": 37.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_239", "data source aggregate document": { "data source document": [ { @@ -6438,8 +6146,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_239" + } }, { "calculated data name": "ToPercent", @@ -6447,6 +6154,7 @@ "value": 41.1, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_240", "data source aggregate document": { "data source document": [ { @@ -6454,8 +6162,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_240" + } }, { "calculated data name": "CalibratedQuantity", @@ -6463,6 +6170,7 @@ "value": 35.1, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_242", "data source aggregate document": { "data source document": [ { @@ -6470,8 +6178,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_242" + } }, { "calculated data name": "FromPercent", @@ -6479,6 +6186,7 @@ "value": 16.1, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_243", "data source aggregate document": { "data source document": [ { @@ -6486,8 +6194,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_243" + } }, { "calculated data name": "RunDistance", @@ -6495,6 +6202,7 @@ "value": 20.2, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_244", "data source aggregate document": { "data source document": [ { @@ -6502,8 +6210,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_244" + } }, { "calculated data name": "ToPercent", @@ -6511,6 +6218,7 @@ "value": 24.8, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_245", "data source aggregate document": { "data source document": [ { @@ -6518,8 +6226,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_245" + } }, { "calculated data name": "AverageSize", @@ -6527,6 +6234,7 @@ "value": 340.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_247", "data source aggregate document": { "data source document": [ { @@ -6534,8 +6242,7 @@ "data source feature": "data region" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_247" + } }, { "calculated data name": "Concentration", @@ -6543,6 +6250,7 @@ "value": 149.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_248", "data source aggregate document": { "data source document": [ { @@ -6550,8 +6258,7 @@ "data source feature": "data region" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_248" + } }, { "calculated data name": "Molarity", @@ -6559,6 +6266,7 @@ "value": 932.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_249", "data source aggregate document": { "data source document": [ { @@ -6566,8 +6274,7 @@ "data source feature": "data region" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_249" + } }, { "calculated data name": "Concentration", @@ -6575,6 +6282,7 @@ "value": 471.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_251", "data source aggregate document": { "data source document": [ { @@ -6582,8 +6290,7 @@ "data source feature": "sample" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_251" + } }, { "calculated data name": "PercentageCfDNA", @@ -6591,6 +6298,7 @@ "value": 47.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_252", "data source aggregate document": { "data source document": [ { @@ -6598,8 +6306,7 @@ "data source feature": "sample" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_252" + } }, { "calculated data name": "AssignedQuantity", @@ -6607,6 +6314,7 @@ "value": 275.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_254", "data source aggregate document": { "data source document": [ { @@ -6614,8 +6322,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_254" + } }, { "calculated data name": "CalibratedQuantity", @@ -6623,6 +6330,7 @@ "value": 275.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_255", "data source aggregate document": { "data source document": [ { @@ -6630,8 +6338,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_255" + } }, { "calculated data name": "FromPercent", @@ -6639,6 +6346,7 @@ "value": 76.7, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_256", "data source aggregate document": { "data source document": [ { @@ -6646,8 +6354,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_256" + } }, { "calculated data name": "Molarity", @@ -6655,6 +6362,7 @@ "value": 12100.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_257", "data source aggregate document": { "data source document": [ { @@ -6662,8 +6370,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_257" + } }, { "calculated data name": "RunDistance", @@ -6671,6 +6378,7 @@ "value": 84.7, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_258", "data source aggregate document": { "data source document": [ { @@ -6678,8 +6386,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_258" + } }, { "calculated data name": "ToPercent", @@ -6687,6 +6394,7 @@ "value": 88.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_259", "data source aggregate document": { "data source document": [ { @@ -6694,8 +6402,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_259" + } }, { "calculated data name": "CalibratedQuantity", @@ -6703,6 +6410,7 @@ "value": 90.2, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_261", "data source aggregate document": { "data source document": [ { @@ -6710,8 +6418,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_261" + } }, { "calculated data name": "FromPercent", @@ -6719,6 +6426,7 @@ "value": 51.3, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_262", "data source aggregate document": { "data source document": [ { @@ -6726,8 +6434,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_262" + } }, { "calculated data name": "Molarity", @@ -6735,6 +6442,7 @@ "value": 761.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_263", "data source aggregate document": { "data source document": [ { @@ -6742,8 +6450,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_263" + } }, { "calculated data name": "RunDistance", @@ -6751,6 +6458,7 @@ "value": 58.2, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_264", "data source aggregate document": { "data source document": [ { @@ -6758,8 +6466,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_264" + } }, { "calculated data name": "ToPercent", @@ -6767,6 +6474,7 @@ "value": 65.7, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_265", "data source aggregate document": { "data source document": [ { @@ -6774,8 +6482,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_265" + } }, { "calculated data name": "CalibratedQuantity", @@ -6783,6 +6490,7 @@ "value": 75.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_267", "data source aggregate document": { "data source document": [ { @@ -6790,8 +6498,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_267" + } }, { "calculated data name": "FromPercent", @@ -6799,6 +6506,7 @@ "value": 42.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_268", "data source aggregate document": { "data source document": [ { @@ -6806,8 +6514,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_268" + } }, { "calculated data name": "Molarity", @@ -6815,6 +6522,7 @@ "value": 289.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_269", "data source aggregate document": { "data source document": [ { @@ -6822,8 +6530,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_269" + } }, { "calculated data name": "RunDistance", @@ -6831,6 +6538,7 @@ "value": 46.8, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_270", "data source aggregate document": { "data source document": [ { @@ -6838,8 +6546,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_270" + } }, { "calculated data name": "ToPercent", @@ -6847,6 +6554,7 @@ "value": 51.3, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_271", "data source aggregate document": { "data source document": [ { @@ -6854,8 +6562,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_271" + } }, { "calculated data name": "CalibratedQuantity", @@ -6863,6 +6570,7 @@ "value": 57.2, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_273", "data source aggregate document": { "data source document": [ { @@ -6870,8 +6578,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_273" + } }, { "calculated data name": "FromPercent", @@ -6879,6 +6586,7 @@ "value": 34.8, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_274", "data source aggregate document": { "data source document": [ { @@ -6886,8 +6594,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_274" + } }, { "calculated data name": "Molarity", @@ -6895,6 +6602,7 @@ "value": 140.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_275", "data source aggregate document": { "data source document": [ { @@ -6902,8 +6610,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_275" + } }, { "calculated data name": "RunDistance", @@ -6911,6 +6618,7 @@ "value": 37.8, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_276", "data source aggregate document": { "data source document": [ { @@ -6918,8 +6626,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_276" + } }, { "calculated data name": "ToPercent", @@ -6927,6 +6634,7 @@ "value": 42.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_277", "data source aggregate document": { "data source document": [ { @@ -6934,8 +6642,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_277" + } }, { "calculated data name": "CalibratedQuantity", @@ -6943,6 +6650,7 @@ "value": 181.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_279", "data source aggregate document": { "data source document": [ { @@ -6950,8 +6658,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_279" + } }, { "calculated data name": "FromPercent", @@ -6959,6 +6666,7 @@ "value": 15.7, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_280", "data source aggregate document": { "data source document": [ { @@ -6966,8 +6674,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_280" + } }, { "calculated data name": "RunDistance", @@ -6975,6 +6682,7 @@ "value": 21.2, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_281", "data source aggregate document": { "data source document": [ { @@ -6982,8 +6690,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_281" + } }, { "calculated data name": "ToPercent", @@ -6991,6 +6698,7 @@ "value": 27.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_282", "data source aggregate document": { "data source document": [ { @@ -6998,8 +6706,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_282" + } }, { "calculated data name": "AverageSize", @@ -7007,6 +6714,7 @@ "value": 370.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_284", "data source aggregate document": { "data source document": [ { @@ -7014,8 +6722,7 @@ "data source feature": "data region" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_284" + } }, { "calculated data name": "Concentration", @@ -7023,6 +6730,7 @@ "value": 221.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_285", "data source aggregate document": { "data source document": [ { @@ -7030,8 +6738,7 @@ "data source feature": "data region" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_285" + } }, { "calculated data name": "Molarity", @@ -7039,6 +6746,7 @@ "value": 1210.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_286", "data source aggregate document": { "data source document": [ { @@ -7046,8 +6754,7 @@ "data source feature": "data region" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_286" + } }, { "calculated data name": "Concentration", @@ -7055,6 +6762,7 @@ "value": 404.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_288", "data source aggregate document": { "data source document": [ { @@ -7062,8 +6770,7 @@ "data source feature": "sample" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_288" + } }, { "calculated data name": "PercentageCfDNA", @@ -7071,6 +6778,7 @@ "value": 52.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_289", "data source aggregate document": { "data source document": [ { @@ -7078,8 +6786,7 @@ "data source feature": "sample" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_289" + } }, { "calculated data name": "AssignedQuantity", @@ -7087,6 +6794,7 @@ "value": 275.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_291", "data source aggregate document": { "data source document": [ { @@ -7094,8 +6802,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_291" + } }, { "calculated data name": "CalibratedQuantity", @@ -7103,6 +6810,7 @@ "value": 275.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_292", "data source aggregate document": { "data source document": [ { @@ -7110,8 +6818,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_292" + } }, { "calculated data name": "FromPercent", @@ -7119,6 +6826,7 @@ "value": 83.3, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_293", "data source aggregate document": { "data source document": [ { @@ -7126,8 +6834,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_293" + } }, { "calculated data name": "Molarity", @@ -7135,6 +6842,7 @@ "value": 12100.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_294", "data source aggregate document": { "data source document": [ { @@ -7142,8 +6850,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_294" + } }, { "calculated data name": "RunDistance", @@ -7151,6 +6858,7 @@ "value": 90.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_295", "data source aggregate document": { "data source document": [ { @@ -7158,8 +6866,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_295" + } }, { "calculated data name": "ToPercent", @@ -7167,6 +6874,7 @@ "value": 93.3, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_296", "data source aggregate document": { "data source document": [ { @@ -7174,8 +6882,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_296" + } }, { "calculated data name": "CalibratedQuantity", @@ -7183,6 +6890,7 @@ "value": 85.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_298", "data source aggregate document": { "data source document": [ { @@ -7190,8 +6898,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_298" + } }, { "calculated data name": "FromPercent", @@ -7199,6 +6906,7 @@ "value": 54.9, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_299", "data source aggregate document": { "data source document": [ { @@ -7206,8 +6914,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_299" + } }, { "calculated data name": "Molarity", @@ -7215,6 +6922,7 @@ "value": 717.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_300", "data source aggregate document": { "data source document": [ { @@ -7222,8 +6930,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_300" + } }, { "calculated data name": "RunDistance", @@ -7231,6 +6938,7 @@ "value": 61.9, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_301", "data source aggregate document": { "data source document": [ { @@ -7238,8 +6946,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_301" + } }, { "calculated data name": "ToPercent", @@ -7247,6 +6954,7 @@ "value": 69.2, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_302", "data source aggregate document": { "data source document": [ { @@ -7254,8 +6962,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_302" + } }, { "calculated data name": "CalibratedQuantity", @@ -7263,6 +6970,7 @@ "value": 67.9, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_304", "data source aggregate document": { "data source document": [ { @@ -7270,8 +6978,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_304" + } }, { "calculated data name": "FromPercent", @@ -7279,6 +6986,7 @@ "value": 45.6, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_305", "data source aggregate document": { "data source document": [ { @@ -7286,8 +6994,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_305" + } }, { "calculated data name": "Molarity", @@ -7295,6 +7002,7 @@ "value": 267.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_306", "data source aggregate document": { "data source document": [ { @@ -7302,8 +7010,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_306" + } }, { "calculated data name": "RunDistance", @@ -7311,6 +7018,7 @@ "value": 50.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_307", "data source aggregate document": { "data source document": [ { @@ -7318,8 +7026,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_307" + } }, { "calculated data name": "ToPercent", @@ -7327,6 +7034,7 @@ "value": 54.9, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_308", "data source aggregate document": { "data source document": [ { @@ -7334,8 +7042,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_308" + } }, { "calculated data name": "CalibratedQuantity", @@ -7343,6 +7050,7 @@ "value": 48.3, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_310", "data source aggregate document": { "data source document": [ { @@ -7350,8 +7058,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_310" + } }, { "calculated data name": "FromPercent", @@ -7359,6 +7066,7 @@ "value": 38.5, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_311", "data source aggregate document": { "data source document": [ { @@ -7366,8 +7074,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_311" + } }, { "calculated data name": "Molarity", @@ -7375,6 +7082,7 @@ "value": 124.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_312", "data source aggregate document": { "data source document": [ { @@ -7382,8 +7090,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_312" + } }, { "calculated data name": "RunDistance", @@ -7391,6 +7098,7 @@ "value": 41.2, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_313", "data source aggregate document": { "data source document": [ { @@ -7398,8 +7106,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_313" + } }, { "calculated data name": "ToPercent", @@ -7407,6 +7114,7 @@ "value": 45.6, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_314", "data source aggregate document": { "data source document": [ { @@ -7414,8 +7122,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_314" + } }, { "calculated data name": "CalibratedQuantity", @@ -7423,6 +7130,7 @@ "value": 136.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_316", "data source aggregate document": { "data source document": [ { @@ -7430,8 +7138,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_316" + } }, { "calculated data name": "FromPercent", @@ -7439,6 +7146,7 @@ "value": 18.2, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_317", "data source aggregate document": { "data source document": [ { @@ -7446,8 +7154,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_317" + } }, { "calculated data name": "RunDistance", @@ -7455,6 +7162,7 @@ "value": 23.3, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_318", "data source aggregate document": { "data source document": [ { @@ -7462,8 +7170,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_318" + } }, { "calculated data name": "ToPercent", @@ -7471,6 +7178,7 @@ "value": 28.9, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_319", "data source aggregate document": { "data source document": [ { @@ -7478,8 +7186,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_319" + } }, { "calculated data name": "AverageSize", @@ -7487,6 +7194,7 @@ "value": 361.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_321", "data source aggregate document": { "data source document": [ { @@ -7494,8 +7202,7 @@ "data source feature": "data region" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_321" + } }, { "calculated data name": "Concentration", @@ -7503,6 +7210,7 @@ "value": 210.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_322", "data source aggregate document": { "data source document": [ { @@ -7510,8 +7218,7 @@ "data source feature": "data region" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_322" + } }, { "calculated data name": "Molarity", @@ -7519,6 +7226,7 @@ "value": 1300.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_323", "data source aggregate document": { "data source document": [ { @@ -7526,8 +7234,7 @@ "data source feature": "data region" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_323" + } }, { "calculated data name": "Concentration", @@ -7535,6 +7242,7 @@ "value": 334.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_325", "data source aggregate document": { "data source document": [ { @@ -7542,8 +7250,7 @@ "data source feature": "sample" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_325" + } }, { "calculated data name": "PercentageCfDNA", @@ -7551,6 +7258,7 @@ "value": 56.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_326", "data source aggregate document": { "data source document": [ { @@ -7558,8 +7266,7 @@ "data source feature": "sample" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_326" + } }, { "calculated data name": "AssignedQuantity", @@ -7567,6 +7274,7 @@ "value": 275.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_328", "data source aggregate document": { "data source document": [ { @@ -7574,8 +7282,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_328" + } }, { "calculated data name": "CalibratedQuantity", @@ -7583,6 +7290,7 @@ "value": 275.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_329", "data source aggregate document": { "data source document": [ { @@ -7590,8 +7298,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_329" + } }, { "calculated data name": "FromPercent", @@ -7599,6 +7306,7 @@ "value": 84.3, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_330", "data source aggregate document": { "data source document": [ { @@ -7606,8 +7314,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_330" + } }, { "calculated data name": "Molarity", @@ -7615,6 +7322,7 @@ "value": 12100.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_331", "data source aggregate document": { "data source document": [ { @@ -7622,8 +7330,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_331" + } }, { "calculated data name": "RunDistance", @@ -7631,6 +7338,7 @@ "value": 89.3, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_332", "data source aggregate document": { "data source document": [ { @@ -7638,8 +7346,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_332" + } }, { "calculated data name": "ToPercent", @@ -7647,6 +7354,7 @@ "value": 93.7, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_333", "data source aggregate document": { "data source document": [ { @@ -7654,8 +7362,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_333" + } }, { "calculated data name": "CalibratedQuantity", @@ -7663,6 +7370,7 @@ "value": 84.9, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_335", "data source aggregate document": { "data source document": [ { @@ -7670,8 +7378,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_335" + } }, { "calculated data name": "FromPercent", @@ -7679,6 +7386,7 @@ "value": 53.9, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_336", "data source aggregate document": { "data source document": [ { @@ -7686,8 +7394,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_336" + } }, { "calculated data name": "Molarity", @@ -7695,6 +7402,7 @@ "value": 693.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_337", "data source aggregate document": { "data source document": [ { @@ -7702,8 +7410,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_337" + } }, { "calculated data name": "RunDistance", @@ -7711,6 +7418,7 @@ "value": 60.9, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_338", "data source aggregate document": { "data source document": [ { @@ -7718,8 +7426,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_338" + } }, { "calculated data name": "ToPercent", @@ -7727,6 +7434,7 @@ "value": 68.4, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_339", "data source aggregate document": { "data source document": [ { @@ -7734,8 +7442,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_339" + } }, { "calculated data name": "CalibratedQuantity", @@ -7743,6 +7450,7 @@ "value": 59.7, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_341", "data source aggregate document": { "data source document": [ { @@ -7750,8 +7458,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_341" + } }, { "calculated data name": "FromPercent", @@ -7759,6 +7466,7 @@ "value": 44.1, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_342", "data source aggregate document": { "data source document": [ { @@ -7766,8 +7474,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_342" + } }, { "calculated data name": "Molarity", @@ -7775,6 +7482,7 @@ "value": 223.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_343", "data source aggregate document": { "data source document": [ { @@ -7782,8 +7490,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_343" + } }, { "calculated data name": "RunDistance", @@ -7791,6 +7498,7 @@ "value": 48.7, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_344", "data source aggregate document": { "data source document": [ { @@ -7798,8 +7506,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_344" + } }, { "calculated data name": "ToPercent", @@ -7807,6 +7514,7 @@ "value": 53.9, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_345", "data source aggregate document": { "data source document": [ { @@ -7814,8 +7522,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_345" + } }, { "calculated data name": "CalibratedQuantity", @@ -7823,6 +7530,7 @@ "value": 80.7, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_347", "data source aggregate document": { "data source document": [ { @@ -7830,8 +7538,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_347" + } }, { "calculated data name": "FromPercent", @@ -7839,6 +7546,7 @@ "value": 15.9, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_348", "data source aggregate document": { "data source document": [ { @@ -7846,8 +7554,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_348" + } }, { "calculated data name": "RunDistance", @@ -7855,6 +7562,7 @@ "value": 22.2, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_349", "data source aggregate document": { "data source document": [ { @@ -7862,8 +7570,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_349" + } }, { "calculated data name": "ToPercent", @@ -7871,6 +7578,7 @@ "value": 27.4, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_350", "data source aggregate document": { "data source document": [ { @@ -7878,8 +7586,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_350" + } }, { "calculated data name": "AverageSize", @@ -7887,6 +7594,7 @@ "value": 355.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_352", "data source aggregate document": { "data source document": [ { @@ -7894,8 +7602,7 @@ "data source feature": "data region" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_352" + } }, { "calculated data name": "Concentration", @@ -7903,6 +7610,7 @@ "value": 187.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_353", "data source aggregate document": { "data source document": [ { @@ -7910,8 +7618,7 @@ "data source feature": "data region" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_353" + } }, { "calculated data name": "Molarity", @@ -7919,6 +7626,7 @@ "value": 1080.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_354", "data source aggregate document": { "data source document": [ { @@ -7926,8 +7634,7 @@ "data source feature": "data region" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_354" + } }, { "calculated data name": "Concentration", @@ -7935,6 +7642,7 @@ "value": 647.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_356", "data source aggregate document": { "data source document": [ { @@ -7942,8 +7650,7 @@ "data source feature": "sample" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_356" + } }, { "calculated data name": "PercentageCfDNA", @@ -7951,6 +7658,7 @@ "value": 87.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_357", "data source aggregate document": { "data source document": [ { @@ -7958,8 +7666,7 @@ "data source feature": "sample" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_357" + } }, { "calculated data name": "AssignedQuantity", @@ -7967,6 +7674,7 @@ "value": 275.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_359", "data source aggregate document": { "data source document": [ { @@ -7974,8 +7682,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_359" + } }, { "calculated data name": "CalibratedQuantity", @@ -7983,6 +7690,7 @@ "value": 275.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_360", "data source aggregate document": { "data source document": [ { @@ -7990,8 +7698,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_360" + } }, { "calculated data name": "FromPercent", @@ -7999,6 +7706,7 @@ "value": 81.9, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_361", "data source aggregate document": { "data source document": [ { @@ -8006,8 +7714,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_361" + } }, { "calculated data name": "Molarity", @@ -8015,6 +7722,7 @@ "value": 12100.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_362", "data source aggregate document": { "data source document": [ { @@ -8022,8 +7730,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_362" + } }, { "calculated data name": "RunDistance", @@ -8031,6 +7738,7 @@ "value": 88.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_363", "data source aggregate document": { "data source document": [ { @@ -8038,8 +7746,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_363" + } }, { "calculated data name": "ToPercent", @@ -8047,6 +7754,7 @@ "value": 92.4, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_364", "data source aggregate document": { "data source document": [ { @@ -8054,8 +7762,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_364" + } }, { "calculated data name": "CalibratedQuantity", @@ -8063,6 +7770,7 @@ "value": 448.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_366", "data source aggregate document": { "data source document": [ { @@ -8070,8 +7778,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_366" + } }, { "calculated data name": "FromPercent", @@ -8079,6 +7786,7 @@ "value": 52.6, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_367", "data source aggregate document": { "data source document": [ { @@ -8086,8 +7794,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_367" + } }, { "calculated data name": "Molarity", @@ -8095,6 +7802,7 @@ "value": 3760.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_368", "data source aggregate document": { "data source document": [ { @@ -8102,8 +7810,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_368" + } }, { "calculated data name": "RunDistance", @@ -8111,6 +7818,7 @@ "value": 60.4, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_369", "data source aggregate document": { "data source document": [ { @@ -8118,8 +7826,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_369" + } }, { "calculated data name": "ToPercent", @@ -8127,6 +7834,7 @@ "value": 67.5, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_370", "data source aggregate document": { "data source document": [ { @@ -8134,8 +7842,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_370" + } }, { "calculated data name": "CalibratedQuantity", @@ -8143,6 +7850,7 @@ "value": 80.6, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_372", "data source aggregate document": { "data source document": [ { @@ -8150,8 +7858,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_372" + } }, { "calculated data name": "FromPercent", @@ -8159,6 +7866,7 @@ "value": 43.2, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_373", "data source aggregate document": { "data source document": [ { @@ -8166,8 +7874,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_373" + } }, { "calculated data name": "Molarity", @@ -8175,6 +7882,7 @@ "value": 340.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_374", "data source aggregate document": { "data source document": [ { @@ -8182,8 +7890,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_374" + } }, { "calculated data name": "RunDistance", @@ -8191,6 +7898,7 @@ "value": 50.1, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_375", "data source aggregate document": { "data source document": [ { @@ -8198,8 +7906,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_375" + } }, { "calculated data name": "ToPercent", @@ -8207,6 +7914,7 @@ "value": 52.6, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_376", "data source aggregate document": { "data source document": [ { @@ -8214,8 +7922,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_376" + } }, { "calculated data name": "CalibratedQuantity", @@ -8223,6 +7930,7 @@ "value": 47.7, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_378", "data source aggregate document": { "data source document": [ { @@ -8230,8 +7938,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_378" + } }, { "calculated data name": "FromPercent", @@ -8239,6 +7946,7 @@ "value": 16.9, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_379", "data source aggregate document": { "data source document": [ { @@ -8246,8 +7954,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_379" + } }, { "calculated data name": "RunDistance", @@ -8255,6 +7962,7 @@ "value": 21.6, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_380", "data source aggregate document": { "data source document": [ { @@ -8262,8 +7970,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_380" + } }, { "calculated data name": "ToPercent", @@ -8271,6 +7978,7 @@ "value": 26.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_381", "data source aggregate document": { "data source document": [ { @@ -8278,8 +7986,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_381" + } }, { "calculated data name": "AverageSize", @@ -8287,6 +7994,7 @@ "value": 253.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_383", "data source aggregate document": { "data source document": [ { @@ -8294,8 +8002,7 @@ "data source feature": "data region" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_383" + } }, { "calculated data name": "Concentration", @@ -8303,6 +8010,7 @@ "value": 561.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_384", "data source aggregate document": { "data source document": [ { @@ -8310,8 +8018,7 @@ "data source feature": "data region" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_384" + } }, { "calculated data name": "Molarity", @@ -8319,6 +8026,7 @@ "value": 4070.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_385", "data source aggregate document": { "data source document": [ { @@ -8326,8 +8034,7 @@ "data source feature": "data region" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_385" + } }, { "calculated data name": "Concentration", @@ -8335,6 +8042,7 @@ "value": 963.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_387", "data source aggregate document": { "data source document": [ { @@ -8342,8 +8050,7 @@ "data source feature": "sample" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_387" + } }, { "calculated data name": "PercentageCfDNA", @@ -8351,6 +8058,7 @@ "value": 91.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_388", "data source aggregate document": { "data source document": [ { @@ -8358,8 +8066,7 @@ "data source feature": "sample" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_388" + } }, { "calculated data name": "AssignedQuantity", @@ -8367,6 +8074,7 @@ "value": 275.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_390", "data source aggregate document": { "data source document": [ { @@ -8374,8 +8082,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_390" + } }, { "calculated data name": "CalibratedQuantity", @@ -8383,6 +8090,7 @@ "value": 275.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_391", "data source aggregate document": { "data source document": [ { @@ -8390,8 +8098,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_391" + } }, { "calculated data name": "FromPercent", @@ -8399,6 +8106,7 @@ "value": 76.6, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_392", "data source aggregate document": { "data source document": [ { @@ -8406,8 +8114,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_392" + } }, { "calculated data name": "Molarity", @@ -8415,6 +8122,7 @@ "value": 12100.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_393", "data source aggregate document": { "data source document": [ { @@ -8422,8 +8130,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_393" + } }, { "calculated data name": "RunDistance", @@ -8431,6 +8138,7 @@ "value": 82.2, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_394", "data source aggregate document": { "data source document": [ { @@ -8438,8 +8146,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_394" + } }, { "calculated data name": "ToPercent", @@ -8447,6 +8154,7 @@ "value": 87.1, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_395", "data source aggregate document": { "data source document": [ { @@ -8454,8 +8162,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_395" + } }, { "calculated data name": "CalibratedQuantity", @@ -8463,6 +8170,7 @@ "value": 690.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_397", "data source aggregate document": { "data source document": [ { @@ -8470,8 +8178,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_397" + } }, { "calculated data name": "FromPercent", @@ -8479,6 +8186,7 @@ "value": 51.3, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_398", "data source aggregate document": { "data source document": [ { @@ -8486,8 +8194,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_398" + } }, { "calculated data name": "Molarity", @@ -8495,6 +8202,7 @@ "value": 6650.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_399", "data source aggregate document": { "data source document": [ { @@ -8502,8 +8210,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_399" + } }, { "calculated data name": "RunDistance", @@ -8511,6 +8218,7 @@ "value": 58.3, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_400", "data source aggregate document": { "data source document": [ { @@ -8518,8 +8226,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_400" + } }, { "calculated data name": "ToPercent", @@ -8527,6 +8234,7 @@ "value": 65.7, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_401", "data source aggregate document": { "data source document": [ { @@ -8534,8 +8242,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_401" + } }, { "calculated data name": "CalibratedQuantity", @@ -8543,6 +8250,7 @@ "value": 124.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_403", "data source aggregate document": { "data source document": [ { @@ -8550,8 +8258,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_403" + } }, { "calculated data name": "FromPercent", @@ -8559,6 +8266,7 @@ "value": 41.9, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_404", "data source aggregate document": { "data source document": [ { @@ -8566,8 +8274,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_404" + } }, { "calculated data name": "Molarity", @@ -8575,6 +8282,7 @@ "value": 582.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_405", "data source aggregate document": { "data source document": [ { @@ -8582,8 +8290,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_405" + } }, { "calculated data name": "RunDistance", @@ -8591,6 +8298,7 @@ "value": 48.4, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_406", "data source aggregate document": { "data source document": [ { @@ -8598,8 +8306,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_406" + } }, { "calculated data name": "ToPercent", @@ -8607,6 +8314,7 @@ "value": 51.3, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_407", "data source aggregate document": { "data source document": [ { @@ -8614,8 +8322,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_407" + } }, { "calculated data name": "CalibratedQuantity", @@ -8623,6 +8330,7 @@ "value": 7.44, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_409", "data source aggregate document": { "data source document": [ { @@ -8630,8 +8338,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_409" + } }, { "calculated data name": "FromPercent", @@ -8639,6 +8346,7 @@ "value": 37.3, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_410", "data source aggregate document": { "data source document": [ { @@ -8646,8 +8354,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_410" + } }, { "calculated data name": "Molarity", @@ -8655,6 +8362,7 @@ "value": 19.2, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_411", "data source aggregate document": { "data source document": [ { @@ -8662,8 +8370,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_411" + } }, { "calculated data name": "RunDistance", @@ -8671,6 +8378,7 @@ "value": 37.8, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_412", "data source aggregate document": { "data source document": [ { @@ -8678,8 +8386,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_412" + } }, { "calculated data name": "ToPercent", @@ -8687,6 +8394,7 @@ "value": 38.1, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_413", "data source aggregate document": { "data source document": [ { @@ -8694,8 +8402,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_413" + } }, { "calculated data name": "CalibratedQuantity", @@ -8703,6 +8410,7 @@ "value": 41.6, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_415", "data source aggregate document": { "data source document": [ { @@ -8710,8 +8418,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_415" + } }, { "calculated data name": "FromPercent", @@ -8719,6 +8426,7 @@ "value": 17.1, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_416", "data source aggregate document": { "data source document": [ { @@ -8726,8 +8434,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_416" + } }, { "calculated data name": "RunDistance", @@ -8735,6 +8442,7 @@ "value": 20.9, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_417", "data source aggregate document": { "data source document": [ { @@ -8742,8 +8450,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_417" + } }, { "calculated data name": "ToPercent", @@ -8751,6 +8458,7 @@ "value": 25.1, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_418", "data source aggregate document": { "data source document": [ { @@ -8758,8 +8466,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_418" + } }, { "calculated data name": "AverageSize", @@ -8767,6 +8474,7 @@ "value": 225.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_420", "data source aggregate document": { "data source document": [ { @@ -8774,8 +8482,7 @@ "data source feature": "data region" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_420" + } }, { "calculated data name": "Concentration", @@ -8783,6 +8490,7 @@ "value": 873.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_421", "data source aggregate document": { "data source document": [ { @@ -8790,8 +8498,7 @@ "data source feature": "data region" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_421" + } }, { "calculated data name": "Molarity", @@ -8799,6 +8506,7 @@ "value": 7200.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_422", "data source aggregate document": { "data source document": [ { @@ -8806,8 +8514,7 @@ "data source feature": "data region" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_422" + } }, { "calculated data name": "Concentration", @@ -8815,6 +8522,7 @@ "value": 575.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_424", "data source aggregate document": { "data source document": [ { @@ -8822,8 +8530,7 @@ "data source feature": "sample" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_424" + } }, { "calculated data name": "PercentageCfDNA", @@ -8831,6 +8538,7 @@ "value": 95.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_425", "data source aggregate document": { "data source document": [ { @@ -8838,8 +8546,7 @@ "data source feature": "sample" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_425" + } }, { "calculated data name": "AssignedQuantity", @@ -8847,6 +8554,7 @@ "value": 275.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_427", "data source aggregate document": { "data source document": [ { @@ -8854,8 +8562,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_427" + } }, { "calculated data name": "CalibratedQuantity", @@ -8863,6 +8570,7 @@ "value": 275.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_428", "data source aggregate document": { "data source document": [ { @@ -8870,8 +8578,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_428" + } }, { "calculated data name": "FromPercent", @@ -8879,6 +8586,7 @@ "value": 82.3, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_429", "data source aggregate document": { "data source document": [ { @@ -8886,8 +8594,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_429" + } }, { "calculated data name": "Molarity", @@ -8895,6 +8602,7 @@ "value": 12100.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_430", "data source aggregate document": { "data source document": [ { @@ -8902,8 +8610,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_430" + } }, { "calculated data name": "RunDistance", @@ -8911,6 +8618,7 @@ "value": 88.4, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_431", "data source aggregate document": { "data source document": [ { @@ -8918,8 +8626,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_431" + } }, { "calculated data name": "ToPercent", @@ -8927,6 +8634,7 @@ "value": 93.2, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_432", "data source aggregate document": { "data source document": [ { @@ -8934,8 +8642,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_432" + } }, { "calculated data name": "CalibratedQuantity", @@ -8943,6 +8650,7 @@ "value": 463.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_434", "data source aggregate document": { "data source document": [ { @@ -8950,8 +8658,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_434" + } }, { "calculated data name": "FromPercent", @@ -8959,6 +8666,7 @@ "value": 52.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_435", "data source aggregate document": { "data source document": [ { @@ -8966,8 +8674,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_435" + } }, { "calculated data name": "Molarity", @@ -8975,6 +8682,7 @@ "value": 3770.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_436", "data source aggregate document": { "data source document": [ { @@ -8982,8 +8690,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_436" + } }, { "calculated data name": "RunDistance", @@ -8991,6 +8698,7 @@ "value": 60.2, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_437", "data source aggregate document": { "data source document": [ { @@ -8998,8 +8706,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_437" + } }, { "calculated data name": "ToPercent", @@ -9007,6 +8714,7 @@ "value": 68.2, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_438", "data source aggregate document": { "data source document": [ { @@ -9014,8 +8722,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_438" + } }, { "calculated data name": "CalibratedQuantity", @@ -9023,6 +8730,7 @@ "value": 11.7, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_440", "data source aggregate document": { "data source document": [ { @@ -9030,8 +8738,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_440" + } }, { "calculated data name": "FromPercent", @@ -9039,6 +8746,7 @@ "value": 17.2, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_441", "data source aggregate document": { "data source document": [ { @@ -9046,8 +8754,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_441" + } }, { "calculated data name": "RunDistance", @@ -9055,6 +8762,7 @@ "value": 20.9, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_442", "data source aggregate document": { "data source document": [ { @@ -9062,8 +8770,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_442" + } }, { "calculated data name": "ToPercent", @@ -9071,6 +8778,7 @@ "value": 24.6, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_443", "data source aggregate document": { "data source document": [ { @@ -9078,8 +8786,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_443" + } }, { "calculated data name": "AverageSize", @@ -9087,6 +8794,7 @@ "value": 241.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_445", "data source aggregate document": { "data source document": [ { @@ -9094,8 +8802,7 @@ "data source feature": "data region" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_445" + } }, { "calculated data name": "Concentration", @@ -9103,6 +8810,7 @@ "value": 544.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_446", "data source aggregate document": { "data source document": [ { @@ -9110,8 +8818,7 @@ "data source feature": "data region" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_446" + } }, { "calculated data name": "Molarity", @@ -9119,6 +8826,7 @@ "value": 4130.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_447", "data source aggregate document": { "data source document": [ { @@ -9126,8 +8834,7 @@ "data source feature": "data region" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_447" + } }, { "calculated data name": "Concentration", @@ -9135,6 +8842,7 @@ "value": 1280.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_449", "data source aggregate document": { "data source document": [ { @@ -9142,8 +8850,7 @@ "data source feature": "sample" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_449" + } }, { "calculated data name": "PercentageCfDNA", @@ -9151,6 +8858,7 @@ "value": 91.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_450", "data source aggregate document": { "data source document": [ { @@ -9158,8 +8866,7 @@ "data source feature": "sample" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_450" + } }, { "calculated data name": "AssignedQuantity", @@ -9167,6 +8874,7 @@ "value": 275.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_452", "data source aggregate document": { "data source document": [ { @@ -9174,8 +8882,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_452" + } }, { "calculated data name": "CalibratedQuantity", @@ -9183,6 +8890,7 @@ "value": 275.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_453", "data source aggregate document": { "data source document": [ { @@ -9190,8 +8898,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_453" + } }, { "calculated data name": "FromPercent", @@ -9199,6 +8906,7 @@ "value": 81.8, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_454", "data source aggregate document": { "data source document": [ { @@ -9206,8 +8914,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_454" + } }, { "calculated data name": "Molarity", @@ -9215,6 +8922,7 @@ "value": 12100.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_455", "data source aggregate document": { "data source document": [ { @@ -9222,8 +8930,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_455" + } }, { "calculated data name": "RunDistance", @@ -9231,6 +8938,7 @@ "value": 86.9, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_456", "data source aggregate document": { "data source document": [ { @@ -9238,8 +8946,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_456" + } }, { "calculated data name": "ToPercent", @@ -9247,6 +8954,7 @@ "value": 90.4, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_457", "data source aggregate document": { "data source document": [ { @@ -9254,8 +8962,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_457" + } }, { "calculated data name": "CalibratedQuantity", @@ -9263,6 +8970,7 @@ "value": 973.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_459", "data source aggregate document": { "data source document": [ { @@ -9270,8 +8978,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_459" + } }, { "calculated data name": "FromPercent", @@ -9279,6 +8986,7 @@ "value": 53.3, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_460", "data source aggregate document": { "data source document": [ { @@ -9286,8 +8994,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_460" + } }, { "calculated data name": "Molarity", @@ -9295,6 +9002,7 @@ "value": 9040.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_461", "data source aggregate document": { "data source document": [ { @@ -9302,8 +9010,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_461" + } }, { "calculated data name": "RunDistance", @@ -9311,6 +9018,7 @@ "value": 61.1, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_462", "data source aggregate document": { "data source document": [ { @@ -9318,8 +9026,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_462" + } }, { "calculated data name": "ToPercent", @@ -9327,6 +9034,7 @@ "value": 68.6, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_463", "data source aggregate document": { "data source document": [ { @@ -9334,8 +9042,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_463" + } }, { "calculated data name": "CalibratedQuantity", @@ -9343,6 +9050,7 @@ "value": 141.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_465", "data source aggregate document": { "data source document": [ { @@ -9350,8 +9058,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_465" + } }, { "calculated data name": "FromPercent", @@ -9359,6 +9066,7 @@ "value": 44.4, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_466", "data source aggregate document": { "data source document": [ { @@ -9366,8 +9074,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_466" + } }, { "calculated data name": "Molarity", @@ -9375,6 +9082,7 @@ "value": 657.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_467", "data source aggregate document": { "data source document": [ { @@ -9382,8 +9090,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_467" + } }, { "calculated data name": "RunDistance", @@ -9391,6 +9098,7 @@ "value": 51.1, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_468", "data source aggregate document": { "data source document": [ { @@ -9398,8 +9106,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_468" + } }, { "calculated data name": "ToPercent", @@ -9407,6 +9114,7 @@ "value": 53.3, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_469", "data source aggregate document": { "data source document": [ { @@ -9414,8 +9122,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_469" + } }, { "calculated data name": "CalibratedQuantity", @@ -9423,6 +9130,7 @@ "value": 58.5, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_471", "data source aggregate document": { "data source document": [ { @@ -9430,8 +9138,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_471" + } }, { "calculated data name": "FromPercent", @@ -9439,6 +9146,7 @@ "value": 16.8, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_472", "data source aggregate document": { "data source document": [ { @@ -9446,8 +9154,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_472" + } }, { "calculated data name": "RunDistance", @@ -9455,6 +9162,7 @@ "value": 19.9, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_473", "data source aggregate document": { "data source document": [ { @@ -9462,8 +9170,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_473" + } }, { "calculated data name": "ToPercent", @@ -9471,6 +9178,7 @@ "value": 25.7, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_474", "data source aggregate document": { "data source document": [ { @@ -9478,8 +9186,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_474" + } }, { "calculated data name": "AverageSize", @@ -9487,6 +9194,7 @@ "value": 220.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_476", "data source aggregate document": { "data source document": [ { @@ -9494,8 +9202,7 @@ "data source feature": "data region" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_476" + } }, { "calculated data name": "Concentration", @@ -9503,6 +9210,7 @@ "value": 1170.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_477", "data source aggregate document": { "data source document": [ { @@ -9510,8 +9218,7 @@ "data source feature": "data region" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_477" + } }, { "calculated data name": "Molarity", @@ -9519,6 +9226,7 @@ "value": 9560.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_478", "data source aggregate document": { "data source document": [ { @@ -9526,8 +9234,7 @@ "data source feature": "data region" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_478" + } }, { "calculated data name": "Concentration", @@ -9535,6 +9242,7 @@ "value": 419.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_480", "data source aggregate document": { "data source document": [ { @@ -9542,8 +9250,7 @@ "data source feature": "sample" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_480" + } }, { "calculated data name": "PercentageCfDNA", @@ -9551,6 +9258,7 @@ "value": 91.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_481", "data source aggregate document": { "data source document": [ { @@ -9558,8 +9266,7 @@ "data source feature": "sample" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_481" + } }, { "calculated data name": "AssignedQuantity", @@ -9567,6 +9274,7 @@ "value": 275.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_483", "data source aggregate document": { "data source document": [ { @@ -9574,8 +9282,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_483" + } }, { "calculated data name": "CalibratedQuantity", @@ -9583,6 +9290,7 @@ "value": 275.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_484", "data source aggregate document": { "data source document": [ { @@ -9590,8 +9298,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_484" + } }, { "calculated data name": "FromPercent", @@ -9599,6 +9306,7 @@ "value": 81.6, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_485", "data source aggregate document": { "data source document": [ { @@ -9606,8 +9314,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_485" + } }, { "calculated data name": "Molarity", @@ -9615,6 +9322,7 @@ "value": 12100.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_486", "data source aggregate document": { "data source document": [ { @@ -9622,8 +9330,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_486" + } }, { "calculated data name": "RunDistance", @@ -9631,6 +9338,7 @@ "value": 87.3, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_487", "data source aggregate document": { "data source document": [ { @@ -9638,8 +9346,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_487" + } }, { "calculated data name": "ToPercent", @@ -9647,6 +9354,7 @@ "value": 91.2, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_488", "data source aggregate document": { "data source document": [ { @@ -9654,8 +9362,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_488" + } }, { "calculated data name": "CalibratedQuantity", @@ -9663,6 +9370,7 @@ "value": 319.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_490", "data source aggregate document": { "data source document": [ { @@ -9670,8 +9378,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_490" + } }, { "calculated data name": "FromPercent", @@ -9679,6 +9386,7 @@ "value": 51.9, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_491", "data source aggregate document": { "data source document": [ { @@ -9686,8 +9394,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_491" + } }, { "calculated data name": "Molarity", @@ -9695,6 +9402,7 @@ "value": 2700.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_492", "data source aggregate document": { "data source document": [ { @@ -9702,8 +9410,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_492" + } }, { "calculated data name": "RunDistance", @@ -9711,6 +9418,7 @@ "value": 60.1, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_493", "data source aggregate document": { "data source document": [ { @@ -9718,8 +9426,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_493" + } }, { "calculated data name": "ToPercent", @@ -9727,6 +9434,7 @@ "value": 67.2, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_494", "data source aggregate document": { "data source document": [ { @@ -9734,8 +9442,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_494" + } }, { "calculated data name": "AverageSize", @@ -9743,6 +9450,7 @@ "value": 234.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_496", "data source aggregate document": { "data source document": [ { @@ -9750,8 +9458,7 @@ "data source feature": "data region" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_496" + } }, { "calculated data name": "Concentration", @@ -9759,6 +9466,7 @@ "value": 381.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_497", "data source aggregate document": { "data source document": [ { @@ -9766,8 +9474,7 @@ "data source feature": "data region" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_497" + } }, { "calculated data name": "Molarity", @@ -9775,6 +9482,7 @@ "value": 3000.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_498", "data source aggregate document": { "data source document": [ { @@ -9782,8 +9490,7 @@ "data source feature": "data region" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_498" + } }, { "calculated data name": "Concentration", @@ -9791,6 +9498,7 @@ "value": 1280.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_500", "data source aggregate document": { "data source document": [ { @@ -9798,8 +9506,7 @@ "data source feature": "sample" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_500" + } }, { "calculated data name": "PercentageCfDNA", @@ -9807,6 +9514,7 @@ "value": 93.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_501", "data source aggregate document": { "data source document": [ { @@ -9814,8 +9522,7 @@ "data source feature": "sample" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_501" + } }, { "calculated data name": "AssignedQuantity", @@ -9823,6 +9530,7 @@ "value": 275.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_503", "data source aggregate document": { "data source document": [ { @@ -9830,8 +9538,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_503" + } }, { "calculated data name": "CalibratedQuantity", @@ -9839,6 +9546,7 @@ "value": 275.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_504", "data source aggregate document": { "data source document": [ { @@ -9846,8 +9554,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_504" + } }, { "calculated data name": "FromPercent", @@ -9855,6 +9562,7 @@ "value": 79.1, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_505", "data source aggregate document": { "data source document": [ { @@ -9862,8 +9570,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_505" + } }, { "calculated data name": "Molarity", @@ -9871,6 +9578,7 @@ "value": 12100.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_506", "data source aggregate document": { "data source document": [ { @@ -9878,8 +9586,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_506" + } }, { "calculated data name": "RunDistance", @@ -9887,6 +9594,7 @@ "value": 83.8, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_507", "data source aggregate document": { "data source document": [ { @@ -9894,8 +9602,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_507" + } }, { "calculated data name": "ToPercent", @@ -9903,6 +9610,7 @@ "value": 88.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_508", "data source aggregate document": { "data source document": [ { @@ -9910,8 +9618,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_508" + } }, { "calculated data name": "CalibratedQuantity", @@ -9919,6 +9626,7 @@ "value": 970.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_510", "data source aggregate document": { "data source document": [ { @@ -9926,8 +9634,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_510" + } }, { "calculated data name": "FromPercent", @@ -9935,6 +9642,7 @@ "value": 50.9, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_511", "data source aggregate document": { "data source document": [ { @@ -9942,8 +9650,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_511" + } }, { "calculated data name": "Molarity", @@ -9951,6 +9658,7 @@ "value": 8390.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_512", "data source aggregate document": { "data source document": [ { @@ -9958,8 +9666,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_512" + } }, { "calculated data name": "RunDistance", @@ -9967,6 +9674,7 @@ "value": 58.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_513", "data source aggregate document": { "data source document": [ { @@ -9974,8 +9682,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_513" + } }, { "calculated data name": "ToPercent", @@ -9983,6 +9690,7 @@ "value": 65.2, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_514", "data source aggregate document": { "data source document": [ { @@ -9990,8 +9698,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_514" + } }, { "calculated data name": "CalibratedQuantity", @@ -9999,6 +9706,7 @@ "value": 150.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_516", "data source aggregate document": { "data source document": [ { @@ -10006,8 +9714,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_516" + } }, { "calculated data name": "FromPercent", @@ -10015,6 +9722,7 @@ "value": 41.7, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_517", "data source aggregate document": { "data source document": [ { @@ -10022,8 +9730,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_517" + } }, { "calculated data name": "Molarity", @@ -10031,6 +9738,7 @@ "value": 649.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_518", "data source aggregate document": { "data source document": [ { @@ -10038,8 +9746,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_518" + } }, { "calculated data name": "RunDistance", @@ -10047,6 +9754,7 @@ "value": 48.1, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_519", "data source aggregate document": { "data source document": [ { @@ -10054,8 +9762,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_519" + } }, { "calculated data name": "ToPercent", @@ -10063,6 +9770,7 @@ "value": 50.9, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_520", "data source aggregate document": { "data source document": [ { @@ -10070,8 +9778,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_520" + } }, { "calculated data name": "CalibratedQuantity", @@ -10079,6 +9786,7 @@ "value": 14.8, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_522", "data source aggregate document": { "data source document": [ { @@ -10086,8 +9794,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_522" + } }, { "calculated data name": "FromPercent", @@ -10095,6 +9802,7 @@ "value": 25.4, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_523", "data source aggregate document": { "data source document": [ { @@ -10102,8 +9810,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_523" + } }, { "calculated data name": "RunDistance", @@ -10111,6 +9818,7 @@ "value": 26.8, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_524", "data source aggregate document": { "data source document": [ { @@ -10118,8 +9826,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_524" + } }, { "calculated data name": "ToPercent", @@ -10127,6 +9834,7 @@ "value": 29.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_525", "data source aggregate document": { "data source document": [ { @@ -10134,8 +9842,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_525" + } }, { "calculated data name": "CalibratedQuantity", @@ -10143,6 +9850,7 @@ "value": 34.3, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_527", "data source aggregate document": { "data source document": [ { @@ -10150,8 +9858,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_527" + } }, { "calculated data name": "FromPercent", @@ -10159,6 +9866,7 @@ "value": 15.9, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_528", "data source aggregate document": { "data source document": [ { @@ -10166,8 +9874,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_528" + } }, { "calculated data name": "RunDistance", @@ -10175,6 +9882,7 @@ "value": 20.9, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_529", "data source aggregate document": { "data source document": [ { @@ -10182,8 +9890,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_529" + } }, { "calculated data name": "ToPercent", @@ -10191,6 +9898,7 @@ "value": 24.5, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_530", "data source aggregate document": { "data source document": [ { @@ -10198,8 +9906,7 @@ "data source feature": "peak" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_530" + } }, { "calculated data name": "AverageSize", @@ -10207,6 +9914,7 @@ "value": 237.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_532", "data source aggregate document": { "data source document": [ { @@ -10214,8 +9922,7 @@ "data source feature": "data region" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_532" + } }, { "calculated data name": "Concentration", @@ -10223,6 +9930,7 @@ "value": 1190.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_533", "data source aggregate document": { "data source document": [ { @@ -10230,8 +9938,7 @@ "data source feature": "data region" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_533" + } }, { "calculated data name": "Molarity", @@ -10239,6 +9946,7 @@ "value": 9140.0, "unit": "(unitless)" }, + "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_534", "data source aggregate document": { "data source document": [ { @@ -10246,11 +9954,25 @@ "data source feature": "data region" } ] - }, - "calculated data identifier": "AGILENT_TAPESTATION_ANALYSIS_TEST_ID_534" + } } ] + }, + "data system document": { + "ASM file identifier": "agilent_tapestation_analysis_example_03.json", + "data system instance identifier": "TAPESTATIONPC", + "file name": "agilent_tapestation_analysis_example_03.xml", + "UNC path": "N/A", + "ASM converter name": "allotropy_agilent_tapestation_analysis", + "ASM converter version": "0.1.56", + "software name": "TapeStation Analysis Software", + "software version": "3.2.0.22472" + }, + "device system document": { + "brand name": "TapeStation", + "device identifier": "65536", + "equipment serial number": "DEDAB00201", + "product manufacturer": "Agilent" } - }, - "$asm.manifest": "http://purl.allotrope.org/manifests/electrophoresis/BENCHLING/2024/06/electrophoresis.manifest" + } } From fd696b8db6cb5ac7fc3d094aaeaad7f1130c8217 Mon Sep 17 00:00:00 2001 From: Alejandro Salgado Date: Thu, 10 Oct 2024 15:15:43 -0500 Subject: [PATCH 12/19] update electrophoresis benchling 09/24 schema change notes --- .../BENCHLING/2024/09/CHANGE_NOTES.md | 29 +++++++++++++++++-- 1 file changed, 27 insertions(+), 2 deletions(-) diff --git a/src/allotropy/allotrope/schemas/adm/electrophoresis/BENCHLING/2024/09/CHANGE_NOTES.md b/src/allotropy/allotrope/schemas/adm/electrophoresis/BENCHLING/2024/09/CHANGE_NOTES.md index aab8a521a..87e422a29 100644 --- a/src/allotropy/allotrope/schemas/adm/electrophoresis/BENCHLING/2024/09/CHANGE_NOTES.md +++ b/src/allotropy/allotrope/schemas/adm/electrophoresis/BENCHLING/2024/09/CHANGE_NOTES.md @@ -1,3 +1,28 @@ -Base schema: None +Base schema: http://purl.allotrope.org/json-schemas/adm/electrophoresis/REC/2024/09/electrophoresis.embded.schema -This is a proposed new schema for electrophoresis devices. +Changes: + +Added "analytical method identifier" to technique document/measurement aggregate document +Added "experimental data identifier" to technique document/measurement aggregate document +Added "method version" to technique document/measurement aggregate document +Reasoning: These should have been included in REC/2024/06 electrophoresis schema from original proposal +Proposal: Add "analytical method identifier", "experimental data identifier", "method version" to technique document/measurement aggregate document + +Added "compartment temperature" to absorbance-point-detector/absorbance-cube-detector/fluorescence-point-detector measurement document +Reasoning: This should have been included in REC/2024/06 electrophoresis schema from original proposal +Proposal: Add "compartment temperature" to electrophoresis measurement schemas + +Added "location identifier" to technique document/sample document +Reasoning: This should have been included in REC/2024/06 electrophoresis schema from original proposal +Proposal: Add "location identifier" to technique document/sample document + +Added "peak name" to peak +Added "peak position" to peak +Added "relative corrected peak area" to peak +Added "comment" to peak +Reasoning: This should have been included in REC/2024/06 electrophoresis schema from original proposal +Proposal: Add "peak name", "peak position", "relative corrected peak area", "comment" to peak + +Added TQuantityValueNumber and TQuantityValueKiloDalton units for "peak position", "peak end", "relative peak height", "peak start" +Reasoning: This should have been included in REC/2024/06 electrophoresis schema from original proposal +Proposal: Add TQuantityValueNumber and TQuantityValueKiloDalton units for "peak position", "peak end", "relative peak height", "peak start" to peak fields From df491948d47aed2c32bfeb9b68d72e7e94f1b379 Mon Sep 17 00:00:00 2001 From: Alejandro Salgado Date: Fri, 4 Oct 2024 11:47:35 -0500 Subject: [PATCH 13/19] update changelog --- CHANGELOG.md | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 44ea3276c..5808f048d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,24 @@ All notable changes to this packages will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [Unreleased] + +### Added +- Schema mapper for electrophoresis benchling 09/24 + +### Fixed + +### Changed +- Update Agilent Tapestation Analysis parser to use electrophoresis benchling 09/24 schema +- Move electrophoresis rec 09/24 as benchling 09/24 schema + +### Deprecated + +### Removed + +### Security + + ## [0.1.56] - 2024-09-26 ### Added From c20a6e747df10f75b523c6cd86239ea11cd9df92 Mon Sep 17 00:00:00 2001 From: Alejandro Salgado Date: Fri, 11 Oct 2024 09:49:46 -0500 Subject: [PATCH 14/19] remove ProcessedDataDocument from electrophoresis benchling 09/24 schema --- .../benchling/_2024/_09/electrophoresis.py | 114 +++++++----------- .../2024/09/electrophoresis.schema.json | 102 ---------------- 2 files changed, 46 insertions(+), 170 deletions(-) diff --git a/src/allotropy/allotrope/models/adm/electrophoresis/benchling/_2024/_09/electrophoresis.py b/src/allotropy/allotrope/models/adm/electrophoresis/benchling/_2024/_09/electrophoresis.py index d1c474ebf..f43f0d5d2 100644 --- a/src/allotropy/allotrope/models/adm/electrophoresis/benchling/_2024/_09/electrophoresis.py +++ b/src/allotropy/allotrope/models/adm/electrophoresis/benchling/_2024/_09/electrophoresis.py @@ -1,6 +1,6 @@ # generated by datamodel-codegen: # filename: electrophoresis.schema.json -# timestamp: 2024-10-09T20:55:38+00:00 +# timestamp: 2024-10-11T14:47:41+00:00 from __future__ import annotations @@ -18,8 +18,6 @@ TQuantityValueNumber, TQuantityValuePercent, TQuantityValueRelativeFluorescenceUnit, - TQuantityValueRelativeFluorescenceUnitTimesMilliliter, - TQuantityValueRelativeFluorescenceUnitTimesSecond, TQuantityValueSecondTime, TQuantityValueUnitless, ) @@ -48,11 +46,6 @@ class AdmCoreREC202409ManifestSchema: shapes: list[str] | None = None -@dataclass(kw_only=True) -class OrderedItem: - field_index: int | None = None - - @dataclass(kw_only=True) class CustomInformationDocumentItem: scalar_double_datum: TDoubleValue | None = None @@ -63,23 +56,6 @@ class CustomInformationDocumentItem: datum_label: TStringValue | None = None -@dataclass(kw_only=True) -class CustomInformationAggregateDocument: - custom_information_document: list[CustomInformationDocumentItem] - - -@dataclass(kw_only=True) -class DataSourceDocumentItem: - data_source_identifier: TStringValue - data_source_feature: TStringValue | None = None - field_index: int | None = None - - -@dataclass(kw_only=True) -class DataSourceAggregateDocument: - data_source_document: list[DataSourceDocumentItem] - - @dataclass(kw_only=True) class ElectronicProjectRecord: written_name: TStringValue @@ -87,24 +63,6 @@ class ElectronicProjectRecord: start_time: TDateTimeValue | None = None -@dataclass(kw_only=True) -class ElectronicSignatureDocumentItem: - account_identifier: TStringValue - personal_name: TStringValue - signature_role_type: TStringValue - time: TStringValue - identifier: TStringValue | None = None - measurement_identifier: TStringValue | None = None - method_identifier: TStringValue | None = None - processed_data_identifier: TStringValue | None = None - field_index: int | None = None - - -@dataclass(kw_only=True) -class ElectronicSignatureAggregateDocument: - electronic_signature_document: list[ElectronicSignatureDocumentItem] | None = None - - @dataclass(kw_only=True) class ErrorDocumentItem: error: TStringValue @@ -127,15 +85,6 @@ class ImageAggregateDocument: image_document: list[ImageDocumentItem] | None = None -@dataclass(kw_only=True) -class ProcessedDataAggregateDocument: - processed_data_document: list[ProcessedDataDocumentItem] - custom_information_aggregate_document: CustomInformationAggregateDocument | None = ( - None - ) - electronic_project_record: ElectronicProjectRecord | None = None - - @dataclass(kw_only=True) class StatisticsDocumentItem: statistical_feature: TClass @@ -159,6 +108,50 @@ class AnalysisSequenceDocument: version_number: TStringValue | None = None +@dataclass(kw_only=True) +class CustomInformationAggregateDocument: + custom_information_document: list[CustomInformationDocumentItem] + + +@dataclass(kw_only=True) +class DataSourceDocumentItem: + data_source_identifier: TStringValue + data_source_feature: TStringValue | None = None + field_index: int | None = None + + +@dataclass(kw_only=True) +class DataSourceAggregateDocument: + data_source_document: list[DataSourceDocumentItem] + + +@dataclass(kw_only=True) +class ElectronicSignatureDocumentItem: + account_identifier: TStringValue + personal_name: TStringValue + signature_role_type: TStringValue + time: TStringValue + identifier: TStringValue | None = None + measurement_identifier: TStringValue | None = None + method_identifier: TStringValue | None = None + processed_data_identifier: TStringValue | None = None + field_index: int | None = None + + +@dataclass(kw_only=True) +class ElectronicSignatureAggregateDocument: + electronic_signature_document: list[ElectronicSignatureDocumentItem] | None = None + + +@dataclass(kw_only=True) +class ProcessedDataAggregateDocument: + processed_data_document: list[ProcessedDataDocumentItem] + custom_information_aggregate_document: CustomInformationAggregateDocument | None = ( + None + ) + electronic_project_record: ElectronicProjectRecord | None = None + + @dataclass(kw_only=True) class DataSystemDocument: ASM_file_identifier: TStringValue @@ -356,7 +349,7 @@ class PeakList: custom_information_aggregate_document: CustomInformationAggregateDocument | None = ( None ) - peak: list[PeakItem] | list[Peak] | None = None + peak: list[Peak] | None = None @dataclass(kw_only=True) @@ -399,14 +392,6 @@ class SampleDocument: ) -@dataclass(kw_only=True) -class PeakItem(OrderedItem): - peak_height: TQuantityValueRelativeFluorescenceUnit | None = None - peak_area: TQuantityValueRelativeFluorescenceUnitTimesMilliliter | TQuantityValueRelativeFluorescenceUnitTimesSecond | None = ( - None - ) - - @dataclass(kw_only=True) class CalculatedDataDocumentItem: calculated_data_name: TStringValue @@ -466,16 +451,9 @@ class MeasurementDocument: absorption_profile_data_cube: TDatacube | None = None chromatogram_data_cube: TDatacube | None = None three_dimensional_ultraviolet_spectrum_data_cube: TDatacube | None = None - processed_data_document: ProcessedDataDocument | None = None fluorescence_emission_profile_data_cube: TDatacube | None = None -@dataclass(kw_only=True) -class ProcessedDataDocument: - peak_list: PeakList | None = None - derived_electropherogram_data_cube: TDatacube | None = None - - @dataclass(kw_only=True) class MeasurementAggregateDocument: measurement_document: list[MeasurementDocument] diff --git a/src/allotropy/allotrope/schemas/adm/electrophoresis/BENCHLING/2024/09/electrophoresis.schema.json b/src/allotropy/allotrope/schemas/adm/electrophoresis/BENCHLING/2024/09/electrophoresis.schema.json index e1a9e4832..a202f477e 100644 --- a/src/allotropy/allotrope/schemas/adm/electrophoresis/BENCHLING/2024/09/electrophoresis.schema.json +++ b/src/allotropy/allotrope/schemas/adm/electrophoresis/BENCHLING/2024/09/electrophoresis.schema.json @@ -13731,108 +13731,6 @@ "minItems": 1 } } - }, - "processed data document": { - "properties": { - "peak list": { - "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0000432", - "$asm.pattern": "aggregate datum", - "type": "object", - "properties": { - "peak": { - "$asm.array-ordered": true, - "$asm.array-mixed": false, - "$asm.pattern": "indexed datum", - "type": "array", - "items": { - "allOf": [ - { - "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0000413", - "$asm.pattern": "aggregate datum", - "type": "object", - "properties": { - "peak height": { - "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0000948", - "$asm.pattern": "quantity datum", - "allOf": [ - { - "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/core.schema#/$defs/tQuantityValue" - }, - { - "$ref": "http://purl.allotrope.org/json-schemas/qudt/REC/2024/09/units.schema#/$defs/RFU" - } - ] - }, - "peak area": { - "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0001073", - "$asm.pattern": "quantity datum", - "allOf": [ - { - "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/core.schema#/$defs/tQuantityValue" - }, - { - "oneOf": [ - { - "$ref": "http://purl.allotrope.org/json-schemas/qudt/REC/2024/09/units.schema#/$defs/RFU.s" - }, - { - "$ref": "http://purl.allotrope.org/json-schemas/qudt/REC/2024/09/units.schema#/$defs/RFU.mL" - } - ] - } - ] - } - } - }, - { - "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/core.schema#/$defs/orderedItem" - } - ] - }, - "minItems": 0 - } - } - }, - "derived electropherogram data cube": { - "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0003020", - "$asm.pattern": "datacube", - "type": "object", - "allOf": [ - { - "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/cube.schema#/$defs/tDatacube" - }, - { - "properties": { - "cube-structure": { - "properties": { - "measures": { - "minItems": 1, - "maxItems": 1, - "contains": { - "oneOf": [ - { - "properties": { - "concept": { - "const": "fluorescence" - }, - "unit": { - "const": "RFU" - }, - "@componentDatatype": { - "const": "double" - } - } - } - ] - } - } - } - } - } - } - ] - } - } } }, "oneOf": [ From cf15bc74c60dd860da0ea56b5e37bf21513d554f Mon Sep 17 00:00:00 2001 From: Alejandro Salgado Date: Fri, 11 Oct 2024 09:53:55 -0500 Subject: [PATCH 15/19] update change notes of electrophoresis benchling 09/24 --- .../adm/electrophoresis/BENCHLING/2024/09/CHANGE_NOTES.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/allotropy/allotrope/schemas/adm/electrophoresis/BENCHLING/2024/09/CHANGE_NOTES.md b/src/allotropy/allotrope/schemas/adm/electrophoresis/BENCHLING/2024/09/CHANGE_NOTES.md index 87e422a29..f3fa40223 100644 --- a/src/allotropy/allotrope/schemas/adm/electrophoresis/BENCHLING/2024/09/CHANGE_NOTES.md +++ b/src/allotropy/allotrope/schemas/adm/electrophoresis/BENCHLING/2024/09/CHANGE_NOTES.md @@ -26,3 +26,5 @@ Proposal: Add "peak name", "peak position", "relative corrected peak area", "com Added TQuantityValueNumber and TQuantityValueKiloDalton units for "peak position", "peak end", "relative peak height", "peak start" Reasoning: This should have been included in REC/2024/06 electrophoresis schema from original proposal Proposal: Add TQuantityValueNumber and TQuantityValueKiloDalton units for "peak position", "peak end", "relative peak height", "peak start" to peak fields + +Removed "processed data document" outside of "processed data aggreagete document" in fluorescence-cube-detector measurementDocumentItems definition From ef385a73a2be47ce2443433f2f8a84ddddf50756 Mon Sep 17 00:00:00 2001 From: Alejandro Salgado Date: Tue, 15 Oct 2024 09:09:29 -0500 Subject: [PATCH 16/19] update changelog --- CHANGELOG.md | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index f33ce6686..d59944d2e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,23 +5,13 @@ All notable changes to this packages will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). -## [Unreleased] - ### Added - Schema mapper for electrophoresis benchling 09/24 -### Fixed - ### Changed - Update Agilent Tapestation Analysis parser to use electrophoresis benchling 09/24 schema - Move electrophoresis rec 09/24 as benchling 09/24 schema -### Deprecated - -### Removed - -### Security - ## [0.1.58] - 2024-10-09 ### Fixed From 261cd16b79ff4b572914d43ee2242e83815578d2 Mon Sep 17 00:00:00 2001 From: Alejandro Salgado Date: Tue, 15 Oct 2024 09:12:55 -0500 Subject: [PATCH 17/19] remove manual changes in changelog --- CHANGELOG.md | 7 ------- 1 file changed, 7 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index c1e6d9d79..eb35c40d1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,13 +5,6 @@ All notable changes to this packages will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). -### Added -- Schema mapper for electrophoresis benchling 09/24 - -### Changed -- Update Agilent Tapestation Analysis parser to use electrophoresis benchling 09/24 schema -- Move electrophoresis rec 09/24 as benchling 09/24 schema - ## [0.1.59] - 2024-10-11 ### Added From 7415f707a1c8652844e7f4119493fe4cc40b285a Mon Sep 17 00:00:00 2001 From: Alejandro Salgado Date: Tue, 15 Oct 2024 09:20:23 -0500 Subject: [PATCH 18/19] add processed data agg document to DeviceControlAggregateDocument in electrophoresis 09/24 --- .../benchling/_2024/_09/electrophoresis.py | 5 +- .../2024/09/electrophoresis.schema.json | 947 ++++++++++++++++++ 2 files changed, 950 insertions(+), 2 deletions(-) diff --git a/src/allotropy/allotrope/models/adm/electrophoresis/benchling/_2024/_09/electrophoresis.py b/src/allotropy/allotrope/models/adm/electrophoresis/benchling/_2024/_09/electrophoresis.py index f43f0d5d2..d223ae589 100644 --- a/src/allotropy/allotrope/models/adm/electrophoresis/benchling/_2024/_09/electrophoresis.py +++ b/src/allotropy/allotrope/models/adm/electrophoresis/benchling/_2024/_09/electrophoresis.py @@ -1,6 +1,6 @@ # generated by datamodel-codegen: # filename: electrophoresis.schema.json -# timestamp: 2024-10-11T14:47:41+00:00 +# timestamp: 2024-10-15T14:18:09+00:00 from __future__ import annotations @@ -145,7 +145,7 @@ class ElectronicSignatureAggregateDocument: @dataclass(kw_only=True) class ProcessedDataAggregateDocument: - processed_data_document: list[ProcessedDataDocumentItem] + processed_data_document: list[ProcessedDataDocumentItem] | None = None custom_information_aggregate_document: CustomInformationAggregateDocument | None = ( None ) @@ -254,6 +254,7 @@ class DeviceControlAggregateDocument: None ) compartment_temperature: TQuantityValueDegreeCelsius | None = None + processed_data_aggregate_document: ProcessedDataAggregateDocument | None = None @dataclass(kw_only=True) diff --git a/src/allotropy/allotrope/schemas/adm/electrophoresis/BENCHLING/2024/09/electrophoresis.schema.json b/src/allotropy/allotrope/schemas/adm/electrophoresis/BENCHLING/2024/09/electrophoresis.schema.json index a202f477e..a253c7ec8 100644 --- a/src/allotropy/allotrope/schemas/adm/electrophoresis/BENCHLING/2024/09/electrophoresis.schema.json +++ b/src/allotropy/allotrope/schemas/adm/electrophoresis/BENCHLING/2024/09/electrophoresis.schema.json @@ -13729,6 +13729,953 @@ ] }, "minItems": 1 + }, + "processed data aggregate document": { + "properties": { + "processed data document": { + "items": { + "properties": { + "peak list": { + "type": "object", + "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0000432", + "$asm.pattern": "aggregate datum", + "properties": { + "custom information aggregate document": { + "allOf": [ + { + "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/hierarchy.schema#/$defs/customInformationAggregateDocument" + } + ] + }, + "peak": { + "type": "array", + "$asm.array-ordered": true, + "$asm.array-mixed": false, + "$asm.pattern": "indexed datum", + "items": { + "allOf": [ + { + "type": "object", + "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0000413", + "$asm.pattern": "aggregate datum", + "properties": { + "custom information aggregate document": { + "allOf": [ + { + "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/hierarchy.schema#/$defs/customInformationAggregateDocument" + } + ] + }, + "peak end": { + "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0001180", + "$asm.pattern": "quantity datum", + "allOf": [ + { + "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/core.schema#/$defs/tQuantityValue" + }, + { + "oneOf": [ + { + "$ref": "http://purl.allotrope.org/json-schemas/qudt/REC/2024/09/units.schema#/$defs/s" + }, + { + "$ref": "http://purl.allotrope.org/json-schemas/qudt/REC/2024/09/units.schema#/$defs/mL" + }, + { + "$ref": "http://purl.allotrope.org/json-schemas/qudt/REC/2024/09/units.schema#/$defs/#" + }, + { + "$ref": "#/$custom/tQuantityValueKiloDalton" + } + ] + } + ] + }, + "peak position": { + "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0001074", + "$asm.pattern": "quantity datum", + "allOf": [ + { + "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/core.schema#/$defs/tQuantityValue" + }, + { + "oneOf": [ + { + "$ref": "http://purl.allotrope.org/json-schemas/qudt/REC/2024/09/units.schema#/$defs/s" + }, + { + "$ref": "http://purl.allotrope.org/json-schemas/qudt/REC/2024/09/units.schema#/$defs/mL" + }, + { + "$ref": "http://purl.allotrope.org/json-schemas/qudt/REC/2024/09/units.schema#/$defs/#" + }, + { + "$ref": "#/$custom/tQuantityValueKiloDalton" + } + ] + } + ] + }, + "peak name": { + "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0001167", + "$asm.pattern": "value datum", + "$asm.type": "http://www.w3.org/2001/XMLSchema#string", + "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/core.schema#/$defs/tStringValue" + }, + "identifier": { + "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0000917", + "$asm.pattern": "value datum", + "$asm.type": "http://www.w3.org/2001/XMLSchema#string", + "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/core.schema#/$defs/tStringValue" + }, + "relative peak height": { + "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0000949", + "$asm.pattern": "quantity datum", + "allOf": [ + { + "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/core.schema#/$defs/tQuantityValue" + }, + { + "oneOf": [ + { + "$ref": "http://purl.allotrope.org/json-schemas/qudt/REC/2024/09/units.schema#/$defs/%25" + }, + { + "$ref": "http://purl.allotrope.org/json-schemas/qudt/REC/2024/03/units.schema#/$defs/s" + }, + { + "$ref": "http://purl.allotrope.org/json-schemas/qudt/REC/2024/09/units.schema#/$defs/#" + }, + { + "$ref": "#/$custom/tQuantityValueKiloDalton" + } + ] + } + ] + }, + "written name": { + "$asm.property-class": "http://purl.obolibrary.org/obo/IAO_0000590", + "$asm.pattern": "value datum", + "$asm.type": "http://www.w3.org/2001/XMLSchema#string", + "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/core.schema#/$defs/tStringValue" + }, + "peak height": { + "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0000948", + "$asm.pattern": "quantity datum", + "allOf": [ + { + "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/core.schema#/$defs/tQuantityValue" + } + ] + }, + "capacity factor (chromatography)": { + "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0001234", + "$asm.pattern": "quantity datum", + "allOf": [ + { + "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/core.schema#/$defs/tQuantityValue" + }, + { + "$ref": "http://purl.allotrope.org/json-schemas/qudt/REC/2024/09/units.schema#/$defs/(unitless)" + } + ] + }, + "peak area": { + "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0001073", + "$asm.pattern": "quantity datum", + "allOf": [ + { + "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/core.schema#/$defs/tQuantityValue" + } + ] + }, + "relative peak area": { + "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0001165", + "$asm.pattern": "quantity datum", + "allOf": [ + { + "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/core.schema#/$defs/tQuantityValue" + }, + { + "$ref": "http://purl.allotrope.org/json-schemas/qudt/REC/2024/09/units.schema#/$defs/%25" + } + ] + }, + "relative corrected peak area": { + "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0002775", + "$asm.pattern": "quantity datum", + "allOf": [ + { + "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/core.schema#/$defs/tQuantityValue" + }, + { + "$ref": "http://purl.allotrope.org/json-schemas/qudt/REC/2024/09/units.schema#/$defs/%" + } + ] + }, + "comment": { + "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0002017", + "$asm.pattern": "value datum", + "$asm.type": "http://www.w3.org/2001/XMLSchema#string", + "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/core.schema#/$defs/tStringValue" + }, + "retention time": { + "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0001089", + "$asm.pattern": "quantity datum", + "allOf": [ + { + "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/core.schema#/$defs/tQuantityValue" + }, + { + "$ref": "http://purl.allotrope.org/json-schemas/qudt/REC/2024/09/units.schema#/$defs/s" + } + ] + }, + "retention volume": { + "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0001089", + "$asm.pattern": "quantity datum", + "allOf": [ + { + "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/core.schema#/$defs/tQuantityValue" + }, + { + "$ref": "http://purl.allotrope.org/json-schemas/qudt/REC/2024/09/units.schema#/$defs/mL" + } + ] + }, + "peak start": { + "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0001178", + "$asm.pattern": "quantity datum", + "allOf": [ + { + "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/core.schema#/$defs/tQuantityValue" + }, + { + "oneOf": [ + { + "$ref": "http://purl.allotrope.org/json-schemas/qudt/REC/2024/09/units.schema#/$defs/s" + }, + { + "$ref": "http://purl.allotrope.org/json-schemas/qudt/REC/2024/09/units.schema#/$defs/mL" + }, + { + "$ref": "http://purl.allotrope.org/json-schemas/qudt/REC/2024/09/units.schema#/$defs/#" + }, + { + "$ref": "#/$custom/tQuantityValueKiloDalton" + } + ] + } + ] + }, + "peak selectivity (chromatography)": { + "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0001235", + "$asm.pattern": "quantity datum", + "allOf": [ + { + "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/core.schema#/$defs/tQuantityValue" + }, + { + "$ref": "http://purl.allotrope.org/json-schemas/qudt/REC/2024/09/units.schema#/$defs/(unitless)" + } + ] + } + }, + "anyOf": [ + { + "properties": { + "chromatographic peak resolution": { + "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0001230", + "$asm.pattern": "quantity datum", + "allOf": [ + { + "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/core.schema#/$defs/tQuantityValue" + }, + { + "$ref": "http://purl.allotrope.org/json-schemas/qudt/REC/2024/09/units.schema#/$defs/(unitless)" + } + ] + } + } + }, + { + "properties": { + "chromatographic peak resolution using baseline peak widths": { + "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0001231", + "$asm.pattern": "quantity datum", + "allOf": [ + { + "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/core.schema#/$defs/tQuantityValue" + }, + { + "$ref": "http://purl.allotrope.org/json-schemas/qudt/REC/2024/09/units.schema#/$defs/(unitless)" + } + ] + } + } + }, + { + "properties": { + "chromatographic peak resolution using peak width at half-height": { + "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0001232", + "$asm.pattern": "quantity datum", + "allOf": [ + { + "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/core.schema#/$defs/tQuantityValue" + }, + { + "$ref": "http://purl.allotrope.org/json-schemas/qudt/REC/2024/09/units.schema#/$defs/(unitless)" + } + ] + } + } + }, + { + "properties": { + "chromatographic peak resolution using statistical moments": { + "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0001233", + "$asm.pattern": "quantity datum", + "allOf": [ + { + "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/core.schema#/$defs/tQuantityValue" + }, + { + "$ref": "http://purl.allotrope.org/json-schemas/qudt/REC/2024/09/units.schema#/$defs/(unitless)" + } + ] + } + } + }, + { + "properties": { + "number of theoretical plates (chromatography)": { + "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0001239", + "$asm.pattern": "quantity datum", + "allOf": [ + { + "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/core.schema#/$defs/tQuantityValue" + }, + { + "$ref": "http://purl.allotrope.org/json-schemas/qudt/REC/2024/09/units.schema#/$defs/(unitless)" + } + ] + } + } + }, + { + "properties": { + "number of theoretical plates measured at 60.7 % of peak height": { + "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0002780", + "$asm.pattern": "quantity datum", + "allOf": [ + { + "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/core.schema#/$defs/tQuantityValue" + }, + { + "$ref": "http://purl.allotrope.org/json-schemas/qudt/REC/2024/09/units.schema#/$defs/(unitless)" + } + ] + } + } + }, + { + "properties": { + "number of theoretical plates measured at 32.4 % of peak height": { + "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0002781", + "$asm.pattern": "quantity datum", + "allOf": [ + { + "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/core.schema#/$defs/tQuantityValue" + }, + { + "$ref": "http://purl.allotrope.org/json-schemas/qudt/REC/2024/09/units.schema#/$defs/(unitless)" + } + ] + } + } + }, + { + "properties": { + "number of theoretical plates measured at 13.4 % of peak height": { + "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0002782", + "$asm.pattern": "quantity datum", + "allOf": [ + { + "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/core.schema#/$defs/tQuantityValue" + }, + { + "$ref": "http://purl.allotrope.org/json-schemas/qudt/REC/2024/09/units.schema#/$defs/(unitless)" + } + ] + } + } + }, + { + "properties": { + "number of theoretical plates measured at 4.4 % of peak height": { + "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0002783", + "$asm.pattern": "quantity datum", + "allOf": [ + { + "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/core.schema#/$defs/tQuantityValue" + }, + { + "$ref": "http://purl.allotrope.org/json-schemas/qudt/REC/2024/09/units.schema#/$defs/(unitless)" + } + ] + } + } + }, + { + "properties": { + "number of theoretical plates by tangent method": { + "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0001240", + "$asm.pattern": "quantity datum", + "allOf": [ + { + "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/core.schema#/$defs/tQuantityValue" + }, + { + "$ref": "http://purl.allotrope.org/json-schemas/qudt/REC/2024/09/units.schema#/$defs/(unitless)" + } + ] + } + } + }, + { + "properties": { + "number of theoretical plates by peak width at half height": { + "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0001241", + "$asm.pattern": "quantity datum", + "allOf": [ + { + "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/core.schema#/$defs/tQuantityValue" + }, + { + "$ref": "http://purl.allotrope.org/json-schemas/qudt/REC/2024/09/units.schema#/$defs/(unitless)" + } + ] + } + } + }, + { + "properties": { + "number of theoretical plates by peak width at half height (JP14)": { + "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0002807", + "$asm.pattern": "quantity datum", + "allOf": [ + { + "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/core.schema#/$defs/tQuantityValue" + }, + { + "$ref": "http://purl.allotrope.org/json-schemas/qudt/REC/2024/09/units.schema#/$defs/(unitless)" + } + ] + } + } + }, + { + "properties": { + "peak width at 4.4 % of height": { + "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0002784", + "$asm.pattern": "quantity datum", + "allOf": [ + { + "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/core.schema#/$defs/tQuantityValue" + }, + { + "$ref": "http://purl.allotrope.org/json-schemas/qudt/REC/2024/09/units.schema#/$defs/s" + } + ] + } + } + }, + { + "properties": { + "peak width at 13.4 % of height": { + "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0002785", + "$asm.pattern": "quantity datum", + "allOf": [ + { + "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/core.schema#/$defs/tQuantityValue" + }, + { + "$ref": "http://purl.allotrope.org/json-schemas/qudt/REC/2024/09/units.schema#/$defs/s" + } + ] + } + } + }, + { + "properties": { + "peak width at 32.4 % of height": { + "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0002786", + "$asm.pattern": "quantity datum", + "allOf": [ + { + "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/core.schema#/$defs/tQuantityValue" + }, + { + "$ref": "http://purl.allotrope.org/json-schemas/qudt/REC/2024/09/units.schema#/$defs/s" + } + ] + } + } + }, + { + "properties": { + "peak width at 60.7 % of height": { + "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0002787", + "$asm.pattern": "quantity datum", + "allOf": [ + { + "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/core.schema#/$defs/tQuantityValue" + }, + { + "$ref": "http://purl.allotrope.org/json-schemas/qudt/REC/2024/09/units.schema#/$defs/s" + } + ] + } + } + }, + { + "properties": { + "peak width at half height": { + "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0001266", + "$asm.pattern": "quantity datum", + "allOf": [ + { + "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/core.schema#/$defs/tQuantityValue" + }, + { + "$ref": "http://purl.allotrope.org/json-schemas/qudt/REC/2024/09/units.schema#/$defs/s" + } + ] + } + } + }, + { + "properties": { + "peak width at 5 % of height": { + "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0001265", + "$asm.pattern": "quantity datum", + "allOf": [ + { + "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/core.schema#/$defs/tQuantityValue" + }, + { + "$ref": "http://purl.allotrope.org/json-schemas/qudt/REC/2024/09/units.schema#/$defs/s" + } + ] + } + } + }, + { + "properties": { + "peak width at baseline": { + "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0001264", + "$asm.pattern": "quantity datum", + "allOf": [ + { + "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/core.schema#/$defs/tQuantityValue" + }, + { + "$ref": "http://purl.allotrope.org/json-schemas/qudt/REC/2024/09/units.schema#/$defs/s" + } + ] + } + } + }, + { + "properties": { + "peak width at inflection": { + "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0002761", + "$asm.pattern": "quantity datum", + "allOf": [ + { + "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/core.schema#/$defs/tQuantityValue" + }, + { + "$ref": "http://purl.allotrope.org/json-schemas/qudt/REC/2024/09/units.schema#/$defs/s" + } + ] + } + } + }, + { + "properties": { + "peak width at 10 % of height": { + "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0002511", + "$asm.pattern": "quantity datum", + "allOf": [ + { + "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/core.schema#/$defs/tQuantityValue" + }, + { + "$ref": "http://purl.allotrope.org/json-schemas/qudt/REC/2024/09/units.schema#/$defs/s" + } + ] + } + } + }, + { + "properties": { + "peak width": { + "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0001075", + "$asm.pattern": "quantity datum", + "allOf": [ + { + "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/core.schema#/$defs/tQuantityValue" + }, + { + "$ref": "http://purl.allotrope.org/json-schemas/qudt/REC/2024/09/units.schema#/$defs/s" + } + ] + } + } + }, + { + "properties": { + "statistical skew (chromatography)": { + "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0001238", + "$asm.pattern": "quantity datum", + "allOf": [ + { + "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/core.schema#/$defs/tQuantityValue" + }, + { + "$ref": "http://purl.allotrope.org/json-schemas/qudt/REC/2024/09/units.schema#/$defs/(unitless)" + } + ] + } + } + }, + { + "properties": { + "asymmetry factor measured at 5 % height": { + "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0001237", + "$asm.pattern": "quantity datum", + "allOf": [ + { + "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/core.schema#/$defs/tQuantityValue" + }, + { + "$ref": "http://purl.allotrope.org/json-schemas/qudt/REC/2024/09/units.schema#/$defs/(unitless)" + } + ] + } + } + }, + { + "properties": { + "asymmetry factor measured at 10 % height": { + "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0002512", + "$asm.pattern": "quantity datum", + "allOf": [ + { + "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/core.schema#/$defs/tQuantityValue" + }, + { + "$ref": "http://purl.allotrope.org/json-schemas/qudt/REC/2024/09/units.schema#/$defs/(unitless)" + } + ] + } + } + }, + { + "properties": { + "asymmetry factor squared measured at 10 % height": { + "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0002778", + "$asm.pattern": "quantity datum", + "allOf": [ + { + "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/core.schema#/$defs/tQuantityValue" + }, + { + "$ref": "http://purl.allotrope.org/json-schemas/qudt/REC/2024/09/units.schema#/$defs/(unitless)" + } + ] + } + } + }, + { + "properties": { + "asymmetry factor squared measured at 4.4 % height": { + "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0002777", + "$asm.pattern": "quantity datum", + "allOf": [ + { + "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/core.schema#/$defs/tQuantityValue" + }, + { + "$ref": "http://purl.allotrope.org/json-schemas/qudt/REC/2024/09/units.schema#/$defs/(unitless)" + } + ] + } + } + }, + { + "properties": { + "asymmetry factor measured at 4.4 % height": { + "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0002776", + "$asm.pattern": "quantity datum", + "allOf": [ + { + "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/core.schema#/$defs/tQuantityValue" + }, + { + "$ref": "http://purl.allotrope.org/json-schemas/qudt/REC/2024/09/units.schema#/$defs/(unitless)" + } + ] + } + } + }, + { + "properties": { + "asymmetry factor measured at baseline": { + "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0002779", + "$asm.pattern": "quantity datum", + "allOf": [ + { + "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/core.schema#/$defs/tQuantityValue" + }, + { + "$ref": "http://purl.allotrope.org/json-schemas/qudt/REC/2024/09/units.schema#/$defs/(unitless)" + } + ] + } + } + }, + { + "properties": { + "chromatographic peak asymmetry factor": { + "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0001236", + "$asm.pattern": "quantity datum", + "allOf": [ + { + "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/core.schema#/$defs/tQuantityValue" + }, + { + "$ref": "http://purl.allotrope.org/json-schemas/qudt/REC/2024/09/units.schema#/$defs/(unitless)" + } + ] + } + } + } + ] + }, + { + "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/core.schema#/$defs/orderedItem" + } + ] + }, + "minItems": 0 + } + } + }, + "data region aggregate document": { + "type": "object", + "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0003055", + "$asm.pattern": "aggregate datum", + "properties": { + "custom information aggregate document": { + "allOf": [ + { + "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/hierarchy.schema#/$defs/customInformationAggregateDocument" + } + ] + }, + "data region document": { + "type": "array", + "$asm.array-ordered": true, + "$asm.array-mixed": false, + "$asm.pattern": "indexed datum", + "items": { + "allOf": [ + { + "type": "object", + "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0003056", + "$asm.pattern": "aggregate datum", + "properties": { + "custom information aggregate document": { + "allOf": [ + { + "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/hierarchy.schema#/$defs/customInformationAggregateDocument" + } + ] + }, + "data region end": { + "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0003008", + "$asm.pattern": "quantity datum", + "allOf": [ + { + "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/core.schema#/$defs/tQuantityValue" + }, + { + "oneOf": [ + { + "$ref": "http://purl.allotrope.org/json-schemas/qudt/REC/2024/09/units.schema#/$defs/s" + }, + { + "$ref": "http://purl.allotrope.org/json-schemas/qudt/REC/2024/09/units.schema#/$defs/mL" + }, + { + "$ref": "http://purl.allotrope.org/json-schemas/qudt/REC/2024/09/units.schema#/$defs/#" + }, + { + "$ref": "#/$custom/tQuantityValueKiloDalton" + } + ] + } + ] + }, + "data region identifier": { + "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0003005", + "$asm.pattern": "value datum", + "$asm.type": "http://www.w3.org/2001/XMLSchema#string", + "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/core.schema#/$defs/tStringValue" + }, + "data region name": { + "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0003006", + "$asm.pattern": "value datum", + "$asm.type": "http://www.w3.org/2001/XMLSchema#string", + "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/core.schema#/$defs/tStringValue" + }, + "data region area": { + "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0003009", + "$asm.pattern": "quantity datum", + "allOf": [ + { + "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/core.schema#/$defs/tQuantityValue" + } + ] + }, + "relative data region area": { + "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0003010", + "$asm.pattern": "quantity datum", + "allOf": [ + { + "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/core.schema#/$defs/tQuantityValue" + }, + { + "$ref": "http://purl.allotrope.org/json-schemas/qudt/REC/2024/09/units.schema#/$defs/%25" + } + ] + }, + "comment": { + "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0002017", + "$asm.pattern": "value datum", + "$asm.type": "http://www.w3.org/2001/XMLSchema#string", + "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/core.schema#/$defs/tStringValue" + }, + "data region start": { + "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0003007", + "$asm.pattern": "quantity datum", + "allOf": [ + { + "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/core.schema#/$defs/tQuantityValue" + }, + { + "oneOf": [ + { + "$ref": "http://purl.allotrope.org/json-schemas/qudt/REC/2024/09/units.schema#/$defs/s" + }, + { + "$ref": "http://purl.allotrope.org/json-schemas/qudt/REC/2024/09/units.schema#/$defs/mL" + }, + { + "$ref": "http://purl.allotrope.org/json-schemas/qudt/REC/2024/09/units.schema#/$defs/#" + }, + { + "$ref": "#/$custom/tQuantityValueKiloDalton" + } + ] + } + ] + } + } + }, + { + "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/core.schema#/$defs/orderedItem" + } + ] + }, + "minItems": 0 + } + } + }, + "derived electropherogram data cube": { + "$asm.property-class": "http://purl.allotrope.org/ontologies/result#AFR_0003020", + "$asm.pattern": "datacube", + "allOf": [ + { + "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/cube.schema#/$defs/tDatacube" + }, + { + "properties": { + "cube-structure": { + "properties": { + "dimensions": { + "minItems": 1, + "maxItems": 1, + "prefixItems": [ + { + "oneOf": [ + { + "properties": { + "concept": { + "const": "molecular mass" + }, + "unit": { + "const": "Da" + }, + "@componentDatatype": { + "const": "double" + } + } + }, + { + "properties": { + "concept": { + "const": "polymer length" + }, + "unit": { + "const": "#" + }, + "@componentDatatype": { + "const": "double" + } + } + } + ] + } + ] + }, + "measures": { + "minItems": 1, + "maxItems": 1, + "contains": { + "oneOf": [ + { + "properties": { + "@componentDatatype": { + "const": "double" + } + } + } + ] + } + } + } + } + } + } + ] + } + } + } + } + } } } } From a5c4735fb183190073ef4e352499ab96b6685800 Mon Sep 17 00:00:00 2001 From: Alejandro Salgado Date: Tue, 15 Oct 2024 11:49:49 -0500 Subject: [PATCH 19/19] update change notes for electrophoresis benchling 09/24 schema --- .../adm/electrophoresis/BENCHLING/2024/09/CHANGE_NOTES.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/allotropy/allotrope/schemas/adm/electrophoresis/BENCHLING/2024/09/CHANGE_NOTES.md b/src/allotropy/allotrope/schemas/adm/electrophoresis/BENCHLING/2024/09/CHANGE_NOTES.md index f3fa40223..a65ec27c8 100644 --- a/src/allotropy/allotrope/schemas/adm/electrophoresis/BENCHLING/2024/09/CHANGE_NOTES.md +++ b/src/allotropy/allotrope/schemas/adm/electrophoresis/BENCHLING/2024/09/CHANGE_NOTES.md @@ -24,7 +24,7 @@ Reasoning: This should have been included in REC/2024/06 electrophoresis schema Proposal: Add "peak name", "peak position", "relative corrected peak area", "comment" to peak Added TQuantityValueNumber and TQuantityValueKiloDalton units for "peak position", "peak end", "relative peak height", "peak start" -Reasoning: This should have been included in REC/2024/06 electrophoresis schema from original proposal -Proposal: Add TQuantityValueNumber and TQuantityValueKiloDalton units for "peak position", "peak end", "relative peak height", "peak start" to peak fields -Removed "processed data document" outside of "processed data aggreagete document" in fluorescence-cube-detector measurementDocumentItems definition +Added "processed data aggregate document" to fluorescence-cube-detector measurementDocumentItems definition +Reasoning: "processed data aggregate document" was excluded from REC/2024/09 schema in fluorescence-cube-detector measurementDocumentItems definition, should be included as parent document to "processed data document" +Proposal: Add "processed data aggregate document" to fluorescence-cube-detector measurementDocumentItems, raise https://gitlab.com/allotrope-public/asm/-/issues/7 with Allotrope on missing from REC/2024/09